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

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

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

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

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

* {
  box-sizing: border-box;
}

li, a {
  list-style: none;
}

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

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

input {
  caret-color: black;
}

textarea {
  caret-color: black;
}

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

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

::-webkit-scrollbar {
  width: 3px;
  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: #13489E;
  --pri1-1: #7791BA;
  --pri1-2: #0D2347;
  --pri1-3: #F9FBFF;
  --pri1-4: #ADBEDA;
  --pri1-5: ;
  --pri1-6: ;
  --pri1-7: ;
  --pri1-8: ;
  --pri1-9: ;
  --pri1-10: ;
  /*pri 2*/
  --pri2: #00aeef;
  --pri2-1: ;
  --pri2-2: ;
  --pri2-3: ;
  --pri2-4: ;
  --pri2-5: ;
  --pri2-6: ;
  --pri2-7: ;
  --pri2-8: ;
  --pri2-9: ;
  --pri2-10: ;
  /*pri 3*/
  --pri3: #F7941C;
  --pri3-1: ;
  --pri3-2: ;
  --pri3-3: ;
  --pri3-4: ;
  --pri3-5: ;
  --pri3-6: ;
  --pri3-7: ;
  --pri3-8: ;
  --pri3-9: ;
  --pri3-10: ;
  /*pri 4*/
  --pri4: #202020;
  --pri4-1: #404041;
  --pri4-2: #555555;
  --pri4-3: #888888;
  --pri4-4: ;
  --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: #58D30C;
  --daum: #618FFC;
  --youtube: #FD0532;
}

:root {
  --pretend: "Pretendard", "Cabin", "Malgun Gothic", sans-serif;
  --enFont: "Cabin", sans-serif;
}

/* 폰트셋팅*/
div, a, span, p, ul, ol, li, dd, dt, dl, table, button, select, input {
  font-family: var(--pretend);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 2.025rem */
  letter-spacing: -0.025rem;
}
@media (width <= 320px) {
  div, a, span, p, ul, ol, li, dd, dt, dl, table, button, select, input {
    font-size: 1rem;
  }
}

/*삭제금지*/
/*common*/
footer {
  padding: 0 7.5rem 0;
  background-color: var(--pri1);
}
footer .inr {
  padding: 6.25rem 6rem;
  color: var(--white);
  text-align: center;
  border-top-left-radius: 2.5rem;
  border-top-right-radius: 2.5rem;
  background-color: #002F7C;
  box-sizing: border-box;
}
footer .inr p {
  display: inline-block;
  padding: 0 0.6rem;
  color: #7791BA;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: -0.4px;
}
footer .inr p.hp {
  color: var(--white);
  padding-left: 0;
  font-weight: 500;
}
footer .inr p.copyright {
  clear: both;
  width: 100%;
  padding-top: 3.75rem;
  margin: 0 auto;
  text-align: center;
}
footer .inr a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 0.8rem 0.1rem;
  line-height: 1.25;
  text-align: center;
  color: #94A0C8;
  font-size: 0.75rem;
  border-radius: 2px;
  border: 1px solid #00235B;
  background: #002767;
  cursor: pointer;
  transition: all 0.3s;
}
footer .inr a:hover {
  background: #0b3c8b;
  border-color: #13428d;
}
@media screen and (max-width: 1460px) {
  footer {
    padding: 0 2.5rem;
  }
  footer .inr {
    padding: 6.25rem 4rem;
  }
}
@media screen and (max-width: 767px) {
  footer {
    padding: 0;
  }
  footer .inr {
    padding: 4rem 1rem;
  }
  footer .inr p {
    font-size: 0.9rem;
  }
  footer .inr p.copyright {
    padding-top: 2rem;
    font-size: 0.7rem;
    font-weight: 200;
    letter-spacing: 0;
  }
}

body.sub footer {
  background-color: #002F7C;
}

header {
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  padding: 2rem 7.5rem 1.3rem;
  box-sizing: border-box;
  background-color: var(--white);
  transition: all 0.2s linear;
}
@media screen and (max-width: 1460px) {
  header {
    height: auto;
    padding: 2rem 4.8rem 1.5rem;
  }
}
@media screen and (max-width: 1260px) {
  header {
    padding: 2rem 2rem 1.5rem;
  }
}
header.active {
  padding: 1rem 2.5rem 1.3rem;
  height: 4.6rem;
  box-shadow: 0px 5px 8px 3px rgba(0, 0, 0, 0.06);
}
@media screen and (max-width: 1460px) {
  header.active {
    height: 4.3rem;
    padding: 1rem 2rem 1rem;
  }
}
header .inr {
  position: relative;
  display: flex;
}
header nav {
  position: absolute;
  right: 0;
}
header nav h1 {
  display: none;
}
header .btn-gnb {
  display: none;
  width: 3.75rem;
  height: 3.35rem;
  border-radius: 0.2rem;
  background-color: var(--pri1);
  position: absolute;
  right: 0;
  z-index: 13;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
header .btn-gnb span {
  display: block;
  position: absolute;
  height: 3px;
  width: 70%;
  background-color: var(--white);
  border-radius: 9px;
  opacity: 1;
  left: 0.6rem;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
header .btn-gnb span:nth-child(1) {
  top: 1rem;
  transform-origin: left center;
}
header .btn-gnb span:nth-child(2) {
  top: 1.6rem;
  transform-origin: left center;
}
header .btn-gnb span:nth-child(3) {
  top: 2.2rem;
  transform-origin: left center;
}
header .btn-gnb.on span:nth-child(1) {
  transform: rotate(45deg);
  top: 12px;
  left: 16px;
}
header .btn-gnb.on span:nth-child(2) {
  width: 0%;
  opacity: 0;
}
header .btn-gnb.on span:nth-child(3) {
  transform: rotate(-45deg);
  top: 42px;
  left: 16px;
}
header .gnb {
  display: flex;
}
header .gnb li a {
  display: inline-block;
  padding: 0.4rem 1.25rem;
  font-size: clamp(1rem, 4vw, 1.1rem);
  letter-spacing: -0.425px;
  color: var(--pri1-2);
  cursor: pointer;
  font-weight: 500;
  transition: color 0.2s linear;
}
header .gnb li a:hover {
  font-weight: 600;
  color: var(--pri2);
}
header .gnb li a.active {
  font-weight: 700;
  color: var(--pri1);
}
@media screen and (max-width: 1260px) {
  header .gnb li a {
    padding: 0.4rem 0.6rem;
  }
}
header .gnb li:last-child a {
  padding-right: 0;
}
header .aside-customer {
  display: none;
  width: 100%;
  position: absolute;
  bottom: 0;
  right: -2rem;
  bottom: 1.5rem;
  z-index: 13;
  background-color: var(--white);
}
header .aside-customer .inr {
  width: 100%;
  flex-direction: column;
  box-sizing: border-box;
  color: var(--white);
  padding-bottom: 1.5rem;
  background-color: var(--pri1);
}
header .aside-customer .header {
  flex-basis: auto;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid #3D69AF;
}
header .aside-customer .header .label {
  padding-right: 0.125rem;
  color: var(--pri1-3);
  line-height: 1;
  text-align: left;
  font-size: 1.0625rem;
  font-weight: 400;
}
header .aside-customer .header .tel {
  display: block;
  color: var(--white);
  font-family: var(--enFont);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.28px;
  text-align: left;
}
@media screen and (max-width: 1023px) {
  header .aside-customer .header .tel {
    font-family: var(--pretend);
  }
}
@media screen and (max-width: 767px) {
  header .aside-customer .header .tel {
    font-family: var(--pretend);
  }
}
header .aside-customer .header .tel .icon {
  display: inline-block;
  vertical-align: top;
  margin-right: 0.6rem;
  width: 2rem;
  height: 2rem;
  margin-top: 0.15rem;
  background: url(/common/img/user/icon/icon_aside_customer_tel.svg) no-repeat center center;
  background-size: cover;
  border-radius: 100%;
  vertical-align: top;
}
header .aside-customer .contents {
  padding: 0.8rem 0 0.5rem;
  border-bottom: 1px solid #3D69AF;
}
header .aside-customer .contents ul li {
  display: flex;
  font-size: 1rem;
  padding-bottom: 0.2rem;
}
header .aside-customer .contents ul li .tit {
  width: 34%;
  color: var(--pri1-3);
  font-size: 1rem;
  font-weight: 400;
}
header .aside-customer .contents ul li .tit::before {
  content: "·";
  display: inline-block;
  padding-right: 0.625rem;
}
header .aside-customer .contents ul li .cont {
  width: 64%;
}
header .aside-customer .contents ul li .cont p {
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  font-family: var(--enFont);
  letter-spacing: 0;
}
@media screen and (max-width: 1023px) {
  header .aside-customer .contents ul li .cont p {
    font-family: var(--pretend);
  }
}
@media screen and (max-width: 767px) {
  header .aside-customer .contents ul li .cont p {
    font-family: var(--pretend);
  }
}
header .aside-customer .contents ul li .cont .notice {
  padding-bottom: 0.625rem;
}
header .aside-customer .contents ul li .cont .notice span {
  display: block;
  line-height: 1.25;
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0;
  color: var(--pri3);
}
header .aside-customer .footer {
  padding-top: 1rem;
}
header .aside-customer .footer p {
  padding-bottom: 0.5rem;
  text-align: left;
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0;
  line-height: 1;
  color: var(--pri3);
}
header .aside-customer .footer p::before {
  content: "";
  display: inline-block;
  margin-right: 0.3rem;
  width: 0.8rem;
  height: 0.8rem;
  margin-top: 0.05rem;
  vertical-align: top;
  background: url(/common/img/user/icon/icon_notice.svg) no-repeat center center;
  background-size: contain;
}
header .m-gnb {
  display: none;
}

@media screen and (max-width: 1023px) {
  header nav {
    height: 100vh;
    width: 65%;
    position: fixed;
    top: 0;
    z-index: 11;
    background-color: var(--pri1);
    box-shadow: 0px 10px 4px 6px rgba(0, 0, 0, 0.165);
    transition: transform 0.5s;
    transform: translateX(120%);
  }
  header nav h1 {
    display: none;
    width: 11rem;
    margin: 1rem 0 0 1.4rem;
  }
  header nav .gnb {
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 2rem 2rem 0;
    box-sizing: border-box;
  }
  header nav .gnb li {
    width: 100%;
  }
  header nav .gnb li a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    color: var(--white);
  }
  header nav .gnb li a.active {
    color: var(--pri2);
  }
  header nav .gnb li a.active::before {
    opacity: 1;
    left: -0.5rem;
    background-color: var(--pri2);
  }
  header nav .gnb li a::before {
    opacity: 0;
    left: 1.5rem;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    content: "";
    width: 0.2875rem;
    height: 0.2875rem;
    border-radius: 100%;
    background-color: var(--pri1);
    transition: all 0.3s;
  }
  header nav.on {
    transform: translateX(0);
  }
  header nav.on h1 {
    display: block;
  }
  header nav.on .gnb {
    display: flex;
  }
  header nav.on .btn-gnb.on span:nth-child(3) {
    top: 36px;
  }
  header nav.on .aside-customer {
    display: block;
  }
  header.active {
    padding: 1rem 1.5rem 1.5rem;
  }
  header .btn-gnb {
    display: block;
    right: -2rem;
    top: -0.4rem;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}
@media screen and (max-width: 1023px) {
  header {
    padding: 1rem 0 0;
    height: auto;
    background-color: var(--white);
  }
  header h1 {
    margin-left: 1.1rem;
  }
  header h1 img {
    height: 1.8rem;
  }
  header.active {
    padding: 1rem 0 0;
  }
  header .m-gnb {
    display: block;
    width: 100%;
    height: auto;
    overflow-y: hidden;
    background-color: var(--white);
    padding-top: 1.8rem;
    padding-bottom: 0;
    box-sizing: border-box;
    transition: all 0.3s;
  }
  header .m-gnb .gnb {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 2rem 0 0.5rem;
  }
  header .m-gnb .gnb::-webkit-scrollbar {
    display: none;
  }
  header .m-gnb .gnb a {
    display: inline-block;
    padding: 0 1rem 0.5rem;
    text-decoration: none;
    color: var(--pri4);
    flex-shrink: 0; /* 줄어들지 않게 */
  }
  header .btn-gnb {
    right: 0;
  }
}
.quik-menu {
  display: block;
  flex-direction: column;
  position: fixed;
  bottom: 3rem;
  right: -6rem;
  z-index: 10;
  opacity: 0;
  transition: all 0.6s;
}
.quik-menu.on {
  opacity: 1;
  right: 1rem;
}
.quik-menu.white .link {
  background: #fff;
}
.quik-menu.white .link .img {
  opacity: 1;
  background-position: center center;
  background-repeat: no-repeat;
}
.quik-menu.white .link .img[data-quick=location] {
  background-image: url(/common/img/user/icon/icon_quick_location_blue.svg);
}
.quik-menu.white .link .img[data-quick=pay] {
  background-image: url(/common/img/user/icon/icon_quick_pay_blue.svg);
}
.quik-menu.white .link .img[data-quick=counsel] {
  background-image: url(/common/img/user/icon/icon_quick_counsel_blue.svg);
}
.quik-menu.white .link .label {
  background-color: var(--pri1);
}
.quik-menu.white .link a .txt {
  color: var(--pri1);
}
.quik-menu.white .link a:hover .txt {
  color: var(--pri2);
}
.quik-menu.white .link a:hover .img[data-quick=location] {
  background-image: url(/common/img/user/icon/icon_quick_location_blue_active.svg);
}
.quik-menu.white .link a:hover .img[data-quick=pay] {
  background-image: url(/common/img/user/icon/icon_quick_pay_blue_active.svg);
}
.quik-menu.white .link a:hover .img[data-quick=counsel] {
  background-image: url(/common/img/user/icon/icon_quick_counsel_blue_active.svg);
}
.quik-menu .link {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1.875rem;
  padding-bottom: 0;
  width: 5.75rem;
  border-radius: 200px;
  background: linear-gradient(0deg, #09429E 0%, #13489E 100%);
}
.quik-menu .link a {
  display: block;
  width: 100%;
  height: 4.5rem;
  text-align: center;
  cursor: pointer;
}
.quik-menu .link a:hover .img {
  opacity: 1;
}
.quik-menu .link a:hover .txt {
  color: var(--white);
}
.quik-menu .link a .img {
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0.4;
}
.quik-menu .link a .img[data-quick=location] {
  background-image: url(/common/img/user/icon/icon_quick_location.svg);
}
.quik-menu .link a .img[data-quick=pay] {
  background-image: url(/common/img/user/icon/icon_quick_pay.svg);
}
.quik-menu .link a .img[data-quick=counsel] {
  background-image: url(/common/img/user/icon/icon_quick_counsel.svg);
}
.quik-menu .link a .txt {
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.35px;
  transition: all 0.3s;
}
.quik-menu .link .label {
  display: block;
  width: 5rem;
  height: 5rem;
  padding-top: 1.6rem;
  margin: 0 auto 0.2rem;
  border-radius: 50%;
  text-align: center;
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
  line-height: 1;
  background-color: var(--pri3);
  box-sizing: border-box;
}
.quik-menu .posi {
  padding-top: 0.625rem;
  display: flex;
  gap: 0.625rem;
  flex-direction: column;
}
.quik-menu .posi span {
  display: block;
  width: 5rem;
  height: 5rem;
  margin: 0 auto;
  border-radius: 100%;
  border: 1px solid var(--pri1);
  background-color: var(--white);
  background-image: url(/common/img/user/icon/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: transparent;
  background: var(--pri1) url(/common/img/user/icon/icon_quick_arrow_on.svg) no-repeat center center;
}
@media screen and (max-width: 767px) {
  .quik-menu.on {
    right: 0.5rem;
    bottom: 1rem;
  }
  .quik-menu .link {
    width: 4rem;
    gap: 0.5rem;
    padding-top: 1.2rem;
  }
  .quik-menu .link a {
    height: auto;
  }
  .quik-menu .link a .img {
    width: 1.6rem;
    height: 1.6rem;
  }
  .quik-menu .link a .txt {
    font-size: 0.75rem;
    font-weight: 400;
  }
  .quik-menu .link .label {
    width: 3.6rem;
    height: 3.6rem;
    font-size: 0.75rem;
    padding-top: 1.1rem;
    letter-spacing: 0;
  }
  .quik-menu .posi {
    gap: 0.2rem;
    padding-top: 0.3rem;
  }
  .quik-menu .posi span {
    width: 3.6rem;
    height: 3.6rem;
  }
  .quik-menu .posi span:hover {
    border-color: transparent;
    background: var(--pri1) url(/common/img/user/icon/icon_quick_arrow_on.svg) no-repeat center center;
  }
}

#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: 25rem;
  height: 100%;
  padding: 3.4rem 3rem;
  border-radius: 1.5625rem;
  box-sizing: border-box;
  background-color: var(--pri2);
}
@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: 0;
  right: 0;
  width: 5rem;
  height: 5rem;
  border-radius: 0px 25px;
  background-color: var(--black);
  background: var(--black);
  cursor: pointer;
  overflow: hidden;
}
#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;
  border-radius: 0px 25px;
}
#quick .online-form-close:hover {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
#quick .online-form-close:hover::before {
  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);
  }
}
@media screen and (max-width: 767px) {
  #quick .online-form-close {
    width: 4rem;
    height: 4rem;
  }
}
#quick .header {
  padding-bottom: 2.5rem;
}
#quick .header .title {
  padding-bottom: 0.2rem;
  line-height: 1.25;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.0656rem;
  color: var(--white);
}
@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] {
  width: 100%;
  height: 3.2rem;
  padding: 0 1rem;
  margin-bottom: 0.3rem;
  border-radius: 0;
  border: 1px solid var(--pri2);
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  #quick #quick_form select[name=subject] {
    height: 2.8rem;
  }
}
#quick #quick_form input[type=text],
#quick #quick_form input[type=tel] {
  width: 100%;
  height: 3.2rem;
  margin-bottom: 0.3rem;
  padding: 0 1rem;
  border-radius: 0;
  border: 1px solid var(--pri2);
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  #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;
  color: var(--white);
  background-color: var(--black);
  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;
  padding: 1.2rem 0 3rem;
  color: var(--white);
  font-size: 1rem;
  font-style: normal;
  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*/
.main-visual-wrap {
  width: 100%;
  padding: 5.8rem 6rem 0;
  margin-bottom: 1.5rem;
  box-sizing: border-box;
}
.main-visual-wrap .inr {
  position: relative;
  overflow: hidden;
}
.main-visual-wrap .main-visual {
  overflow: hidden;
}
.main-visual-wrap .main-visual .main_txt {
  display: flex;
  flex-flow: column;
  position: absolute;
  left: 146px;
  top: 26%;
  z-index: 10;
  color: #fff;
  animation-delay: 0s;
  opacity: 0;
}
.main-visual-wrap .main-visual .main_txt.hide {
  animation-name: fadeUpAndOut;
  animation-duration: 2.2s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}
.main-visual-wrap .main-visual .main_txt.reset {
  animation: none !important;
}
.main-visual-wrap .main-visual .main_txt .btxt {
  letter-spacing: -0.1rem;
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.45;
  white-space: pre-line;
}
.main-visual-wrap .main-visual .main_txt .btxt b {
  font-weight: 600;
}
.main-visual-wrap .main-visual .main_txt .stxt {
  margin-top: 2.3rem;
  font-size: 1.5em;
  line-height: 1.8;
  white-space: pre-line;
}
.main-visual-wrap .main-visual .main_slide {
  height: 79vh;
  overflow: hidden;
  border-radius: 1.8rem;
}
.main-visual-wrap .main-visual .main_slide ul {
  z-index: 1;
  height: 100%;
}
.main-visual-wrap .main-visual .main_slide ul li {
  position: relative;
}
.main-visual-wrap .main-visual .main_slide ul li video {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: 110%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main-visual-wrap .main-visual .main_slide ul .swiper-slide.two {
  background-image: url(/common/img/user/main/main_slide01.jpg);
}
.main-visual-wrap .main-visual .main_slide ul .swiper-slide.three {
  background-image: url(/common/img/user/main/main_slide02.jpg);
}
.main-visual-wrap .main-visual .main_slide ul .swiper-slide.four {
  background-image: url(/common/img/user/main/main_slide03.jpg);
}
@media screen and (max-width: 1460px) {
  .main-visual-wrap .main-visual .main_slide {
    height: 46rem;
  }
}
.main-visual-wrap .controls {
  display: flex;
  align-items: center;
  gap: 35px;
  margin-top: 60px;
}
.main-visual-wrap .controls .circle {
  position: relative;
}
.main-visual-wrap .controls .circle .autoplay-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 60px;
  height: 60px;
}
.main-visual-wrap .controls .circle .autoplay-progress svg {
  z-index: 10;
  width: 100%;
  height: 100%;
  stroke-width: 2px;
  stroke: #fff;
  fill: none;
  stroke-dashoffset: calc(125.6 * (1 - var(--progress)));
  stroke-dasharray: 125.6;
  transform: rotate(-90deg);
}
.main-visual-wrap .controls .circle .autoplay-progress .bg {
  position: absolute;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.5);
}
.main-visual-wrap .controls .play div {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 10;
  transform: translate(-50%, -50%);
}
.main-visual-wrap .controls .play div span {
  cursor: pointer;
  font-size: 18px;
  text-indent: -100000000px;
}
.main-visual-wrap .controls .play div.swiper-pause {
  display: block;
}
.main-visual-wrap .controls .play div.swiper-play {
  display: none;
}
.main-visual-wrap .controls .play.on div.swiper-pause {
  display: none;
}
.main-visual-wrap .controls .play.on div.swiper-play {
  display: block;
}
.main-visual-wrap .controls .arrow {
  display: flex;
  align-items: center;
  gap: 25px;
}
.main-visual-wrap .controls .arrow > span {
  display: flex;
}
.main-visual-wrap .controls .arrow > span i {
  cursor: pointer;
  width: 40px;
  opacity: 0.6;
  transition: all 0.2s;
}
.main-visual-wrap .controls .arrow .pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 43px;
  font-size: 15px;
  font-weight: 600;
}
.main-visual-wrap .controls .arrow .i:hover {
  opacity: 1;
}
@media screen and (max-width: 1460px) {
  .main-visual-wrap {
    padding: 6rem 2.5rem 0;
  }
}
@media screen and (max-width: 1023px) {
  .main-visual-wrap {
    padding: 7rem 0 0;
    margin-bottom: 0;
  }
  .main-visual-wrap .main-visual .main_txt {
    width: 85%;
    left: 2.5rem;
  }
  .main-visual-wrap .main-visual .main_txt .btxt {
    font-size: 2rem;
  }
  .main-visual-wrap .main-visual .main_txt .stxt {
    display: none;
    margin-top: 1rem;
    font-size: 1rem;
  }
  .main-visual-wrap .main-visual .main_slide {
    border-radius: 0;
  }
}
@media screen and (max-width: 767px) {
  .main-visual-wrap .inr {
    height: 100%;
  }
  .main-visual-wrap .main-visual .main_slide {
    height: 16rem;
  }
  .main-visual-wrap .main-visual .main_slide ul li video {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: none;
  }
}

@keyframes fadeUpAndOut {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  50% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-20px);
  }
}
.aside-customer {
  display: none;
}

.notice-slide {
  width: 100%;
  padding-bottom: 5rem;
  box-sizing: border-box;
}
.notice-slide .inr {
  position: relative;
  height: 3.75rem;
  margin: 0 6rem;
  border-radius: 4.75rem;
  background-color: var(--pri1);
}
.notice-slide .inr .header {
  position: absolute;
  left: 4rem;
  top: 1.2rem;
}
.notice-slide .inr .header .icon {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  background: url(/common/img/user/main/icon_notice_slide.svg) no-repeat 0 0;
}
.notice-slide .inr .contents {
  position: relative;
  height: 100%;
  padding-top: 0.6rem;
  padding-left: 7.125rem;
  padding-right: 2.8rem;
  box-sizing: border-box;
}
.notice-slide .inr .contents::before {
  position: absolute;
  top: 0;
  left: 7.125rem;
  z-index: 1;
  display: block;
  content: "";
  width: 3.9375rem;
  height: 100%;
  background: url(/common/img/user/main/bg_notice.png) no-repeat 0 0;
}
.notice-slide .inr .contents::after {
  position: absolute;
  top: 0;
  right: 2.8rem;
  z-index: 1;
  display: block;
  content: "";
  width: 3.9375rem;
  height: 100%;
  background: url(/common/img/user/main/bg_notice.png) no-repeat 0 0;
  transform: rotate(180deg);
}
@media screen and (max-width: 1460px) {
  .notice-slide .inr {
    margin: 0 2.5rem 0;
  }
}
@media screen and (max-width: 1023px) {
  .notice-slide {
    padding: 0;
  }
  .notice-slide .inr {
    height: 3.75rem;
    margin: 0;
    border-radius: 0;
  }
  .notice-slide .inr .header {
    top: 1.3rem;
    left: 2rem;
  }
  .notice-slide .inr .header .icon {
    width: 1.3rem;
    height: 1.3rem;
    background-size: cover;
  }
  .notice-slide .inr .contents {
    padding-top: 0.9rem;
    padding-left: 5rem;
    padding-right: 1.8rem;
  }
  .notice-slide .inr .contents::before {
    left: 4.125rem;
  }
  .notice-slide .inr .contents::after {
    right: 1.8rem;
  }
  .notice-slide .inr .contents .text-loop .loop {
    font-size: 1.1rem;
  }
  .notice-slide .inr .contents .text-loop .loop span {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 767px) {
  .notice-slide .inr .header {
    left: 1rem;
  }
  .notice-slide .inr .contents {
    padding-top: 1rem;
    padding-left: 2.5rem;
    padding-right: 0rem;
  }
  .notice-slide .inr .contents::before {
    left: 2.5rem;
  }
  .notice-slide .inr .contents::after {
    right: 0;
  }
  .notice-slide .inr .contents .text-loop .loop {
    padding-right: 4rem;
  }
  .notice-slide .inr .contents .text-loop .loop span {
    padding-left: 4rem;
  }
}

.overview {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 13rem 7.5rem 10rem;
  background-color: var(--pri1-3);
  box-sizing: border-box;
}
.overview .contents {
  position: relative;
}
.overview .contents .btn_pro {
  position: absolute;
  top: -3em;
  left: -3rem;
  z-index: 1;
  transition: all 0.3s;
  animation-delay: 0.2s;
}
.overview .contents .btn_pro a * {
  display: inline-block;
  vertical-align: middle;
}
.overview .contents .btn_pro a img {
  display: block;
  height: 3.625rem;
  margin: 1.4rem auto;
}
.overview .contents .btn_pro a span {
  position: relative;
  width: 6.125rem;
  height: 6.125rem;
  background: #F7941C;
  transform: scale(1);
  border-radius: 100px;
}
.overview .contents .btn_pro a i {
  position: relative;
  top: -1px;
}
.overview .contents .btn_pro a i[data-circle] {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: #F7941C;
  border-radius: 100px;
}
.overview .contents .btn_pro a i[data-circle="00"] {
  opacity: 0.5;
  animation: circleScale 3s infinite cubic-bezier(0.23, 0.34, 0.89, 0.32);
}
.overview .contents .btn_pro a i[data-circle="01"] {
  opacity: 0.5;
  animation: circleScale 3s infinite cubic-bezier(0.36, 0.11, 0.89, 0.32);
  animation-delay: 1s;
}
.overview .contents .btn_pro a i[data-circle="02"] {
  opacity: 0.5;
  animation: circleScale 3s infinite cubic-bezier(0.36, 0.11, 0.89, 0.32);
  animation-delay: 2s;
}
.overview .contents .btn_pro a i[data-circle="03"] {
  opacity: 0.5;
  animation: circleScale 3s infinite cubic-bezier(0.36, 0.11, 0.89, 0.32);
  animation-delay: 3s;
}
.overview .contents .overview-con {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  padding-bottom: 10.5rem;
}
@media screen and (max-width: 1460px) {
  .overview .contents .overview-con {
    padding-bottom: 8.5rem;
  }
}
.overview .contents .overview-con img {
  border-radius: 3.75rem;
}
.overview .contents .overview-con .overview-text {
  display: flex;
  flex-direction: row;
  padding-top: 2.75rem;
  width: 100%;
  position: absolute;
  bottom: 2rem;
}
.overview .contents .overview-con .overview-text .tit {
  flex-basis: 45%;
  padding-left: 2.5rem;
  color: var(--pri4);
  font-size: 3.125rem;
  font-weight: 600;
  line-height: 146%;
}
@media screen and (max-width: 1460px) {
  .overview .contents .overview-con .overview-text .tit {
    font-size: 2.8rem;
  }
}
.overview .contents .overview-con .overview-text .desc {
  color: var(--pri4-2);
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.65;
}
@media screen and (max-width: 1460px) {
  .overview .contents .overview-con .overview-text .desc {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .overview .contents .overview-con .overview-text .desc br {
    display: none;
  }
}
@media screen and (max-width: 1460px) {
  .overview {
    padding: 10rem 2.5rem 7rem;
  }
  .overview .header {
    flex-basis: 40rem;
  }
  .overview .contents {
    width: 70%;
    padding-left: 2rem;
  }
  .overview .contents .overview-con .overview-text {
    padding-right: 1.8rem;
  }
  .overview .contents .overview-con .overview-text .tit {
    flex-basis: 50%;
  }
  .overview .contents .overview-con .overview-text .desc {
    flex-basis: 60%;
    box-sizing: border-box;
  }
  .overview .contents .overview-con .overview-text .desc br {
    display: none;
  }
}
@media screen and (max-width: 1023px) {
  .overview {
    padding: 6rem 2.5rem;
    flex-direction: column;
  }
  .overview .header {
    flex-basis: 100%;
    padding-bottom: 4rem;
  }
  .overview .contents {
    width: 100%;
    padding-left: 0;
  }
  .overview .contents .overview-con img {
    border-radius: 2rem;
  }
  .overview .contents .btn_pro {
    top: -1rem;
    left: -1rem;
  }
}
@media screen and (max-width: 767px) {
  .overview {
    padding: 6rem 1.8rem 2rem;
  }
  .overview .contents .overview-con {
    padding-bottom: 11rem;
  }
  .overview .contents .overview-con img {
    border-radius: 1rem;
  }
  .overview .contents .overview-con .overview-text {
    padding-top: 1.5rem;
    flex-direction: column;
  }
  .overview .contents .overview-con .overview-text .tit {
    padding-left: 1rem;
    font-size: 1.7rem;
  }
  .overview .contents .overview-con .overview-text .desc {
    padding-top: 1rem;
    padding-left: 1rem;
    font-size: 1.1rem;
  }
  .overview .contents .btn_pro {
    top: -1rem;
    left: -1rem;
  }
  .overview .contents .btn_pro a span {
    width: 5.2rem;
    height: 5.2rem;
  }
  .overview .contents .btn_pro a img {
    height: 50%;
  }
}

.doctor .inr {
  padding: 0 7.5rem 12rem;
  background-color: var(--pri1-3);
  box-sizing: border-box;
}
@media screen and (max-width: 1460px) {
  .doctor .inr {
    padding: 0 2.5rem 10rem;
  }
}
@media screen and (max-width: 767px) {
  .doctor .inr {
    padding: 0 1.8rem 6rem;
  }
}
.doctor .contents > ul {
  display: flex;
  gap: 1.6875rem;
  padding-top: 8rem;
}
.doctor .contents > ul > li {
  position: relative;
  width: 100%;
  height: 100%;
  flex-grow: 1;
  border-radius: 2.5rem;
  background-color: #EBF1FD;
  border: 4px solid transparent;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
}
.doctor .contents > ul > li::after {
  display: block;
  content: "";
  overflow: hidden;
  height: 38.75rem;
}
.doctor .contents > ul > li:hover {
  margin-top: -2rem;
  border-color: var(--pri1);
}
.doctor .contents > ul > li:hover > .name {
  color: var(--pri1);
}
@media screen and (max-width: 767px) {
  .doctor .contents > ul > li:hover {
    margin-top: 0;
  }
}
.doctor .contents > ul > li > img {
  position: absolute;
  right: 2rem;
  bottom: -2rem;
  transition: all 0.4s;
}
.doctor .contents > ul > li > .name {
  position: absolute;
  top: 3.75rem;
  left: 3.5rem;
  letter-spacing: -0.1rem;
  font-size: 2.5rem;
  font-weight: 600;
  transition: all 0.4s;
}
.doctor .contents > ul > li > .name > span {
  color: var(--pri4-3);
  font-size: 1.75rem;
  font-weight: 400;
}
@media screen and (max-width: 1460px) {
  .doctor .contents > ul > li .name {
    top: 2.5rem;
    font-size: 2rem;
  }
  .doctor .contents > ul > li .name span {
    font-size: 1.4rem;
  }
  .doctor .contents > ul > li img {
    width: 18rem;
  }
}
@media screen and (max-width: 1023px) {
  .doctor .contents > ul {
    gap: 1.2rem;
    padding-top: 5rem;
  }
  .doctor .contents > ul > li {
    border-radius: 1.2rem;
  }
  .doctor .contents > ul > li::after {
    height: 30rem;
  }
  .doctor .contents > ul > li img {
    width: 14rem;
    left: 50%;
    right: initial;
    transform: translateX(-50%);
  }
  .doctor .contents > ul > li .name {
    top: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .doctor .contents > ul {
    padding-top: 4rem;
    flex-direction: column;
  }
  .doctor .contents > ul > li {
    border: 0;
    border-radius: 1.5rem;
  }
  .doctor .contents > ul > li::after {
    height: 20rem;
  }
  .doctor .contents > ul > li img {
    bottom: 0;
    right: 1rem;
    left: initial;
    transform: none;
    width: 10rem;
  }
  .doctor .contents > ul > li .name {
    left: 2rem;
    top: 3rem;
  }
}
.doctor .footer {
  height: 9.375rem;
  box-sizing: border-box;
  background-color: var(--pri1);
}
.doctor .footer .ani-text {
  display: flex;
  color: var(--white);
}
.doctor .footer .ani-text .txt {
  display: flex;
  gap: 3rem;
  font-size: 1.75rem;
}
.doctor .footer .ani-text .txt img {
  padding-top: 2.2rem;
  vertical-align: top;
}
.doctor .footer .ani-text .txt span {
  display: inline-block;
  padding-top: 3.2rem;
  padding-left: 0;
  font-size: 1.75rem;
}
@media screen and (max-width: 1460px) {
  .doctor .footer {
    height: 7rem;
  }
  .doctor .footer .ani-text .txt img {
    padding-top: 1.1rem;
  }
  .doctor .footer .ani-text .txt span {
    padding-top: 2.2rem;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .doctor .footer {
    height: 4rem;
  }
  .doctor .footer .text-loop .loop {
    padding-right: 4rem;
  }
  .doctor .footer .ani-text .txt {
    gap: 1.5rem;
    font-size: 1.1rem;
  }
  .doctor .footer .ani-text .txt img {
    padding-top: 0.7rem;
    height: 3.2rem;
  }
  .doctor .footer .ani-text .txt span {
    padding-top: 1.2rem;
    font-size: inherit;
  }
}

/* popup */
.main-layer-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* 옅은 검정 배경 */
  z-index: 200;
  justify-content: center;
  align-items: center;
}
.main-layer-popup.on {
  display: flex;
}
.main-layer-popup .popup-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 10px;
  width: 100%;
  max-width: 63.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  animation: fadeInUpLayer 0.3s;
  transition: all 0.3s;
}
.main-layer-popup .popup-header {
  position: relative;
  padding: 0 5rem;
  height: 6.5rem;
  line-height: 6.9rem;
  background-color: #EBF1FD;
  cursor: default;
  box-sizing: border-box;
}
.main-layer-popup .popup-header .title {
  color: var(--pri4);
  font-size: clamp(1.1rem, 4vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.9px;
}
.main-layer-popup .popup-header .title span {
  display: inline-block;
  padding-left: 1.5rem;
  color: var(--pri4-3);
  font-weight: 200;
}
.main-layer-popup .popup-header .close-btn {
  position: absolute;
  top: 50%;
  right: 2%;
  transform: translate(-2%, -50%);
  width: 3.25rem;
  height: 3.25rem;
  cursor: pointer;
  background: url(/common/img/user/common/btn_popup_close.svg) no-repeat center center;
  transition: all 0.3s;
  border: 1px solid transparent;
}
.main-layer-popup .popup-header .close-btn:hover {
  border-color: var(--pri4);
}
.main-layer-popup .popup-contents {
  display: flex;
  flex-wrap: wrap;
  padding: 3.75rem 4rem 3.75rem 5rem;
  cursor: default;
  box-sizing: border-box;
}
.main-layer-popup .popup-contents .image {
  position: relative;
  width: 24.125rem;
  height: 26rem;
  padding-top: 28px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  background-color: #F5F5F5;
  border-radius: 1.5625rem;
  overflow: hidden;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .main-layer-popup .popup-contents .image {
    width: 21rem;
  }
}
.main-layer-popup .popup-contents .image img {
  width: 55%;
  position: absolute;
  bottom: 0;
  top: initial;
  left: 50%;
  transform: translateX(-50%);
}
.main-layer-popup .popup-contents .image.third img {
  width: 62%;
}
.main-layer-popup .popup-contents .history {
  width: calc(100% - 24.125rem);
  padding-left: 4rem;
  padding-top: 0;
}
.main-layer-popup .popup-contents .history .name {
  padding-bottom: 1rem;
  color: var(--pri4);
  font-size: clamp(1.25rem, 4vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.8px;
}
.main-layer-popup .popup-contents .history .name span {
  display: inline-block;
  padding-left: 0.8rem;
  color: #888;
  font-size: clam(1rem, 4vw, 1.25rem);
  font-weight: 400;
  letter-spacing: -0.5px;
}
.main-layer-popup .popup-contents .history .point {
  padding-bottom: 1.65rem;
  color: var(--pri1);
  font-size: clamp(0.9rem, 4vw, 1.25rem);
  letter-spacing: -0.5px;
}
.main-layer-popup .popup-contents .history .point p {
  display: flex;
  font-weight: 500;
  line-height: 1.45;
  padding-bottom: 0.5rem;
}
.main-layer-popup .popup-contents .history .point p::before {
  content: "·";
  padding-right: 1rem;
}
.main-layer-popup .popup-contents .history .list {
  width: 100%;
  height: 16.25rem;
  overflow-y: scroll;
}
.main-layer-popup .popup-contents .history .list.long {
  height: 13rem;
}
.main-layer-popup .popup-contents .history .list .tit {
  padding: 1.65rem 0 1rem;
  color: var(--pri4);
  font-size: clamp(1rem, 4vw, 1.25rem);
  font-weight: 600;
  letter-spacing: -0.5px;
}
.main-layer-popup .popup-contents .history .list .tit:first-child {
  padding-top: 0;
}
.main-layer-popup .popup-contents .history .list li {
  color: var(--pri4);
  font-size: clamp(1rem, 4vw, 1.25rem);
  font-weight: 300;
  letter-spacing: -0.5px;
  display: flex;
}
.main-layer-popup .popup-contents .history .list li::before {
  display: inline-block;
  content: "·";
  padding-right: 1rem;
}
.main-layer-popup .popup-contents .doctor-schedule {
  padding-top: 1.5rem;
}
.main-layer-popup .popup-contents .doctor-schedule h2 {
  padding-bottom: 0.3rem;
  color: var(--pri4);
  font-size: clamp(1rem, 4vw, 1.25rem);
  font-weight: 600;
  letter-spacing: -0.5px;
}
.main-layer-popup .popup-contents .doctor-schedule .desc {
  padding-bottom: 0.5rem;
  color: var(--pri1);
}
.main-layer-popup .popup-contents .doctor-schedule .schedule-table table thead span {
  font-weight: 500;
  font-size: 0.9rem;
}
.main-layer-popup .popup-contents .doctor-schedule .schedule-table table tbody th {
  padding: 0.5rem 0;
  line-height: 1.25;
  font-weight: 600;
  font-size: 1rem;
  border-right: 1px dashed #dfdfdf;
}
.main-layer-popup .popup-contents .doctor-schedule .schedule-table table tbody th:first-child {
  background-color: #fcfcfc;
}
.main-layer-popup .popup-contents .doctor-schedule .schedule-table table tbody th br {
  display: none;
}
.main-layer-popup .popup-contents .doctor-schedule .schedule-table table tbody tr:nth-child(even) td:last-child {
  border-right: 0;
}
.main-layer-popup .popup-contents .doctor-schedule .schedule-table table tbody td.holiday {
  font-weight: 600;
  color: var(--pri1);
}
.main-layer-popup .popup-contents .doctor-schedule .schedule-table table .point th:first-child {
  color: var(--pri3);
  background-color: #f4fdff;
}
.main-layer-popup .popup-contents .doctor-schedule .schedule-table table .point .holiday {
  color: var(--pri3);
}
@media screen and (max-width: 1023px) {
  .main-layer-popup .popup-contents .doctor-schedule {
    overflow: scroll;
  }
  .main-layer-popup .popup-contents .doctor-schedule table {
    table-layout: fixed;
  }
}
@media screen and (max-width: 767px) {
  .main-layer-popup .popup-contents .doctor-schedule {
    width: 100%;
  }
  .main-layer-popup .popup-contents .doctor-schedule table thead span {
    display: none;
  }
  .main-layer-popup .popup-contents .doctor-schedule table tbody th br {
    display: block !important;
  }
}
@keyframes fadeInUpLayer {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}
@media screen and (max-width: 1023px) {
  .main-layer-popup .popup-inner {
    max-width: 90%;
  }
  .main-layer-popup .popup-contents {
    padding: 3rem 3rem 3rem 3rem;
  }
  .main-layer-popup .popup-contents .image {
    width: 16rem;
    height: 22rem;
    border-radius: 1.2rem;
  }
  .main-layer-popup .popup-contents .history {
    width: calc(100% - 16rem);
    padding-left: 3rem;
    padding-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .main-layer-popup .popup-header {
    height: 3rem;
    line-height: 3.2rem;
    padding: 0 2rem;
  }
  .main-layer-popup .popup-header .close-btn {
    width: 2.65rem;
    height: 2.65rem;
    background-size: contain;
  }
  .main-layer-popup .popup-contents {
    padding: 2rem 1.4rem;
    flex-direction: column;
    border-radius: 0.2rem;
  }
  .main-layer-popup .popup-contents .image {
    width: 100%;
    height: 8rem;
  }
  .main-layer-popup .popup-contents .image img {
    width: 30% !important;
    top: 1.2rem;
    bottom: initial;
  }
  .main-layer-popup .popup-contents .history {
    width: 100%;
    padding-left: 0;
    padding-top: 1rem;
  }
  .main-layer-popup .popup-contents .history .name {
    font-size: 1.1rem;
    padding-bottom: 0.4rem;
  }
  .main-layer-popup .popup-contents .history .name span {
    font-size: 1rem;
  }
  .main-layer-popup .popup-contents .history .point {
    padding-bottom: 1rem;
    border-bottom: 1px solid #f6f6f6;
  }
  .main-layer-popup .popup-contents .history .point p {
    font-size: 1rem;
    padding-bottom: 0;
  }
  .main-layer-popup .popup-contents .history .list {
    height: 10rem;
  }
  .main-layer-popup .popup-contents .history .list .tit {
    padding: 1.4rem 0;
    font-size: 1.1rem;
  }
  .main-layer-popup .popup-contents .history .list .tit:first-child {
    padding-top: 1.2rem;
    padding-bottom: 0.4rem;
  }
  .main-layer-popup .popup-contents .history .list li {
    font-size: 0.9rem;
  }
}

.subject {
  background-size: cover;
  background-repeat: no-repeat;
  transition: background-image 0.3s ease-in-out;
}
.subject.neck {
  background-image: url(/common/img/user/main/bg_symptoms_neck.jpg);
}
.subject.waist {
  background-image: url(/common/img/user/main/bg_symptoms_waist.jpg);
}
.subject.shoulder {
  background-image: url(/common/img/user/main/bg_symptoms_shoulder.jpg);
}
.subject.knee {
  background-image: url(/common/img/user/main/bg_symptoms_knee.jpg);
}
.subject.foot {
  background-image: url(/common/img/user/main/bg_symptoms_foot.jpg);
}
.subject.etc {
  background-image: url(/common/img/user/main/bg_symptoms_etc.jpg);
}
.subject.nonsurgical {
  background-image: url(/common/img/user/main/bg_symptoms_nonsurgical.jpg);
}
.subject.nondrug {
  background-image: url(/common/img/user/main/bg_symptoms_nondrug.jpg);
}
.subject .inr {
  position: relative;
  height: 58rem;
  padding: 12rem 7.5rem 0;
  overflow: hidden;
  box-sizing: border-box;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1460px) {
  .subject .inr {
    height: 76rem;
    padding: 8rem 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .subject .inr {
    padding: 6rem 1.8rem !important;
  }
}
.subject .header .label {
  color: var(--pri1-4);
}
.subject .header .title {
  color: var(--white);
}
.subject .contents {
  position: relative;
  width: 100%;
  height: 100%;
}
.subject .contents .tab {
  width: 38.125rem;
  position: absolute;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 8rem;
}
.subject .contents .tab li {
  flex: 0 0 25%;
  height: 9.375rem;
  line-height: 9.375rem;
  text-align: center;
  justify-content: center;
  align-items: center;
  border-right: 1px solid rgba(236, 236, 236, 0.5);
  border-bottom: 1px solid rgba(236, 236, 236, 0.5);
  -webkit-background-clip: padding-box; /* for Safari */
  background-clip: padding-box; /* for IE9+, Firefox 4+, Opera, Chrome */
  cursor: pointer;
}
.subject .contents .tab li:focus, .subject .contents .tab li:active {
  outline: none;
  box-shadow: none;
}
.subject .contents .tab li:nth-child(4n) {
  border-right: 0;
}
.subject .contents .tab li:nth-child(n+5) {
  border-bottom: 0;
}
@media screen and (max-width: 767px) {
  .subject .contents .tab li {
    flex: 0 0 50%;
  }
}
.subject .contents .tab li .image {
  padding-top: 1.7rem;
  height: calc(100% - 6vh);
  text-align: center;
  opacity: 0.6;
  transition: all 0.3s;
}
.subject .contents .tab li .image img {
  height: 3.6rem;
  margin: 0 auto;
}
.subject .contents .tab li .txt {
  opacity: 0.6;
  height: 6vh;
  font-size: 1.34rem;
  font-weight: 200;
  color: #fff;
  transition: all 0.3s;
}
.subject .contents .tab li.on {
  background: var(--white-a15);
}
.subject .contents .tab li.on .image {
  opacity: 1;
}
.subject .contents .tab li.on .txt {
  font-weight: 500;
  opacity: 1;
}
.subject .contents .tab li:hover {
  background: var(--white-a15);
}
.subject .contents .tab li:hover .image {
  opacity: 1;
}
.subject .contents .tab li:hover .txt {
  font-weight: 500;
  opacity: 1;
}
.subject .contents .symptoms-wrap {
  display: none;
  position: absolute;
  top: -10rem;
  right: 0;
  width: 56.25rem;
  height: 40.5rem;
  padding: 5rem 2.5rem 2rem 5.625rem;
  border: 1px solid #FFF;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 2.5rem;
  box-sizing: border-box;
  overflow-y: hidden;
}
.subject .contents .symptoms-wrap.on {
  display: block;
}
.subject .contents .symptoms-wrap .oveflow {
  overflow-y: scroll;
  height: 33rem;
}
.subject .contents .symptoms-item:nth-child(n+2) {
  padding-top: 2.6rem;
}
.subject .contents .symptoms-item .header .label {
  padding-bottom: 0;
  color: var(--pri1);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.0375rem;
}
.subject .contents .symptoms-item .header .tit {
  color: var(--pri4);
  font-size: 2.3rem;
  font-weight: 600;
  letter-spacing: -0.0625rem;
  padding-bottom: 2rem;
}
.subject .contents .symptoms-item .contents {
  display: flex;
  gap: 2rem;
  width: 100%;
  overflow: hidden;
}
.subject .contents .symptoms-item .contents .sub-tit {
  width: 6rem;
  line-height: 1;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--pri4);
}
.subject .contents .symptoms-item .contents ul li {
  display: flex;
  padding-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.45;
  color: var(--pri4-2);
}
.subject .contents .symptoms-item .contents ul li::before {
  display: inline-block;
  content: "·";
  color: #B1C0D1;
  font-weight: 600;
  padding-right: 1.8rem;
}
@media screen and (max-width: 1800px) {
  .subject .inr {
    padding-top: 10rem;
  }
  .subject .header .label {
    padding-bottom: 0;
  }
  .subject .contents {
    position: relative;
  }
  .subject .contents .tab {
    width: 38%;
    padding-top: 6rem;
  }
  .subject .contents .symptoms-wrap {
    width: 56%;
    top: -6rem;
    right: 0;
    height: 35rem;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 1460px) {
  .subject .contents .tab {
    width: 100%;
    padding-top: 2.5rem;
  }
  .subject .contents .tab li {
    position: relative;
    flex: 0 0 12.5%;
    background-color: rgba(0, 0, 0, 0.158);
    border-top: 1px solid rgba(236, 236, 236, 0.5);
    border-right: 1px solid rgba(236, 236, 236, 0.5);
    border-bottom: 1px solid rgba(236, 236, 236, 0.5);
    border-left: 0px solid rgba(236, 236, 236, 0.5);
  }
  .subject .contents .tab li:nth-child(1) {
    border-left: 1px solid rgba(236, 236, 236, 0.5);
  }
  .subject .contents .tab li:nth-child(n+5) {
    border-bottom: 1px solid rgba(236, 236, 236, 0.5);
  }
  .subject .contents .tab li:nth-child(4n) {
    border-right: 1px solid rgba(236, 236, 236, 0.5);
  }
  .subject .contents .tab li .image {
    height: 5.5rem;
  }
  .subject .contents .tab li .image img {
    height: 100%;
  }
  .subject .contents .tab li .txt {
    position: absolute;
    bottom: 1.2rem;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1.25;
    font-size: 1.1rem;
    width: 100%;
    height: auto;
    text-align: center;
  }
  .subject .contents .symptoms-wrap {
    width: 100%;
    top: 15rem;
    left: 0;
    right: initial;
  }
}
@media screen and (max-width: 1023px) {
  .subject .contents .tab li {
    height: 8.3rem;
    line-height: 8.3rem;
  }
  .subject .contents .tab li .image img {
    height: 3.1rem;
  }
  .subject .contents .tab li .txt {
    font-size: 1.1rem;
  }
  .subject .contents .symptoms-wrap {
    border-radius: 1.5rem;
    padding: 4rem 3rem 2rem 4rem;
  }
}
@media screen and (max-width: 767px) {
  .subject {
    height: 63rem;
  }
  .subject .contents .tab li {
    flex: 0 0 25%;
    height: 7rem;
  }
  .subject .contents .tab li:nth-child(-n+4) {
    border-bottom: 0;
  }
  .subject .contents .tab li:nth-child(5) {
    border-left: 1px solid rgba(236, 236, 236, 0.5);
  }
  .subject .contents .tab li .image {
    padding-top: 1.2rem;
  }
  .subject .contents .tab li .image img {
    height: 2.8rem;
  }
  .subject .contents .tab li .txt {
    bottom: 0.6rem;
    font-size: 1rem;
  }
  .subject .contents .symptoms-wrap {
    top: 20rem;
    height: 26rem;
    padding: 3rem 2rem 2rem 2rem;
  }
  .subject .contents .symptoms-wrap .oveflow {
    height: 100%;
  }
  .subject .contents .symptoms-wrap .symptoms-item .header .label {
    font-size: 1.1rem;
    line-height: 1.25;
  }
  .subject .contents .symptoms-wrap .symptoms-item .header .tit {
    padding-bottom: 1rem;
    font-size: 2rem;
  }
  .subject .contents .symptoms-wrap .symptoms-item .contents {
    flex-direction: column;
    gap: 1rem;
  }
  .subject .contents .symptoms-wrap .symptoms-item .contents .sub-tit {
    width: 100%;
    font-size: 1.2rem;
  }
  .subject .contents .symptoms-wrap .symptoms-item .contents ul li {
    font-size: 1rem;
  }
  .subject .contents .symptoms-wrap .symptoms-item .contents ul li::before {
    padding-right: 0.5rem;
  }
}

.equip {
  padding: 12rem 7.5rem 12rem;
  background-color: var(--pri1-3);
  overflow: hidden;
  box-sizing: border-box;
}
@media screen and (max-width: 1460px) {
  .equip {
    padding: 10rem 2.5rem 16rem;
  }
}
@media screen and (max-width: 1023px) {
  .equip {
    padding: 10rem 2.5rem 16rem;
  }
}
@media screen and (max-width: 767px) {
  .equip {
    padding: 6rem 1.8rem 10rem;
  }
}
.equip .header {
  text-align: center;
}
@media screen and (max-width: 1460px) {
  .equip .header {
    text-align: left;
  }
}
.equip .equipSwiper {
  padding-top: 7.5rem;
}
.equip .equipSwiper.swiper {
  overflow: visible;
}
.equip .equipSwiper li {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  background-color: var(--white);
}
.equip .equipSwiper li > div {
  position: absolute;
  top: 2.5rem;
  left: 2.5rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.equip .equipSwiper li > div .type {
  display: block;
  line-height: 1.25;
  letter-spacing: -0.011rem;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--pri1);
}
.equip .equipSwiper li > div .name {
  line-height: 1.25;
  letter-spacing: 0;
  font-weight: 500;
  font-size: 1.425rem;
  color: var(--pri4);
}
.equip .equipSwiper li > div .name .sub {
  display: block;
  line-height: 1.25;
}
.equip .equipSwiper li img {
  width: auto;
  height: 34rem;
  padding: 2rem 0 1rem;
  margin: 0 auto;
}
.equip .equipSwiper .swiper-pagination {
  bottom: -4rem;
}
.equip .equipSwiper .swiper-pagination .swiper-pagination-bullet {
  margin: 0 2px !important;
}
.equip .equipSwiper .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--pri1) !important;
}
@media screen and (max-width: 1460px) {
  .equip .equipSwiper {
    padding-top: 5.5rem;
  }
  .equip .equipSwiper li {
    padding-top: 3rem;
  }
  .equip .equipSwiper li > div {
    left: 1.5rem;
  }
  .equip .equipSwiper li > div .type {
    padding-top: 0.15rem;
    font-size: 1rem;
    min-width: 4rem;
  }
  .equip .equipSwiper li > div .name {
    font-size: 1.1rem;
  }
  .equip .equipSwiper li img {
    height: 25rem;
  }
}
@media screen and (max-width: 1023px) {
  .equip .equipSwiper li {
    padding-top: 1rem;
    height: 20rem;
  }
}
@media screen and (max-width: 767px) {
  .equip .equipSwiper {
    padding-top: 3rem;
  }
  .equip .equipSwiper li {
    height: 18rem;
    border-radius: 1rem;
  }
  .equip .equipSwiper li > div {
    flex-direction: column;
    top: 1.5rem;
  }
  .equip .equipSwiper li > div .type {
    padding-top: 0;
    padding-bottom: 0.5rem;
    line-height: 1.25;
  }
  .equip .equipSwiper li > div .name {
    line-height: 1.25;
  }
  .equip .equipSwiper li > div .name .sub {
    display: inline;
  }
  .equip .equipSwiper li img {
    height: 90%;
    position: absolute;
    bottom: 0;
    right: 0%;
  }
}

.treat {
  padding: 12rem 0 12rem;
  box-sizing: border-box;
  overflow: hidden;
}
.treat .header {
  padding: 0 7.5rem 0;
}
.treat .tab-item {
  padding-top: 6.875rem;
}
.treat .tab-item .tab-header {
  padding: 0 7.5rem 0;
  box-sizing: border-box;
}
.treat .tab-item .tab-header .pager-txt {
  display: flex;
  gap: 1.25rem;
}
.treat .tab-item .tab-header .pager-txt .swiper-pagination-bullet {
  width: 12.5rem;
  height: 3.4375rem;
  border-radius: 0;
  background: none;
  opacity: 1;
}
.treat .tab-item .tab-header .pager-txt .swiper-pagination-bullet.on span {
  color: var(--white);
  background: var(--pri1);
  font-weight: 600;
}
.treat .tab-item .tab-header .pager-txt .swiper-pagination-bullet span {
  display: block;
  width: 12.5rem;
  height: 3.4375rem;
  line-height: 3.4375rem;
  color: var(--pri4-2);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: -0.65px;
  text-align: center;
  background: #efefef;
  border-radius: 6.25rem;
  transition: all 0.3s;
}
.treat .tab-item .tab-content {
  padding: 4.625rem 7.5rem 0 7.5rem;
}
.treat .tab-item .tab-content .swiper-slide {
  position: relative;
  overflow: hidden;
}
.treat .tab-item .tab-content .swiper-slide .img {
  position: relative;
  width: 100%;
  height: 37rem;
  border-radius: 2.5rem;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
}
.treat .tab-item .tab-content .swiper-slide .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.treat .tab-item .tab-content .swiper-slide .text-wrap {
  width: 86%;
  position: absolute;
  top: 5rem;
  left: 6rem;
}
.treat .tab-item .tab-content .swiper-slide .text-wrap p {
  color: var(--white);
  white-space: pre-line;
}
.treat .tab-item .tab-content .swiper-slide .text-wrap p.label {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.6px;
}
.treat .tab-item .tab-content .swiper-slide .text-wrap p.tit {
  font-size: 3.125rem;
  font-weight: 600;
  letter-spacing: -0.6px;
}
.treat .tab-item .tab-content .swiper-slide .text-wrap p.txt {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: -0.6px;
  line-height: 2;
  padding-top: 5rem;
}
.treat .tab-item .tab-content .swiper-slide .text-wrap p.txt b {
  font-weight: 600;
}
.treat .tab-item .tab-content .swiper-slide .text-wrap p.txt span {
  font-size: inherit;
}
@media screen and (max-width: 1460px) {
  .treat .header {
    padding: 0 2.5rem 0;
  }
  .treat .tab-item .tab-header {
    padding: 0 2.5rem;
  }
  .treat .tab-item .tab-header .pager-txt {
    gap: 0.5rem;
  }
  .treat .tab-item .tab-content {
    padding: 4.625rem 0 0 2.5rem;
  }
  .treat .tab-item .tab-content .swiper-slide .img {
    height: 40rem;
  }
}
@media screen and (max-width: 767px) {
  .treat {
    padding: 6rem 0;
  }
  .treat .header {
    padding: 0 1.8rem 0;
  }
  .treat .tab-item {
    padding-top: 4rem;
  }
  .treat .tab-item .tab-header {
    padding: 0 1rem;
  }
  .treat .tab-item .tab-header .pager-txt {
    gap: 0.4rem;
  }
  .treat .tab-item .tab-header .pager-txt .swiper-pagination-bullet {
    width: 25%;
    height: 2.2rem;
  }
  .treat .tab-item .tab-header .pager-txt .swiper-pagination-bullet span {
    width: 100%;
    height: 100%;
    line-height: 100%;
    padding-top: 0.6rem;
    font-size: 1rem;
  }
  .treat .tab-item .tab-content {
    padding: 3rem 1rem 0 1rem;
  }
  .treat .tab-item .tab-content .swiper-slide .text-wrap {
    width: 75%;
    top: 3rem;
    left: 2.2rem;
  }
  .treat .tab-item .tab-content .swiper-slide .text-wrap p.label {
    font-size: 1.1rem;
    padding-left: 0.1rem;
  }
  .treat .tab-item .tab-content .swiper-slide .text-wrap p.tit {
    font-weight: 800;
    font-size: 2.2rem;
    line-height: 1.25;
  }
  .treat .tab-item .tab-content .swiper-slide .text-wrap p.txt {
    padding-top: 0;
    line-height: 1.65;
    font-size: 1.1rem;
  }
  .treat .tab-item .tab-content .swiper-slide .text-wrap p.txt .pc {
    display: none;
  }
  .treat .tab-item .tab-content .swiper-slide .img {
    height: 22rem;
    border-radius: 1.2rem;
  }
  .treat .tab-item .tab-content .swiper-slide .img img {
    height: 100%;
  }
}

.facility {
  padding: 12rem 0 18rem;
  background: var(--pri1-3);
  box-sizing: border-box;
  overflow: hidden;
}
.facility .header {
  padding-bottom: 7.5rem;
  text-align: center;
  box-sizing: border-box;
}
.facility .facilitySwiper {
  margin: 0 -10%;
}
.facility .facilitySwiper.swiper {
  overflow: visible;
}
.facility .facilitySwiper .swiper-slide {
  width: 32%;
  border-radius: 1.25rem;
  overflow: hidden;
}
.facility .facilitySwiper .swiper-slide img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.facility .facilitySwiper .swiper-pagination {
  top: initial;
  bottom: -5rem !important;
}
.facility .facilitySwiper .swiper-pagination-bullet {
  margin: 0 2px !important;
}
.facility .facilitySwiper .swiper-pagination-bullet-active {
  background: var(--pri1) !important;
}
@media screen and (max-width: 1023px) {
  .facility {
    padding: 10rem 0;
  }
  .facility .header {
    padding: 0 2.5rem 4rem;
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  .facility {
    padding: 6rem 0 10rem;
  }
  .facility .header {
    padding: 0 1.8rem 2rem;
  }
  .facility .facilitySwiper {
    padding-left: 15%;
    box-sizing: border-box;
  }
  .facility .facilitySwiper .swiper-slide {
    border-radius: 0.5rem;
  }
  .facility .facilitySwiper .swiper-pagination {
    bottom: -2.5rem !important;
  }
}

.information {
  padding: 12rem 7.5rem 12rem;
  background: var(--pri1);
  box-sizing: border-box;
}
@media screen and (max-width: 1680px) {
  .information .contents {
    gap: 3rem;
  }
  .information .contents .left {
    flex-basis: 60%;
    width: 60%;
  }
  .information .contents .left .inr {
    width: 100%;
  }
  .information .contents .left .inr .map {
    width: 100%;
  }
  .information .contents .left .inr .map .root_daum_roughmap {
    width: 100% !important;
  }
}
@media screen and (max-width: 1460px) {
  .information {
    padding: 8rem 2.5rem;
  }
  .information .contents .left {
    flex-basis: 100%;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .information {
    padding: 6rem 1.8rem;
  }
}
.information .header {
  text-align: center;
}
.information .header p {
  color: var(--white);
}
.information .header .title br {
  display: none;
}
@media screen and (max-width: 767px) {
  .information .header .title br {
    display: block;
  }
}
.information .contents {
  display: flex;
  gap: 9.375rem;
  padding-top: 8.125rem;
}
.information .contents .left {
  position: relative;
}
.information .contents .left .inr {
  position: sticky;
  top: 10rem;
  transition: all 0.3s;
}
@media screen and (max-width: 1460px) {
  .information .contents {
    flex-direction: column;
    padding-top: 5rem;
    gap: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .information .contents {
    padding-top: 2rem;
    gap: 2.5rem;
  }
}
.information .map .btn {
  position: absolute;
  left: -5rem;
  top: -4rem;
  z-index: 10;
  display: block;
  text-align: center;
  width: 10.1875rem;
  height: 10.1875rem;
  padding-top: 3.5rem;
  background: var(--pri3);
  color: #fff;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: -0.6px;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 0.3s;
}
.information .map .btn b {
  font-weight: 600;
}
.information .map .btn:hover {
  background: #ff9b21;
}
@media screen and (max-width: 1460px) {
  .information .map .btn {
    left: initial;
    right: -2rem;
  }
}
@media screen and (max-width: 767px) {
  .information .map .btn {
    top: -1rem;
    right: -1rem;
    width: 7.2rem;
    height: 7.2rem;
    font-size: 1.2rem;
    padding-top: 2.3rem;
  }
}
.information .map .root_daum_roughmap {
  border-radius: 2.5rem;
}
@media screen and (max-width: 1460px) {
  .information .map .root_daum_roughmap {
    width: 100% !important;
  }
}
@media screen and (max-width: 767px) {
  .information .map .root_daum_roughmap {
    border-radius: 1.2rem;
    height: 25rem !important;
  }
}
.information .map .wrap_controllers,
.information .map .cont {
  display: none;
}
.information .hp-info > li {
  padding-top: 4.5rem;
  color: var(--white);
}
.information .hp-info > li:first-child {
  padding-top: 0;
}
.information .hp-info > li.hp-notice {
  padding: 1.875rem 3.125rem;
  border-radius: 0.625rem;
  background: #2F5EAA;
  box-sizing: border-box;
}
.information .hp-info > li.hp-notice p {
  padding-bottom: 0.5rem;
}
.information .hp-info > li.hp-notice p::before {
  display: inline-block;
  content: "·";
  padding-right: 0.8rem;
}
.information .hp-info > li.hp-notice p:last-child {
  padding-bottom: 0;
}
.information .hp-info > li.hp-notice p.point {
  color: var(--pri3);
}
.information .hp-info > li.hp-notice p b {
  color: var(--white-a50);
}
.information .hp-info > li.hp-notice p span {
  display: inline-block;
  color: var(--white-a5);
}
.information .hp-info > li .last {
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .information .hp-info > li {
    padding-top: 2.5rem;
  }
}
.information .hp-info .tit {
  color: var(--pri3);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.6px;
}
.information .hp-info .text-wrap {
  padding-top: 0.875rem;
}
.information .hp-info .text-wrap .txt {
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: -0.7px;
}
.information .hp-info .text-wrap .desc {
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: -0.6px;
}
.information .hp-info .text-wrap .desc::before {
  display: inline-block;
  content: "·";
  padding: 0 0.75rem;
}
.information .hp-info .text-wrap img {
  margin-top: 1.45rem;
  border-radius: 1.25rem;
}
.information .hp-info .text-wrap .addr span {
  font-size: 1.2rem;
  font-weight: 400;
}
.information .hp-info .text-wrap .addr .label {
  display: inline-block;
  width: 4.25rem;
  font-family: var(--enFont);
  font-weight: 200;
  font-size: 1.4rem;
  letter-spacing: 0;
}
@media screen and (max-width: 1023px) {
  .information .hp-info .text-wrap .addr .label {
    font-family: var(--pretend);
  }
}
@media screen and (max-width: 767px) {
  .information .hp-info .text-wrap .addr .label {
    font-family: var(--pretend);
  }
}
.information .hp-info .text-wrap .addr .label::after {
  display: inline-block;
  content: ".";
}
.information .hp-info .text-wrap .addr.point a {
  font-size: 2rem;
  font-weight: 700;
}
.information .hp-info .text-wrap .time li {
  display: flex;
  padding-bottom: 0.9375rem;
}
.information .hp-info .text-wrap .time li span {
  display: block;
}
.information .hp-info .text-wrap .time li span:nth-child(1) {
  width: 8.125rem;
}
.information .hp-info .text-wrap .time li span:nth-child(2) {
  font-weight: 600;
  letter-spacing: 0;
}
.information .hp-info .text-wrap .time li span.desc {
  padding-left: 0.5rem;
  font-weight: 200;
}
.information .hp-info .text-wrap .time li span.desc::before {
  display: none;
}
@media screen and (max-width: 767px) {
  .information .hp-info .tit {
    font-size: 1.1rem;
  }
  .information .hp-info .text-wrap {
    padding-top: 0.4rem;
  }
  .information .hp-info .text-wrap .txt {
    font-size: 1.2rem;
  }
  .information .hp-info .text-wrap .desc {
    font-size: 1.1rem;
  }
  .information .hp-info .text-wrap img {
    width: 100%;
    height: auto;
  }
  .information .hp-info .text-wrap .addr .label {
    font-size: 1.1rem;
  }
  .information .hp-info .text-wrap .addr.point a {
    font-size: 1.4rem;
  }
  .information .hp-info .text-wrap .time {
    padding-bottom: 0;
  }
  .information .hp-info .text-wrap .time li span:nth-child(1) {
    width: 24%;
    font-size: 1rem;
  }
  .information .hp-info li.hp-notice {
    padding: 1.2rem 1.6rem;
  }
  .information .hp-info li.hp-notice p {
    display: flex;
    flex-wrap: wrap;
    font-size: 0.96rem;
    line-height: 1.45;
  }
}

/* title */
.header {
  flex-basis: 32rem;
}
.header .label {
  padding-left: 0.125rem;
  padding-bottom: 1.25rem;
  color: var(--pri1);
  letter-spacing: -0.1rem;
  font-weight: 500;
  font-size: 1.5rem;
}
.header .title {
  color: rgba(182, 182, 182, 0.2);
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1.45;
}
.header .desc {
  padding-top: 2rem;
  color: var(--pri4-3);
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 168%;
  letter-spacing: -0.0531rem;
}
@media screen and (max-width: 1460px) {
  .header .label {
    font-size: 1.4rem;
  }
  .header .title {
    font-size: 3.25rem;
  }
  .header .desc {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .header .label {
    font-size: 1.2rem;
  }
  .header .title {
    font-size: 1.7rem;
  }
  .header .desc {
    font-size: 1.1rem;
  }
}

/* text Ani */
.text {
  font-size: 8vw;
  font-weight: 800;
  line-height: 100%;
  width: 100%;
  color: rgba(182, 182, 182, 0.2);
  background: linear-gradient(to right, #000, #000) no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  background-size: 0%;
  transition: background-size cubic-bezier(0.1, 0.5, 0.5, 1) 0.5s;
}
.text span {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #4246ce;
  color: #000;
  clip-path: polygon(0 50%, 100% 50%, 100% 50%, 0 50%);
  transform-origin: center;
  transition: all cubic-bezier(0.1, 0.5, 0.5, 1) 0.4s;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@keyframes circleScale {
  from {
    transform: scale(0.7, 0.7);
    opacity: 0.3;
  }
  to {
    transform: scale(3, 3);
    opacity: 0;
  }
}
.text-loop {
  display: flex;
  flex: 0 0 auto;
  white-space: nowrap;
  overflow: hidden;
}
.text-loop .loop {
  animation: textLoop 20s linear infinite;
  padding-right: 8rem;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--white);
  color: var(--pri1-3);
  font-weight: 500;
}
.text-loop .loop span {
  display: inline-block;
  padding-left: 8rem;
  font-size: 1.375rem;
  font-weight: 500;
}

@keyframes textLoop {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}
.sub-wrap .sub-tite {
  padding-top: 7em;
  padding-bottom: 5rem;
  text-align: center;
}
.sub-wrap .sub-tite .title {
  line-height: 1.68;
  font-weight: 600;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  color: var(--pri4);
  letter-spacing: -0.15rem;
}
.sub-wrap .sub-tite .desc {
  padding-top: 1rem;
  font-size: clamp(1rem, 4vw, 1.5rem);
  font-weight: 300;
  color: var(--pri4-3);
  letter-spacing: -0.1rem;
}
.sub-wrap .contents {
  padding: 8rem 7.5rem;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .sub-wrap .sub-tite {
    padding-top: 9rem;
    padding-bottom: 3rem;
  }
}

table {
  table-layout: fixed;
  width: 100%;
  min-width: 50rem;
  border-top: 2px solid var(--pri4-1);
  border-collapse: collapse;
}
table thead {
  background-color: var(--black);
}
table thead tr th {
  text-align: center;
  padding: 0.45rem 0.6rem;
  font-weight: 500;
  font-size: 0.9rem;
  line-height: 1.25;
  color: var(--white);
  border-bottom: 1px solid #363636;
  border-right: 1px solid #555555;
}
table thead tr th.last {
  border-right: 0;
}
table thead tr th.holiday {
  background-color: #700909;
}
table tbody tr {
  position: relative;
  border-bottom: 1px dashed #dfdfdf;
  transition: background-color 0.3s;
}
table tbody tr:nth-child(odd) td:last-child {
  border-right: 0;
}
table tbody tr.point {
  background-color: #f4fdff;
}
table tbody tr td {
  text-align: center;
  padding: 0.8rem 0.5rem;
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 1.25;
  letter-spacing: 0;
  word-break: keep-all;
  border-right: 1px dashed #dfdfdf;
  transition: all 0.3s;
}
table tbody tr td.red {
  background-color: #ffe9e9;
}
table tbody tr td b {
  color: var(--pri1);
  font-weight: 600;
}
table tbody tr .first {
  font-size: clamp(0.9rem, 4vw, 1rem);
  font-weight: 600;
}
table tbody tr .point {
  color: var(--pri1);
}

#pay .popup-inner {
  max-width: 72rem;
}
#pay .popup-inner .popup-contents {
  height: 45rem;
  padding: 3rem 2.5rem;
  overflow-y: scroll;
}
@media screen and (max-width: 1460px) {
  #pay .popup-inner .popup-contents {
    height: 95vw;
  }
}
@media screen and (max-width: 767px) {
  #pay .popup-inner {
    max-width: 96%;
    height: 90%;
  }
  #pay .popup-inner .popup-header .title span {
    padding-left: 1rem;
    font-size: 0.9rem;
  }
  #pay .popup-inner .popup-contents {
    padding: 1rem 1rem;
    border-radius: 0;
    height: 90%;
  }
}

/*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(--enFont);
  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(--pretend);
  }
}
@media screen and (max-width: 767px) {
  .community .title {
    font-family: var(--pretend);
  }
}
.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(--enFont);
  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(--pretend);
  }
}
@media screen and (max-width: 767px) {
  .community .step-tit span {
    font-family: var(--pretend);
  }
}
.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(--enFont);
  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(--pretend);
  }
}
@media screen and (max-width: 767px) {
  .view .list-info .list-title span {
    font-family: var(--pretend);
  }
}
@media screen and (max-width: 1023px) {
  .view .list-info .list-title span {
    font-family: var(--enFont);
    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(--pretend);
  }
}
@media screen and (max-width: 1023px) and (max-width: 767px) {
  .view .list-info .list-title span {
    font-family: var(--pretend);
  }
}
@media screen and (max-width: 767px) {
  .view .list-info .list-title span {
    font-family: var(--enFont);
    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(--pretend);
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .view .list-info .list-title span {
    font-family: var(--pretend);
  }
}
.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(--enFont);
  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(--pretend);
  }
}
@media screen and (max-width: 767px) {
  .event li .list-title span {
    font-family: var(--pretend);
  }
}
@media screen and (max-width: 1023px) {
  .event li .list-title span {
    font-family: var(--enFont);
    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(--pretend);
  }
}
@media screen and (max-width: 1023px) and (max-width: 767px) {
  .event li .list-title span {
    font-family: var(--pretend);
  }
}
@media screen and (max-width: 767px) {
  .event li .list-title span {
    font-family: var(--enFont);
    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(--pretend);
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .event li .list-title span {
    font-family: var(--pretend);
  }
}
@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 */