@charset "UTF-8";
/*base*/
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css");
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p,
blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn,
em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var,
b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label,
legend, table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, figure, figcaption,
footer, header, hgroup, menu, nav, output, ruby, section, summary, time,
mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0; /*font: inherit;*/
  font-family: var(--ko);
}

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

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

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

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

* {
  box-sizing: border-box;
}

li, a {
  list-style: none;
}

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

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

input {
  caret-color: black;
}

textarea {
  caret-color: black;
}

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

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

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

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

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

@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: #314250;
  --pri1-1: #3B4F60;
  --pri1-2: #202020;
  --pri1-3: ;
  --pri1-4: ;
  --pri1-5: ;
  --pri1-6: ;
  --pri1-7: ;
  --pri1-8: ;
  --pri1-9: ;
  --pri1-10: ;
  /*pri 2*/
  --pri2: #359F86;
  --pri2-1: #2A7F6B;
  --pri2-2: #40BFA1;
  --pri2-3: #DFF3EE;
  --pri2-4: #E1F0ED;
  --pri2-5: ;
  --pri2-6: ;
  --pri2-7: ;
  --pri2-8: ;
  --pri2-9: ;
  --pri2-10: ;
  /*pri 3*/
  --pri3: #6F6F6E;
  --pri3-1: #EFEFEF;
  --pri3-2: ;
  --pri3-3: ;
  --pri3-4: ;
  --pri3-5: ;
  --pri3-6: ;
  --pri3-7: ;
  --pri3-8: ;
  --pri3-9: ;
  --pri3-10: ;
  /*pri 4*/
  --pri4: #EF5F40;
  --pri4-1: ;
  --pri4-2: ;
  --pri4-3: ;
  --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 {
  --ko: "Outfit", "Pretendard", sans-serif;
  --en: "Outfit", sans-serif;
}

/* 폰트셋팅*/
/*삭제금지*/
/*common*/
footer {
  z-index: -1;
  padding: 6rem 5rem 8rem;
  padding-top: 11rem;
  padding-bottom: 11rem;
  color: #888888;
  background-color: #202020;
}
footer .inr {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
  gap: 5rem;
  max-width: 93.75rem;
  margin: 0 auto;
}
footer .inr p,
footer .inr span {
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: -0.1rem;
  word-break: keep-all;
  letter-spacing: -0.01rem;
}
footer .inr .top {
  display: flex;
  gap: 5rem;
  flex-direction: column;
  align-items: center;
}
footer .inr .company {
  font-weight: 600;
}
footer .inr .copyright {
  letter-spacing: 0;
}
footer .link {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.31rem;
}
footer .link a {
  display: flex;
  padding: 0.25rem 0.75rem;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: -0.02344rem;
  border: 1px solid #2d2d2d;
  background: var(--pri1-2);
  transition: all 0.3s;
}
footer .link a:hover {
  border-color: var(--pri1-2);
  background: #2d2d2d;
}
footer .info .contents {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding-bottom: 3rem;
}
footer .parking {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 5rem;
  padding-bottom: 6.25rem;
  border-bottom: 1px solid #353535;
}
footer .parking .img {
  border-radius: 1.5625rem;
  overflow: hidden;
}
footer .parking .img img {
  width: 100%;
  height: 100%;
}
footer .parking .contents {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
}
footer .parking .contents > .tit {
  color: var(--white);
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 188%; /* 3.29rem */
  letter-spacing: -0.04375rem;
}
footer .parking .contents > .txt {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 148%; /* 1.85rem */
  letter-spacing: -0.03125rem;
}
footer .parking .contents > .txt .point {
  font-weight: 600;
  color: var(--pri2-2);
}
footer .parking .contents .public {
  display: flex;
  flex-direction: column;
  gap: 0.62rem;
  padding-top: 2.44rem;
}
footer .parking .contents .public li {
  display: flex;
  flex-direction: row;
  gap: 0.62rem;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 148%; /* 1.85rem */
  letter-spacing: -0.03125rem;
}
footer .parking .contents .public li::before {
  display: inline-flex;
  content: "·";
  padding-right: 0.5rem;
}
footer .parking .contents .public li .tit {
  min-width: 6.8rem;
}
footer .parking .contents .public li .contents {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 1rem 0;
}
footer .parking .contents .public li .point {
  font-weight: 500;
  color: var(--pri2-2);
}
footer .parking .contents .station {
  display: flex;
  flex-shrink: 0;
  padding: 0rem 0.625rem;
  margin-right: 1rem;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  border-radius: 6.25rem;
  background: #F17238;
}
footer .parking .contents .bus {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
}
footer .parking .contents .bus .label {
  padding: 0rem 0.375rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  border-radius: 0.125rem;
  background: #05BDC1;
}
footer .parking .contents .bus .label.village {
  background: #97C665;
}
footer .parking .contents .unit {
  padding: 0 0.5rem;
}
@media screen and (max-width: 1023px) {
  footer {
    padding: 4rem 2.5rem 6rem;
  }
  footer .parking {
    gap: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  footer {
    padding: 6rem 1.25rem;
  }
  footer .inr {
    align-items: flex-start;
  }
  footer .inr .top {
    gap: 4rem;
  }
  footer .inr p,
  footer .inr span {
    font-size: 1rem;
  }
  footer .info .contents {
    justify-content: flex-start;
    gap: 1rem;
    padding-bottom: 1rem;
  }
  footer .link {
    width: 100%;
  }
  footer .link a {
    font-size: 1rem;
  }
  footer .parking {
    flex-direction: column;
    padding-bottom: 4rem;
  }
  footer .parking .contents > .tit {
    text-align: left;
    font-size: 1.4rem;
  }
  footer .parking .contents > .txt {
    text-align: left;
    font-size: 1.1rem;
  }
  footer .parking .contents .public li .tit {
    text-align: left;
    font-size: 1.1rem;
  }
  footer .parking .contents .public li .contents P,
  footer .parking .contents .public li .contents span {
    font-size: 1.1rem;
  }
}

.marqueeSwiper {
  padding-bottom: 1.25rem !important;
  color: var(--white);
  background-color: var(--pri1);
}
.marqueeSwiper .swiper-wrapper {
  transition-timing-function: linear !important;
}
.marqueeSwiper .swiper-slide {
  width: auto;
  display: flex;
  align-items: center;
  padding: 1rem 8rem;
  gap: 1rem;
  font-size: 1rem;
}
.marqueeSwiper .swiper-slide .icon {
  display: inline-flex;
  width: 1rem;
  height: 1rem;
  margin-top: 1px;
  background-repeat: no-repeat;
  background-position: center center;
}
.marqueeSwiper .swiper-slide .icon[data-icon=notice] {
  background-image: url(/common/img/user/icon/icon_topbanner_notice.svg);
}
.marqueeSwiper .swiper-slide .icon[data-icon=check] {
  background-image: url(/common/img/user/icon/icon_topbanner_check.svg);
}
.marqueeSwiper .swiper-slide .icon[data-icon=home] {
  background-image: url(/common/img/user/icon/icon_topbanner_home.svg);
}
.marqueeSwiper .swiper-slide .icon[data-icon=night] {
  background-image: url(/common/img/user/icon/icon_topbanner_night.svg);
}
.marqueeSwiper.subject {
  padding: 14rem 0 6rem !important;
  background-color: transparent;
}
.marqueeSwiper.subject .swiper-slide {
  color: #EFEFEF;
  font-size: 5rem;
  font-weight: 900;
}
.marqueeSwiper.hospital {
  padding: 2.25rem 0 !important;
  background: var(--pri2-1, #2A7F6B);
}
.marqueeSwiper.hospital .swiper-slide {
  width: auto;
  padding: 0 8rem;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.05rem;
}
@media screen and (max-width: 1023px) {
  .marqueeSwiper .swiper-slide {
    padding: 1rem 6rem;
  }
}
@media screen and (max-width: 767px) {
  .marqueeSwiper .swiper-slide {
    padding: 1rem 3rem;
  }
  .marqueeSwiper.subject {
    padding: 4rem 0 2.5rem !important;
  }
  .marqueeSwiper.subject .swiper-slide {
    color: #d6d6d6;
    font-size: 3rem;
  }
  .marqueeSwiper.hospital .swiper-slide {
    padding: 0 3rem;
    font-size: 1.2rem;
  }
}

/* header */
.main-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: -1.125rem;
  padding: 2.5rem 3.75rem 2rem;
  border-top-left-radius: 1.25rem;
  border-top-right-radius: 1.25rem;
  background-color: white;
  box-sizing: border-box;
  transition: all 0.3s;
}
.main-header.active {
  position: fixed;
  top: 1rem;
  width: 100%;
  border-radius: 0;
  padding: 1.1rem 3.75rem 1rem;
  box-shadow: 2px 2px 3px 2px rgba(0, 0, 0, 0.02);
  transition: all 0.3s;
}
.main-header.active .logo {
  margin-left: 0;
}
.main-header.active .util .tel {
  width: 3rem;
  height: 3rem;
}
.main-header .logo {
  margin-left: 1rem;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .main-header .logo {
    width: 20rem;
  }
}
@media screen and (max-width: 440px) {
  .main-header .logo {
    width: 13rem;
  }
}
.main-header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: auto;
  margin-right: 4rem;
  width: 62%;
  box-sizing: border-box;
}
.main-header .gnb {
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-sizing: border-box;
}
.main-header .gnb li a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.045rem;
  transition: all 0.3s;
}
.main-header .gnb li:hover a, .main-header .gnb li.active a {
  color: var(--pri2);
}
.main-header .util .tel {
  position: relative;
  display: flex;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 6.25rem;
  background: linear-gradient(90deg, #06BE93 0%, #359F86 100%);
  transition: all 0.3s;
}
.main-header .util .tel::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1.5rem;
  height: 1.5rem;
  background: url(/common/img/user/icon/icon_phone.svg) no-repeat center center;
}
@media screen and (max-width: 1460px) {
  .main-header nav {
    margin-right: 3rem;
    margin-left: 3rem;
    width: 100%;
  }
  .main-header nav .gnb {
    gap: 0.5rem;
  }
}
@media screen and (max-width: 1240px) {
  .main-header {
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 1.25rem 2rem;
  }
  .main-header.active {
    padding: 1.1rem 1.25rem 0;
  }
  .main-header .logo {
    margin-left: 0;
    order: 1;
  }
  .main-header .util {
    order: 1;
  }
  .main-header .util .tel {
    width: 3.2rem;
    height: 3.2rem;
  }
  .main-header nav {
    order: 2;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    width: 100%;
    justify-content: initial;
    box-sizing: border-box;
    overflow-x: scroll;
  }
  .main-header nav .gnb {
    display: flex;
    white-space: nowrap;
    justify-content: space-between;
    gap: initial;
  }
  .main-header nav .gnb a {
    padding: 1rem 0 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .main-header {
    padding: 1.25rem 1.25rem 1rem;
    align-items: center;
  }
  .main-header nav {
    position: relative;
  }
  .main-header nav::after {
    content: "";
    display: block;
    position: absolute;
    right: -0.5rem;
    top: 0;
    width: 3rem;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) -43.1%, #FFF 65.52%);
  }
  .main-header nav .gnb {
    padding-right: 2rem;
    gap: 1.25rem;
    overflow-x: auto;
    white-space: nowrap;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch; /* iOS 전용 부드러운 스크롤 */
    scroll-behavior: smooth; /* 기본 스크롤 동작 부드럽게 */
    scrollbar-width: none; /* Firefox용 스크롤 숨김 */
  }
  .main-header nav .gnb::-webkit-scrollbar {
    display: none; /* 크롬/사파리 스크롤 숨김 */
  }
  .main-header nav .gnb li {
    flex: 0 0 auto;
  }
  .main-header.active {
    padding: 0.8rem 1.25rem 0;
  }
}

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

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

/*pages*/
section .header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.3125rem;
}
section .header .label {
  position: relative;
  display: flex;
  padding: 0.375rem 2.5rem;
  justify-content: center;
  align-items: flex-start;
  color: var(--pr1-2);
  text-align: center;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 168%;
  letter-spacing: -0.03938rem;
  border-radius: 6.25rem;
  background: #f3f3f3;
  overflow: hidden;
}
section .header .title {
  color: var(--pri1-2);
  text-align: center;
  font-size: 3.125rem;
  font-weight: 600;
  line-height: 128%;
  letter-spacing: -0.10938rem;
  overflow: hidden;
}
section .header .title p {
  overflow: hidden;
}
section .header .desc {
  color: var(--pri1-2);
  text-align: center;
  font-size: 1.375rem;
  font-weight: 200;
  line-height: 168%;
  letter-spacing: -0.04813rem;
  overflow: hidden;
}
section .header .point {
  display: inline-block;
  color: var(--pri2);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  section .header .title {
    line-height: 1.45;
    font-size: 1.8rem;
  }
  section .header .desc {
    font-size: 1.15rem;
  }
}

.section-wrap {
  position: relative;
  z-index: 1;
  background-color: var(--white);
  transition: all 0.3s ease;
}

.reveal {
  visibility: hidden;
  position: relative;
  overflow: hidden;
}
.reveal img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform-origin: left;
}

/* mainSlide */
#mainSlide {
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 0 3.75rem 10rem;
  background-color: var(--white);
}
#mainSlide .swiper {
  width: 100%;
  height: 100%;
}
#mainSlide .swiper .swiper-slide {
  border-radius: 2.5rem;
  overflow: hidden;
}
#mainSlide .swiper .swiper-slide .text-wrap {
  position: absolute;
  text-align: left;
  z-index: 1;
  width: 80%;
  top: 36%;
  left: 40%;
  transform: translate(-40%, -36%);
  color: var(--white);
  display: flex;
  gap: 1.6rem;
  flex-direction: column;
  overflow: hidden;
  transition-delay: 0.3s;
  transition: all 0.3s;
}
#mainSlide .swiper .swiper-slide .text-wrap p {
  color: var(--black-a60);
  transition-property: transform;
  transition-duration: 0.9s;
  display: block;
  transform: translateY(180%);
  -webkit-transform: translateY(180%);
  -moz-transform: translateY(180%);
  -ms-transform: translateY(180%);
  -o-transform: translateY(180%);
  display: block;
  transition-delay: inherit;
  opacity: 0;
  color: var(--pri1-2);
  line-height: 1.45;
  letter-spacing: -2.5%;
}
#mainSlide .swiper .swiper-slide .text-wrap .tit {
  font-size: 3.375rem;
  letter-spacing: -0.15188rem;
}
#mainSlide .swiper .swiper-slide .text-wrap .tit b {
  font-weight: 700;
}
#mainSlide .swiper .swiper-slide .text-wrap .tit b.point {
  color: var(--pri2);
}
#mainSlide .swiper .swiper-slide .text-wrap .tit b.point2 {
  color: #8A6B46;
}
#mainSlide .swiper .swiper-slide .text-wrap .tit b.point3 {
  color: #4D7DD5;
}
#mainSlide .swiper .swiper-slide .text-wrap .tit .icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  display: block;
}
#mainSlide .swiper .swiper-slide .text-wrap .tit .icon img {
  min-height: initial;
}
#mainSlide .swiper .swiper-slide .text-wrap .desc {
  color: var(--pri1-2);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 168%; /* 2.52rem */
  letter-spacing: -0.0675rem;
  opacity: 0.7;
}
#mainSlide .swiper .swiper-slide .text-wrap .subject {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}
#mainSlide .swiper .swiper-slide .text-wrap .subject .label {
  display: flex;
  padding: 0.3125rem 2.5rem;
  justify-content: center;
  align-items: center;
  border-radius: 6.25rem;
  background: var(--pri2-2, #40BFA1);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 168%; /* 2.52rem */
  letter-spacing: -0.0675rem;
}
#mainSlide .swiper .swiper-slide .text-wrap .subject .txt {
  color: var(--pri1-2);
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 168%; /* 2.94rem */
  letter-spacing: -0.07875rem;
}
#mainSlide .swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  min-height: 38rem;
}
#mainSlide .swiper .swiper-slide img.pc {
  display: block;
}
#mainSlide .swiper .swiper-slide img.mo {
  display: none;
}
#mainSlide .swiper .slide01 .text-wrap .tit {
  padding-top: 2rem !important;
}
#mainSlide .swiper .swiper-slide-active .text-wrap p {
  transform: translateY(0);
  opacity: 1;
}
#mainSlide .swiper .swiper-slide-active .text-wrap .tit {
  transition-delay: 0.3s;
}
#mainSlide .swiper .swiper-slide-active .text-wrap .desc,
#mainSlide .swiper .swiper-slide-active .text-wrap .subject {
  transition-delay: 0.5s;
}
#mainSlide .swiper .swiper-slide-active img {
  transform: scale(1.025);
  transition: transform 5s ease;
  background-position: center center;
}
#mainSlide .swiper .control {
  position: absolute;
  width: 80%;
  z-index: 2;
  bottom: 24%;
  left: 40%;
  transform: translate(-40%, -24%);
}
#mainSlide .swiper .control .inr {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8.5rem;
  height: 2rem;
}
#mainSlide .swiper .control .swiper-button-next,
#mainSlide .swiper .control .swiper-button-prev {
  background-repeat: none;
  transition: all 0.3s;
}
#mainSlide .swiper .control .swiper-button-next::after,
#mainSlide .swiper .control .swiper-button-prev::after {
  content: "";
}
#mainSlide .swiper .control .swiper-button-next:hover,
#mainSlide .swiper .control .swiper-button-prev:hover {
  opacity: 0.4;
}
#mainSlide .swiper .control .paging {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  height: 100%;
}
#mainSlide .swiper .control .next {
  background-image: url(/common/img/user/main/mainslide_prev.svg);
  height: 1.8rem;
}
#mainSlide .swiper .control .prev {
  background-image: url(/common/img/user/main/mainslide_next.svg);
  height: 1.8rem;
}
#mainSlide .hospital-subject {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 9.875rem;
  margin-top: -3.8rem;
  padding: 3.8rem 6rem 0;
  border-radius: 0rem 0rem 2.5rem 2.5rem;
  overflow: hidden;
}
#mainSlide .hospital-subject .bg {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, #359F86, #2A7F6B, #314250, #359F86);
  background-size: 400% 100%;
  animation: moveGradient 6s ease-in-out infinite;
}
#mainSlide .hospital-subject .left {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2.1rem;
  z-index: 1;
}
#mainSlide .hospital-subject .left .label {
  display: inline-flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  padding: 0rem 1.875rem 0.1rem;
  border-radius: 6.25rem;
  background: #FFF;
  color: var(--pri2-1);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: -0.065rem;
}
#mainSlide .hospital-subject .right {
  display: flex;
  align-items: center;
  z-index: 1;
}
#mainSlide .hospital-subject p {
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.065rem;
}
@media screen and (max-width: 1240px) {
  #mainSlide {
    padding: 0rem 2rem 10rem;
  }
  #mainSlide .hospital-subject {
    padding: 3.8rem 2rem 0;
  }
}
@media screen and (max-width: 1023px) {
  #mainSlide {
    padding: 0 2rem 8rem;
  }
  #mainSlide .swiper .swiper-slide .text-wrap {
    top: 30%;
  }
  #mainSlide .swiper .swiper-slide .text-wrap .tit {
    font-size: 2.2rem;
  }
  #mainSlide .swiper .swiper-slide .text-wrap .desc {
    font-size: 1.3rem;
    padding-left: 0.3rem;
  }
  #mainSlide .hospital-subject .right {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  #mainSlide {
    padding: 0 0 6rem;
  }
  #mainSlide .swiper .swiper-slide {
    width: 80%;
    border-radius: 1.6rem;
  }
  #mainSlide .swiper .swiper-slide .text-wrap {
    width: 88%;
    top: 22%;
    gap: 1.2rem;
    text-align: center;
  }
  #mainSlide .swiper .swiper-slide .text-wrap .tit {
    font-size: 1.8rem;
    line-height: 1.45;
  }
  #mainSlide .swiper .swiper-slide .text-wrap .desc {
    display: none;
    font-size: 1.1rem;
    font-weight: 400;
  }
  #mainSlide .swiper .swiper-slide .text-wrap .subject {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
  }
  #mainSlide .swiper .swiper-slide .text-wrap .subject .label {
    padding: 0.1rem 1.5rem;
    font-size: 1.1rem;
  }
  #mainSlide .swiper .swiper-slide .text-wrap .subject .txt {
    font-size: 1.1rem;
  }
  #mainSlide .swiper .swiper-slide img.pc {
    display: none;
  }
  #mainSlide .swiper .swiper-slide img.mo {
    display: block;
    min-height: 0;
  }
  #mainSlide .swiper .swiper-slide.slide01 .text-wrap .tit {
    letter-spacing: -0.06rem;
    padding-top: 0 !important;
  }
  #mainSlide .swiper .swiper-slide.slide01 .text-wrap .tit .mo {
    display: none;
  }
  #mainSlide .swiper .swiper-slide.slide01 .text-wrap .tit br {
    display: none;
  }
  #mainSlide .swiper .swiper-slide.slide01 .text-wrap .tit .point {
    display: block;
  }
  #mainSlide .swiper .control {
    display: none;
  }
  #mainSlide .hospital-subject {
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    height: auto;
    margin: 2rem 0 0;
    padding: 1.3rem 1.25rem;
    border-radius: 0;
  }
  #mainSlide .hospital-subject .left {
    gap: 1.2rem;
  }
  #mainSlide .hospital-subject .left .label {
    padding: 0rem 1.2rem 0.1rem;
    font-size: 1.3rem;
    flex-shrink: 0;
  }
  #mainSlide .hospital-subject .left .txt {
    line-height: 1.25;
    font-size: 1.3rem;
  }
  #mainSlide .hospital-subject .right {
    display: none;
  }
  #mainSlide .hospital-subject .right .txt {
    font-size: 1.2rem;
  }
}
@keyframes moveGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* 수정88마취통증의 특별함 */
#overview > .contents {
  display: flex;
  flex-direction: column;
  width: 87.5rem;
  margin: 0 auto;
  padding: 6rem 8.75rem 9rem;
  transition: all 0.3s;
}
#overview .overview-point-list {
  display: flex;
  align-items: center;
  align-content: center;
  gap: 0.625rem;
  align-self: stretch;
  flex-wrap: wrap;
}
#overview .overview-point-list li {
  position: relative;
  width: calc(33.3333333333% - 0.6rem);
  height: 8.875rem;
  display: flex;
  padding-left: 1.6rem;
  justify-content: space-between;
  align-items: center;
  border-radius: 1.25rem;
  background-color: #FDFDFD;
  transition: all 0.3s;
  transition: background-position 0.5s ease;
  background-position: right center;
  flex-shrink: 0;
  overflow: hidden;
  cursor: default;
}
#overview .overview-point-list li::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, #314250, #359F86);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}
#overview .overview-point-list li:nth-child(even) {
  background-color: #F5FFFD;
}
#overview .overview-point-list li:nth-child(3) .text-wrap .tit span, #overview .overview-point-list li:nth-child(5) .text-wrap .tit span {
  color: #EF5F40;
}
#overview .overview-point-list li:nth-child(3):hover .text-wrap .tit span, #overview .overview-point-list li:nth-child(3).active .text-wrap .tit span, #overview .overview-point-list li:nth-child(5):hover .text-wrap .tit span, #overview .overview-point-list li:nth-child(5).active .text-wrap .tit span {
  color: #FFD562;
}
#overview .overview-point-list li:hover::before, #overview .overview-point-list li.active::before {
  opacity: 1;
}
#overview .overview-point-list li:hover .tit, #overview .overview-point-list li.active .tit {
  color: var(--white);
}
#overview .overview-point-list li:hover .tit span, #overview .overview-point-list li.active .tit span {
  color: #D2FFF4;
}
#overview .overview-point-list li:hover .en, #overview .overview-point-list li.active .en {
  color: #D2FFF4;
}
#overview .overview-point-list li .text-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex-shrink: 0;
  z-index: 1;
}
#overview .overview-point-list .text-wrap .en {
  color: rgba(32, 32, 32, 0.6);
  font-family: var(--en);
  font-size: 1rem;
  font-weight: 300;
  line-height: 148%;
  transition: all 0.3s;
}
#overview .overview-point-list .text-wrap .tit {
  color: var(--pri1-2);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 148%;
  letter-spacing: -0.07875rem;
  transition: all 0.3s;
}
#overview .overview-point-list .text-wrap .tit span {
  color: var(--pri2);
  transition: all 0.3s;
}
#overview .overview-point-list img {
  position: absolute;
  right: -0.5rem;
}
#overview .overview-detail {
  background-image: url(/common/img/user/main/bg_overview_detail.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
#overview .overview-detail .header {
  padding: 10rem 0 6.875rem;
  gap: 0.5rem;
}
#overview .overview-detail .header .title {
  color: var(--white);
  font-size: 3.125rem;
  font-weight: 600;
  letter-spacing: -0.10938rem;
}
#overview .overview-detail .header .title span {
  color: #D2FFF4;
}
#overview .overview-detail .header .desc {
  color: var(--white);
  font-size: 1.375rem;
  font-weight: 300;
  letter-spacing: -0.04813rem;
}
#overview .overview-detail .contents {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 1.25rem;
  width: 87.5rem;
  margin: 0 auto;
}
#overview .overview-detail .footer {
  padding: 5.2rem 0 7.5rem;
  text-align: center;
  color: var(--white);
}
#overview .overview-detail .footer p {
  font-size: 1.375rem;
  font-weight: 400;
  letter-spacing: -0.04813rem;
}
#overview .overview-detail .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 50%;
  padding: 5.62rem 0;
  color: var(--white);
  border-radius: 1.5625rem;
  background: rgba(15, 61, 7, 0.4);
  background-blend-mode: multiply;
}
#overview .overview-detail .box .tit {
  padding-bottom: 2.3rem;
  font-size: 3.125rem;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -0.10938rem;
}
#overview .overview-detail .box .tit span {
  color: #D2FFF4;
}
#overview .overview-detail .box .desc {
  padding-top: 2rem;
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 146%;
  letter-spacing: -0.04813rem;
}
#overview .overview-detail .box .desc span {
  color: #D2FFF4;
}
@media screen and (max-width: 1620px) {
  #overview > .contents {
    width: 100%;
    padding: 6rem 3.75rem 9rem;
  }
  #overview .overview-detail .contents {
    width: 100%;
    justify-content: center;
  }
  #overview .overview-detail .box {
    width: 45%;
  }
}
@media screen and (max-width: 1023px) {
  #overview > .contents {
    padding: 6rem 2.5rem 9rem;
  }
  #overview .overview-point-list li {
    width: calc(50% - 0.6rem);
  }
  #overview .overview-point-list li .text-wrap {
    width: 60%;
  }
  #overview .overview-point-list li .text-wrap .tit {
    line-height: 1.25;
  }
  #overview .overview-detail .box .tit {
    font-size: 2.5rem;
  }
  #overview .overview-detail .box .desc {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 767px) {
  #overview > .contents {
    padding: 4rem 1rem 6rem;
  }
  #overview .overview-point-list {
    justify-content: space-between;
    gap: 0.5rem 0;
  }
  #overview .overview-point-list li {
    width: calc(50% - 0.3rem);
    justify-content: space-between;
    height: 12rem;
    padding: 2rem 1rem 0 1.4rem;
    align-items: flex-start;
    background-color: #F5FFFD;
    border-radius: 0.875rem;
    border: 1px solid #dceeea;
  }
  #overview .overview-point-list li .text-wrap {
    width: 100%;
    gap: 1rem;
  }
  #overview .overview-point-list li .text-wrap .tit {
    font-size: 1.45rem;
  }
  #overview .overview-point-list li .text-wrap .tit span {
    display: block;
  }
  #overview .overview-point-list li img {
    width: 45%;
    bottom: 0;
    right: -0.2rem;
  }
  #overview .overview-detail .header {
    padding: 6rem 1.25rem 4rem;
  }
  #overview .overview-detail .header .title {
    line-height: 1.45;
    font-size: 1.8rem;
  }
  #overview .overview-detail .header .title span {
    display: block;
  }
  #overview .overview-detail .header .desc {
    font-size: 1.15rem;
  }
  #overview .overview-detail .contents {
    gap: 0.5rem;
    padding: 0 1.25rem;
  }
  #overview .overview-detail .box {
    width: 50%;
    padding: 2.62rem 0.5rem 0;
    border-radius: 1rem;
    border: 1px solid rgba(15, 58, 7, 0.6196078431);
  }
  #overview .overview-detail .box .tit {
    font-size: 1.6rem;
    padding-bottom: 1rem;
  }
  #overview .overview-detail .box .desc {
    display: none;
  }
  #overview .overview-detail .box img {
    max-width: 130%;
  }
  #overview .overview-detail .footer {
    padding: 4rem 2rem 6rem;
  }
  #overview .overview-detail .footer p {
    font-weight: 800;
    font-size: 1.6rem;
    line-height: 1.45;
  }
  #overview .overview-detail .footer p span {
    display: block;
  }
}

/* 의료진 소개 */
#doctor {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  margin: 14rem 0 0;
  padding: 0 7.5rem 11rem;
}
#doctor .left {
  flex-basis: calc(100% - 48rem);
  text-align: left;
}
#doctor .left .header {
  align-items: flex-start;
  padding-bottom: 3.62rem;
}
#doctor .left .header .title {
  text-align: left;
}
#doctor .left .contents {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  height: 52.5rem;
  padding: 2rem 2rem 0 0;
  overflow-y: scroll;
  box-sizing: border-box;
}
#doctor .right {
  position: relative;
  flex-basis: 43.75rem;
  padding: 3.6rem 3.4rem 0;
  border-radius: 2.5rem;
  background: #EEFAF8;
  overflow: hidden;
}
#doctor .right > img {
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translate(-50%, 0);
}
#doctor .right .doctor-label {
  display: inline-flex;
  padding: 0.62rem 2.2rem 0.62rem 4rem;
  background: var(--pri2, #359F86) url(/common/img/user/icon/icon_cert.svg) no-repeat 1.56rem center;
  border-radius: 6.25rem;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.1rem;
}
#doctor .right .doctor-history {
  position: relative;
  z-index: 1;
  padding-top: 2.19rem;
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
}
#doctor .right .doctor-history li {
  padding-left: 2rem;
  color: var(--pri1-2);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 168%;
  letter-spacing: -0.0525rem;
  background: url(/common/img/user/icon/icon_check.svg) no-repeat 0 center;
}
#doctor .history {
  box-sizing: border-box;
}
#doctor .history:nth-child(1) {
  padding-right: 6rem;
}
#doctor .history.full {
  flex: 0 0 100%;
}
#doctor .history .point {
  color: var(--pri2-1);
}
#doctor .history .tit {
  display: inline-flex;
  padding: 0.2rem 1.375rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  color: #FFF;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: -0.0375rem;
  border-radius: 2.1875rem;
  background: var(--pri1, #314250);
}
#doctor .history ul {
  display: flex;
  flex-direction: column;
  gap: 0.63rem;
  padding-top: 1.81rem;
  padding-left: 0.5rem;
}
#doctor .history ul li {
  display: flex;
  flex-direction: row;
  line-height: 1.45;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: -0.025rem;
}
#doctor .history ul li::before {
  content: "·";
  display: flex;
  padding-right: 0.4rem;
  font-size: 1rem;
  font-weight: 600;
}
@media screen and (max-width: 1760px) {
  #doctor {
    gap: 3rem;
  }
  #doctor .right > img {
    width: 90%;
    bottom: 0;
  }
  #doctor .history {
    width: 100%;
  }
  #doctor .history:nth-child(1) {
    padding-right: 0;
  }
  #doctor .history ul {
    flex-direction: row;
    flex-wrap: wrap;
    padding-bottom: 3rem;
  }
  #doctor .history ul li {
    width: 48%;
  }
}
@media screen and (max-width: 1620px) {
  #doctor {
    gap: 1rem;
    padding: 0 3.75rem 11rem;
  }
}
@media screen and (max-width: 1400px) {
  #doctor .history ul li {
    width: 100%;
  }
  #doctor .left {
    flex-basis: calc(100% - 36rem);
  }
  #doctor .left .contents {
    height: 42.5rem;
  }
  #doctor .right {
    flex-basis: 36rem;
  }
}
@media screen and (max-width: 1023px) {
  #doctor {
    margin-top: 6rem;
    padding: 0 2.5rem 6rem;
    flex-direction: column-reverse;
  }
  #doctor .left .header {
    padding: 3rem 0;
  }
  #doctor .right > img {
    width: auto;
    height: 90%;
    right: 0;
    left: initial;
    transform: translate(0, 0);
  }
}
@media screen and (max-width: 767px) {
  #doctor {
    padding: 0 1.25rem 6rem;
  }
  #doctor .left .header {
    padding: 3rem 0 2rem;
  }
  #doctor .left .contents {
    height: 28rem;
    padding: 2rem;
    background-color: #f3f3f3;
    border-radius: 1.25rem;
  }
  #doctor .right {
    flex-basis: 30rem;
    padding: 3rem 1.25rem 0;
    border-radius: 1.25rem;
  }
  #doctor .right .doctor-history li {
    font-size: 1.2rem;
  }
  #doctor .right > img {
    height: 60%;
  }
}

/* 진료과목 */
#subject .contents {
  padding: 8.1rem 7.5rem 0;
}
#subject .subject-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 1.25rem;
}
#subject .subject-list > li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: calc(50% - 0.625rem);
  padding: 8.125rem 2rem 23.75rem;
  background-color: #F9F9F9;
  background-position: center bottom;
  background-repeat: no-repeat;
  border-radius: 2.5rem;
  cursor: pointer;
}
#subject .subject-list > li:nth-child(2n) {
  transform: translateY(6rem);
}
#subject .subject-list > li.spine {
  background-image: url(/common/img/user/main/bg_subject_spine.jpg);
}
#subject .subject-list > li.joint {
  background-image: url(/common/img/user/main/bg_subject_joint.jpg);
}
#subject .subject-list > li.sports {
  background-image: url(/common/img/user/main/bg_subject_sports.jpg);
}
#subject .subject-list > li.chronic {
  background-image: url(/common/img/user/main/bg_subject_chronic.jpg);
}
#subject .subject-list > li .text-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
#subject .subject-list > li .text-wrap .tit {
  color: var(--pri1-2);
  font-size: 3.125rem;
  font-weight: 600;
  line-height: 120%; /* 3.75rem */
  letter-spacing: -0.10938rem;
}
#subject .subject-list > li .text-wrap .sub-tit {
  color: var(--pri2, #359F86);
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 120%; /* 2.1rem */
  letter-spacing: -0.06125rem;
}
#subject .subject-list > li .text-wrap .desc {
  color: #555;
  font-size: 1.375rem;
  font-weight: 300;
  line-height: 168%; /* 2.31rem */
  letter-spacing: -0.04813rem;
}
#subject .subject-list > li .text-wrap .btn {
  display: flex;
  padding: 0.9375rem 3.125rem;
  align-items: center;
  gap: 0.625rem;
  border-radius: 6.25rem;
  background: var(--pri1-2);
  cursor: pointer;
  transition: all 0.3s;
}
#subject .subject-list > li .text-wrap .btn .icon {
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0.2rem;
  background-image: url(/common/img/user/icon/icon_plus.svg);
  border-radius: 6.25rem;
  transition: all 0.3s;
}
#subject .subject-list > li .text-wrap .btn .txt {
  color: #FFF;
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: -0.04813rem;
}
#subject .subject-list > li:hover {
  border-color: var(--pri2);
}
#subject .subject-list > li:hover .text-wrap .btn {
  background-color: var(--pri2);
}
@media screen and (max-width: 1620px) {
  #subject .contents {
    padding: 8.1rem 3.75rem 0;
  }
}
@media screen and (max-width: 1023px) {
  #subject .contents {
    padding: 6rem 2.5rem 0;
  }
  #subject .subject-list > li {
    padding: 6rem 1.25rem 16rem;
    border-radius: 1.25rem;
  }
  #subject .subject-list > li .text-wrap .tit {
    font-size: 2.6rem;
  }
  #subject .subject-list > li .text-wrap .sub-tit {
    font-size: 1.4rem;
  }
  #subject .subject-list > li .text-wrap .desc {
    font-size: 1.1rem;
  }
  #subject .subject-list > li .text-wrap .btn {
    padding: 0.6rem 3rem;
  }
  #subject .subject-list > li .text-wrap .btn .txt {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 767px) {
  #subject .header {
    padding: 0 1.25rem;
  }
  #subject .contents {
    padding: 4rem 1.25rem 0;
  }
  #subject .subject-list {
    flex-direction: column;
  }
  #subject .subject-list > li {
    width: 100%;
    padding: 3rem 1.25rem 4rem;
    align-items: flex-start;
    text-align: left;
    background-size: 90%;
    background-position: 150% bottom;
    border: 1px solid #e9e9e9;
  }
  #subject .subject-list > li:nth-child(2n) {
    transform: none;
  }
  #subject .subject-list > li:nth-child(3) {
    background-image: url(/common/img/user/main/bg_subject_sports2.jpg);
  }
  #subject .subject-list > li .text-wrap {
    align-items: flex-start;
  }
  #subject .subject-list > li .text-wrap .tit {
    font-size: 2rem;
  }
  #subject .subject-list > li .text-wrap .btn {
    padding: 0.6rem 2rem;
  }
}

/* 치료방법 */
#treat {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 8%;
  width: 100%;
  height: 67.5rem;
  margin-bottom: 12.5rem;
  overflow: hidden;
  background: linear-gradient(270deg, #359F86 0%, #314250 100%);
}
#treat .left {
  flex: 1;
  padding-left: 7.5rem;
}
#treat .left .header {
  align-items: flex-start;
  padding: 9.31rem 0 5.31rem;
}
#treat .left .header .title {
  text-align: left;
  color: var(--white);
  font-size: 3.125rem;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -0.10938rem;
}
#treat .left .header .title span {
  color: #D2FFF4;
}
#treat .left .header .desc {
  text-align: left;
  color: var(--white);
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 168%; /* 2.31rem */
  letter-spacing: -0.04813rem;
}
#treat .left .contents ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
#treat .left .contents ul li {
  position: relative;
  display: flex;
  align-items: center;
  width: calc(50% - 0.5rem);
  height: 17.5rem;
  padding: 2.5rem;
  border-radius: 0.9375rem;
  background: rgba(15, 58, 7, 0.62);
  background-blend-mode: multiply;
  cursor: pointer;
  border: 1px solid transparent;
}
#treat .left .contents ul li::after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  background-image: url(/common/img/user/main/subject_active.svg);
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
  transition: all 0.3s;
}
#treat .left .contents ul li:hover {
  border-color: var(--white);
  transition: all 0.3s;
}
#treat .left .contents ul li:hover .text-wrap .tit {
  color: #D2FFF4;
}
#treat .left .contents ul li:hover::after {
  opacity: 1;
  top: 1.44rem;
  right: 1.65rem;
}
#treat .left .contents ul li .text-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.78rem;
}
#treat .left .contents ul li .text-wrap .tit {
  color: var(--white);
  font-size: 2.625rem;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -0.09188rem;
  transition: all 0.3s;
}
#treat .left .contents ul li .text-wrap .desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.375rem;
  font-weight: 200;
  line-height: 140%; /* 1.925rem */
  letter-spacing: -0.04813rem;
}
#treat .right {
  position: relative;
  width: 40%;
  display: flex;
}
#treat .treat-slide-list {
  overflow: hidden;
  height: 100%;
  position: relative;
}
#treat .treat-slide-list.bottom {
  position: absolute;
  right: 3.75rem;
  top: 0;
}
#treat .treat-slide-list .marquee-image-box {
  display: flex;
  flex-direction: column;
  gap: 0.44rem;
}
#treat .treat-slide-list .marquee-image-box .marquee {
  width: 100%;
  height: 22vw;
  flex-shrink: 0;
  position: relative;
  border-radius: 1.5625rem;
  overflow: hidden;
}
#treat .treat-slide-list .marquee-image-box .marquee img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
#treat .treat-slide-list.top .marquee-image-box {
  animation: marqueeUp 15s linear infinite;
}
#treat .treat-slide-list.bottom .marquee-image-box {
  animation: marqueeDown 15s linear infinite;
}
@keyframes marqueeUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-110vw); /* 원본 세트 높이만큼 */
  }
}
@keyframes marqueeDown {
  0% {
    transform: translateY(-88vw);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes marqueeLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-110vw); /* 한 세트 길이만큼 왼쪽으로 */
  }
}
@keyframes marqueeRight {
  0% {
    transform: translateX(-88vw);
  }
  100% {
    transform: translateX(0);
  }
}
@media screen and (max-width: 1620px) {
  #treat {
    gap: 4%;
  }
  #treat .left {
    padding-left: 3.75rem;
  }
  #treat .right {
    width: 42%;
  }
}
@media screen and (max-width: 1023px) {
  #treat {
    gap: 2%;
  }
  #treat .left {
    padding-left: 2.5rem;
  }
  #treat .left .header {
    padding: 7rem 0 4rem;
  }
  #treat .left .contents ul li {
    height: 14rem;
    padding: 1.5rem;
  }
  #treat .left .contents ul li .text-wrap .tit {
    font-size: 2rem;
  }
  #treat .left .contents ul li .text-wrap .desc {
    font-size: 1.1rem;
  }
  #treat .treat-slide-list.bottom {
    right: 2rem;
  }
  #treat .treat-slide-list .marquee-image-box .marquee {
    border-radius: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  #treat {
    flex-direction: column;
    height: auto;
    padding-bottom: 6rem;
    margin-bottom: 6rem;
  }
  #treat .left {
    padding: 0 1.25rem 2.5rem;
  }
  #treat .left .header {
    padding: 7rem 0 3rem;
  }
  #treat .left .header .title {
    line-height: 1.45;
    font-size: 1.8rem;
  }
  #treat .left .header .desc {
    font-size: 1.2rem;
  }
  #treat .left .contents ul li {
    padding: 1rem;
    height: 8rem;
    justify-content: center;
    border: 1px solid rgba(15, 58, 7, 0.6196078431);
  }
  #treat .left .contents ul li:hover::after {
    top: 0.5rem;
    right: 0.8rem;
  }
  #treat .left .contents ul li:nth-child(1)::after {
    opacity: 1;
    top: 0.5rem;
    right: 0.8rem;
  }
  #treat .left .contents ul li .text-wrap {
    gap: 1rem;
    text-align: center;
  }
  #treat .left .contents ul li .text-wrap .tit {
    font-size: 1.8rem;
  }
  #treat .left .contents ul li .text-wrap .desc {
    display: none;
  }
  #treat .right {
    width: 100%;
  }
  #treat .right .inr {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  #treat .treat-slide-list {
    height: auto;
  }
  #treat .treat-slide-list .marquee-image-box {
    flex-direction: row;
  }
  #treat .treat-slide-list .marquee-image-box .marquee {
    width: auto;
    height: 34vw;
    border-radius: 0.8rem;
  }
  #treat .treat-slide-list .marquee-image-box .marquee img {
    width: auto;
  }
  #treat .treat-slide-list.top .marquee-image-box {
    animation: marqueeLeft 15s linear infinite;
  }
  #treat .treat-slide-list.bottom {
    position: relative;
    right: 0;
  }
  #treat .treat-slide-list.bottom .marquee-image-box {
    animation: marqueeRight 15s linear infinite;
  }
}

/* 장비소개 */
#equip .header {
  position: relative;
  padding: 0 0 8rem;
}
#equip .header .control {
  width: 14.2rem;
  position: absolute;
  bottom: 5rem;
  z-index: 1;
}
#equip .header .control > div {
  width: 6.25rem;
  height: 2.25rem;
  border-radius: 6.25rem;
  background-color: #D9D9D9;
  background-repeat: no-repeat;
  background-position: center center;
  transition: background-color 0.3s;
}
#equip .header .control > div.equip-next {
  background-image: url(/common/img/user/icon/icon-swiper-prev.svg);
}
#equip .header .control > div.equip-prev {
  background-image: url(/common/img/user/icon/icon-swiper-next.svg);
}
#equip .header .control > div:hover {
  background-color: var(--pri1-2);
}
#equip .header .control .swiper-button-next:after,
#equip .header .control .swiper-button-prev:after {
  display: none;
}
#equip .header .control .swiper-button-next.swiper-button-disabled,
#equip .header .control .swiper-button-prev.swiper-button-disabled {
  opacity: 0.15;
}
#equip .contents {
  flex: 1 1 0;
  min-width: 0;
  padding: 8rem 0 12.5rem;
  box-sizing: border-box;
}
#equip .equipSwiper {
  width: 100%;
  height: 100%;
  padding-left: 2rem;
}
#equip .equipSwiper .swiper-wrapper {
  width: 100%;
  height: 100%;
}
#equip .equipSwiper .swiper-slide {
  position: relative;
  height: 39rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.62rem;
  padding: 2.25rem 0;
  border-radius: 1.25rem;
  background: #FBFBFB;
  overflow: hidden;
}
#equip .equipSwiper .swiper-slide img {
  width: 100%;
  height: auto;
}
#equip .equipSwiper .swiper-slide .text-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 2.75rem 0 3.75rem;
  gap: 0.944rem;
}
#equip .equipSwiper .swiper-slide .text-wrap .label {
  display: inline-flex;
  color: var(--pri2, #359F86);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 188%; /* 2.35rem */
  letter-spacing: -0.03125rem;
}
#equip .equipSwiper .swiper-slide .text-wrap .label[data-type=treat] {
  color: var(--pri2);
}
#equip .equipSwiper .swiper-slide .text-wrap .tit {
  color: var(--pri1-2);
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: -0.04375rem;
}
#equip .equipSwiper .swiper-slide .text-wrap .tit span {
  font-size: 1.375rem;
}
#equip .equipSwiper .swiper-slide .text-wrap .tag {
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.4rem;
  color: #808080;
  font-size: 1rem;
  font-weight: 300;
  line-height: 188%; /* 1.88rem */
  letter-spacing: -0.045rem;
}
#equip .equipSwiper .equip-paging {
  top: initial;
  bottom: 0;
  background: #FBFBFB;
}
#equip .equipSwiper .equip-paging .swiper-pagination-progressbar-fill {
  background: var(--pri1);
}
@media screen and (max-width: 1023px) {
  #equip {
    flex-direction: column;
  }
  #equip .header-wrap {
    width: 100%;
    margin: 0;
    padding: 6rem 3rem;
    text-align: center;
  }
  #equip .header-wrap .swiper-pagination {
    left: 50%;
    bottom: 3rem;
    transform: translate(-50%, 0);
  }
  #equip .contents {
    padding: 0 0 6.5rem;
  }
  #equip .equipSwiper .swiper-slide .text-wrap {
    left: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  #equip .header {
    padding: 0 0 6rem;
  }
  #equip .header .control {
    bottom: 3.5rem;
  }
  #equip .contents {
    padding: 0 0 6rem;
  }
  #equip .equipSwiper {
    padding-left: 1rem;
    padding-bottom: 0;
  }
  #equip .equipSwiper .swiper-slide {
    height: auto;
    padding: 1.2rem 0;
  }
  #equip .equipSwiper .swiper-slide .text-wrap {
    text-align: center;
    top: 2rem;
    left: initial;
    gap: 0.6rem;
    padding: 0 0.5rem 0 1.1rem;
  }
  #equip .equipSwiper .swiper-slide .text-wrap .label {
    font-size: 1rem;
  }
  #equip .equipSwiper .swiper-slide .text-wrap .tit {
    text-align: left;
    line-height: 1.25;
    font-size: 1.2rem;
    word-break: keep-all;
  }
  #equip .equipSwiper .swiper-slide .text-wrap .tit span {
    font-size: 0.9rem;
    word-break: keep-all;
  }
  #equip .equipSwiper .swiper-slide .text-wrap .tag {
    font-size: 0.8rem;
  }
}

/* 내부시설  */
#facility {
  padding-bottom: 12.5rem;
}
#facility .contents {
  display: flex;
  flex-direction: row;
  gap: 1.25rem;
  padding: 5.5rem 1rem 0 0;
  box-sizing: border-box;
  overflow: hidden;
}
#facility .contents .swiper {
  width: 100%;
  height: 56rem;
  margin-left: auto;
  margin-right: auto;
}
#facility .contents .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #444;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
}
#facility .contents .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#facility .contents .swiper.facilitySwiper {
  width: 100%;
}
#facility .contents .swiper.thumbsSwiper {
  width: 16%;
  box-sizing: border-box;
}
#facility .contents .swiper.thumbsSwiper .swiper-wrapper {
  display: flex;
  flex-direction: column;
}
#facility .contents .swiper.thumbsSwiper .swiper-slide {
  height: auto;
  opacity: 0.4;
  background-color: #314250;
}
#facility .contents .swiper.thumbsSwiper .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  #facility {
    padding-bottom: 6rem;
  }
  #facility .contents {
    flex-direction: column;
    padding: 3rem 0 0 0;
    gap: 0.5rem;
  }
  #facility .contents .swiper.facilitySwiper {
    height: auto;
  }
  #facility .contents .swiper.facilitySwiper .swiper-slide {
    height: 22rem;
  }
  #facility .contents .swiper.facilitySwiper .swiper-slide img {
    height: 100%;
  }
  #facility .contents .swiper .swiper-slide {
    height: auto;
    overflow: hidden;
  }
  #facility .contents .swiper .swiper-slide img {
    height: auto;
  }
  #facility .contents .swiper.thumbsSwiper {
    width: 100%;
    height: auto;
  }
  #facility .contents .swiper.thumbsSwiper .swiper-wrapper {
    flex-direction: row;
  }
  #facility .contents .swiper.thumbsSwiper .swiper-wrapper .swiper-slide {
    width: auto;
  }
}

/* 자주묻는 질문 */
#faq {
  max-width: 83.75rem;
  margin: 0 auto;
  padding: 0 0 11.25rem;
}
#faq .contents {
  padding-top: 3.75rem;
}
#faq .faq-item li {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 0 2.25rem 1.5rem;
  border-bottom: 2px solid #EEE;
}
#faq .faq-item li .title {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 4.5rem 0 0;
  cursor: pointer;
  transition: all 0.3s;
}
#faq .faq-item li .title .label {
  display: flex;
  flex-shrink: 0;
  width: 8.52994rem;
  padding: 0.375rem 0;
  justify-content: center;
  border-radius: 6.25rem;
  background: var(--pri2, #359F86);
  color: var(--white);
  text-align: center;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 168%;
  letter-spacing: -0.03938rem;
}
#faq .faq-item li .title .tit {
  margin: 0 1.88rem;
  color: var(--pri1-2);
  font-size: 2.375rem;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -0.08313rem;
  transition: all 0.3s;
}
#faq .faq-item li .title .btn {
  flex-shrink: 0;
  width: 3.62975rem;
  height: 3.75rem;
  margin-left: auto;
  background: url(/common/img/user/icon/icon_faq.svg) no-repeat right center;
  transition: all 0.3s;
}
#faq .faq-item li .answer {
  max-height: 0;
  padding-bottom: 0;
  overflow: hidden;
  color: var(--pri1-2);
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 168%; /* 2.31rem */
  letter-spacing: -0.06rem;
  transition: all 0.6s ease;
}
#faq .faq-item li:hover .title .tit {
  color: var(--pri2);
}
#faq .faq-item li.active .title .btn {
  background-image: url(/common/img/user/icon/icon_faq_active.svg);
}
#faq .faq-item li.active .answer {
  max-height: 31.25rem;
  padding-bottom: 2rem;
}
@media screen and (max-width: 1620px) {
  #faq {
    max-width: 100%;
    padding: 0 3.75rem;
  }
}
@media screen and (max-width: 1023px) {
  #faq {
    padding: 0 2.5rem 8rem;
  }
  #faq .faq-item li {
    padding: 0 0 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  #faq {
    padding: 0 1.25rem 6rem;
  }
  #faq .contents {
    padding-top: 0;
  }
  #faq .faq-item li {
    gap: 1.5rem;
  }
  #faq .faq-item li .title {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 3.5rem 0 0;
  }
  #faq .faq-item li .title .tit {
    margin: 0;
    font-size: 1.6rem;
    line-height: 1.45;
  }
  #faq .faq-item li .title .label {
    padding: 0.1rem 0;
  }
  #faq .faq-item li .btn {
    display: none;
  }
  #faq .faq-item li .answer {
    font-size: 1.2rem;
  }
}

/* 병원정보 */
#hospital {
  border-top: 1px solid #E9E9E9;
}
#hospital .contents {
  display: flex;
  flex-direction: row;
}
#hospital .contents .map {
  width: 60%;
}
#hospital .contents .map img {
  height: 100%;
}
#hospital .footer {
  background-color: var(--pri1-2);
}
#hospital .hospital-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  padding: 5rem 6.25rem;
}
#hospital .hospital-info .box .tit {
  color: var(--pri1-2);
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: -0.04375rem;
  flex-shrink: 0;
}
#hospital .hospital-info .box .tel {
  display: flex;
  align-items: center;
  padding-left: 4.6rem;
  width: 100%;
  height: 100%;
  color: var(--pri2, #359F86);
  font-family: var(--en);
  font-size: 3.125rem;
  font-weight: 600;
  line-height: 188%;
  background: url(/common/img/user/icon/icon_hospital_tel.svg) no-repeat left center;
  transition: color 0.3s;
}
@media screen and (max-width: 1023px) {
  #hospital .hospital-info .box .tel {
    font-family: var(--en);
  }
}
@media screen and (max-width: 767px) {
  #hospital .hospital-info .box .tel {
    font-family: var(--en);
  }
}
#hospital .hospital-info .box .tel:hover {
  color: var(--pri2-1);
}
#hospital .hospital-info .box .list-bullet {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-top: 2rem;
}
#hospital .hospital-info .box .list-bullet li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.56rem;
}
#hospital .hospital-info .box .list-bullet li::before {
  content: "·";
  display: flex;
  color: var(--pri2);
}
#hospital .hospital-info .box .list-bullet li .tit {
  width: 8.75rem;
  color: var(--pri1-2);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 188%;
  letter-spacing: -0.03125rem;
}
#hospital .hospital-info .box .list-bullet li .txt {
  display: flex;
  gap: 1rem;
  color: #808080;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 188%;
  letter-spacing: -0.03125rem;
}
#hospital .hospital-info .box .list-bullet li .txt .notice {
  display: inline-flex;
  padding: 0rem 1.3rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  border-radius: 6.25rem;
  background: #F3F3F3;
  color: var(--pri1-2);
  font-size: 1rem;
  font-weight: 400;
}
@media screen and (max-width: 1023px) {
  #hospital .contents .map {
    width: 50%;
  }
  #hospital .hospital-info {
    padding: 4rem 3rem;
  }
  #hospital .hospital-info .box .tel {
    font-size: 2.5rem;
  }
  #hospital .hospital-info .box .list-bullet li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  #hospital .hospital-info .box .list-bullet li::before {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  #hospital .contents {
    flex-direction: column;
  }
  #hospital .contents .map {
    width: 100%;
  }
  #hospital .hospital-info {
    padding: 4rem 1.25rem;
  }
  #hospital .hospital-info .box .list-bullet li {
    flex-direction: row;
    flex-wrap: nowrap;
  }
  #hospital .hospital-info .box .list-bullet li .txt {
    flex-wrap: wrap;
    flex-direction: row;
    gap: 0.2rem 1rem;
  }
}

html.no-scroll,
body.no-scroll {
  overflow: hidden;
  touch-action: none;
}

.shadow {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.52);
  width: 100%;
  height: 100%;
  display: none;
}
.shadow.active {
  display: block;
}

.popup {
  display: none;
  width: 80%;
  height: 96%;
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 100%);
  z-index: 1000;
  background-color: var(--white);
  box-sizing: border-box;
  overflow-y: scroll;
  transition: all 0.5s ease-in-out;
}
.popup.show {
  display: block;
  animation: slideUp 0.4s ease-out forwards;
}
.popup.hide {
  animation: slideDown 0.4s ease-in forwards;
}
.popup .popup-header {
  display: flex;
  justify-content: center;
  position: relative;
  padding-top: 5.63rem;
  color: var(--pri1-2);
  text-align: center;
  font-size: 3.125rem;
  font-weight: 500;
  line-height: 120%; /* 3.75rem */
  letter-spacing: -0.10938rem;
}
.popup .popup-header .close {
  position: absolute;
  right: 3.75rem;
  top: 3rem;
  width: 5rem;
  height: 5rem;
  background: var(--pri1-2) url(/common/img/user/icon/icon_popup_close.svg) no-repeat center center;
  border-radius: 6.25rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.popup .popup-header .close:hover {
  background-color: var(--pri2);
}
.popup .popup-contents {
  padding: 4rem 5rem 6rem;
  border-top: 0;
  box-sizing: border-box;
}
.popup .popup-contents .tit {
  text-align: center;
  color: var(--pri1-2);
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 168%; /* 3.78rem */
  letter-spacing: -0.05625rem;
}
@keyframes slideUp {
  0% {
    transform: translate(-50%, 20%);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, 0%);
    opacity: 1;
  }
}
@keyframes slideDown {
  0% {
    transform: translate(-50%, 0%);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, 20%);
    opacity: 0;
  }
}
@media screen and (max-width: 1023px) {
  .popup {
    width: 96%;
  }
  .popup .popup-header {
    font-size: 2.8rem;
  }
  .popup .popup-contents {
    padding: 4rem 2.5rem 6rem;
  }
}
@media screen and (max-width: 767px) {
  .popup .popup-header {
    padding: 2.5rem 1.25rem 0;
    justify-content: flex-start;
    font-size: 2.4rem;
  }
  .popup .popup-header .close {
    width: 4rem;
    height: 4rem;
    top: 2rem;
    right: 1.25rem;
  }
  .popup .popup-contents {
    padding: 3rem 1.25rem 6rem;
  }
  .popup .popup-contents .tit {
    padding-bottom: 1.5rem;
    font-size: 1.8rem;
  }
}

/* tab */
.tab-wrap {
  text-align: center;
  padding-bottom: 5.63rem;
}
@media screen and (max-width: 767px) {
  .tab-wrap {
    padding-bottom: 3.5rem;
  }
}

.tab {
  display: inline-flex;
  justify-content: center;
  flex-wrap: wrap;
  overflow-x: auto;
  white-space: nowrap;
  padding: 0.5rem;
  border-radius: 6.25rem;
  background: rgba(225, 240, 237, 0.5);
}
.tab li a {
  display: flex;
  flex-shrink: 0;
  padding: 0.625rem 1.8rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  border-radius: 6.25rem;
  color: var(--pri1-2);
  font-size: 1.3rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.06rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 1023px) {
  .tab li a {
    padding: 0.2rem 0.8rem;
  }
}
@media screen and (max-width: 767px) {
  .tab li a {
    font-size: 1.2rem;
  }
}
.tab li.active a {
  background-color: var(--pri2-1);
  box-shadow: 10px 10px 9.1px 0px rgba(35, 121, 81, 0.24);
  color: var(--white);
}
@media screen and (max-width: 1023px) {
  .tab .tab {
    flex-wrap: wrap;
    gap: 1rem;
    border-radius: 1rem;
  }
  .tab .tab li {
    width: 46%;
    box-sizing: border-box;
  }
}

.symptom .tit {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--pri1-2);
  text-align: center;
  font-size: 2.625rem;
  font-weight: 500;
  line-height: 148%;
  letter-spacing: -0.09188rem;
  padding-bottom: 3.75rem;
}
.symptom .list {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  border-top: 1px solid var(--pri1-2);
  border-bottom: 1px solid var(--pri1-2);
}
.symptom .list li {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.5rem;
  padding: 2rem 1.75rem;
  justify-content: center;
  align-items: center;
  flex: 0 0 33.3333333333%;
  box-sizing: border-box;
  color: var(var(--pri1-2));
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 160%; /* 2.4rem */
  letter-spacing: -0.0375rem;
  border-bottom: 1px solid rgba(59, 79, 96, 0.22);
  background-color: rgba(225, 240, 237, 0.5);
}
.symptom .list li::before {
  content: "";
  display: inline-flex;
  width: 1.596rem;
  height: 1.596rem;
  background-image: url(/common/img/user/icon/icon_list_check.svg);
  background-position: 0 center;
  background-repeat: no-repeat;
}
.symptom .list li:nth-child(even) {
  background-color: var(--white);
}
.symptom .list li:nth-last-child(2):nth-child(3n+1), .symptom .list li:nth-last-child(1):nth-child(3n+2) {
  flex: 0 0 50%;
}
@media screen and (max-width: 767px) {
  .symptom .list li {
    flex: 0 0 50%;
    flex-direction: column;
    text-align: center;
    min-height: 12.5rem;
    font-size: 1.2rem;
    gap: 1rem;
    padding: 1rem 0.5rem;
  }
  .symptom .list li::before {
    width: 1.2rem;
    height: 1.2rem;
    background-size: contain;
  }
}

.disease {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  padding-top: 7.5rem;
}
.disease.padding-t0 {
  padding-top: 0;
}
.disease .image {
  width: 40%;
}
.disease .image > img {
  width: 100%;
  border-radius: 1.5625rem;
}
.disease .contents {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.disease .contents .tit {
  text-align: left;
}
.disease .contents .desc {
  padding-bottom: 3.75rem;
  font-size: 1.375rem;
  font-weight: 200;
  line-height: 168%; /* 2.31rem */
  letter-spacing: -0.04813rem;
}
.disease .list-bullet {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 1.87rem;
}
.disease .list-bullet li {
  display: flex;
  gap: 0.4rem 1.4rem;
  color: var(--pri2-1, #2A7F6B);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 168%; /* 1.89rem */
  letter-spacing: -0.03938rem;
}
.disease .list-bullet li::before {
  content: "·";
  display: inline-flex;
  font-weight: 800;
}
.disease .list-bullet li .label {
  min-width: 14rem;
}
.disease .list-bullet li .txt {
  color: var(--pri1-2);
  font-size: 1.3rem;
  font-weight: 200;
  line-height: 168%; /* 1.89rem */
  letter-spacing: -0.03938rem;
}
@media screen and (max-width: 767px) {
  .disease {
    flex-direction: column;
    padding-top: 3rem;
  }
  .disease .image {
    width: 100%;
  }
  .disease .contents {
    width: 100%;
  }
  .disease .contents .desc + .tit {
    padding-top: 4rem;
  }
  .disease .contents .desc {
    padding-bottom: 0;
  }
  .disease .list-bullet li {
    flex-wrap: wrap;
  }
  .disease .list-bullet li .txt {
    display: block;
    width: 100%;
    padding-left: 1.4rem;
  }
}

.list-advan ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  border-radius: 1.5625rem;
  background: rgba(225, 240, 237, 0.5);
}
.list-advan ul li {
  display: flex;
  padding: 2em 0rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex: 1 0 0;
  border-right: 1px solid #BDD5D2;
}
.list-advan ul li:last-child {
  border-right: 0;
}
.list-advan ul li .icon {
  display: flex;
  justify-content: center;
}
.list-advan ul li .icon img {
  width: 75%;
}
.list-advan ul li .txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--pri1-2);
  text-align: center;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 142%;
  letter-spacing: -0.0375rem;
}
.list-advan ul li .txt b {
  font-weight: 600;
  color: var(--pri2);
}
@media screen and (max-width: 767px) {
  .list-advan ul li {
    width: 49%;
    min-height: 10.5rem;
    flex: initial;
    border-bottom: 1px solid #BDD5D2;
  }
  .list-advan ul li:nth-child(2) {
    border-right: 0;
  }
  .list-advan ul li:nth-child(3), .list-advan ul li:nth-child(4), .list-advan ul li:nth-child(5) {
    border-bottom: 0;
  }
  .list-advan ul li .icon img {
    width: 50%;
  }
  .list-advan ul li .txt {
    font-size: 1.15rem;
  }
}

.list-number {
  padding: 6.25rem 0;
}
.list-number ul {
  counter-reset: item;
  padding-top: 2.63rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  align-content: flex-start;
  gap: 1.625rem;
  flex-wrap: wrap;
}
.list-number ul li {
  display: flex;
  width: calc(50% - 1rem);
  padding: 1.5625rem;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  list-style: none;
  counter-increment: item;
  border-radius: 6.25rem;
  background: rgba(225, 240, 237, 0.5);
  color: var(--pri1-2);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 142%; /* 2.13rem */
  letter-spacing: -0.0375rem;
}
.list-number ul li::before {
  content: counter(item);
  font-weight: 500;
  display: flex;
  width: 2.25rem;
  height: 2.25rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 6.25rem;
  background: var(--pri2-1);
  color: var(--white);
}
@media screen and (max-width: 767px) {
  .list-number {
    padding: 4.25rem 0;
  }
  .list-number ul {
    gap: 0.5rem;
    flex-direction: column;
  }
  .list-number ul li {
    width: 100%;
    padding: 1.25rem;
    justify-content: flex-start;
  }
}

.list-round ul {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 1.625rem;
  flex-wrap: wrap;
  padding-top: 2.63rem;
  height: 9rem;
}
.list-round ul li {
  display: flex;
  height: 100%;
  padding: 2.1875rem 1rem;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  flex: 1 0 0;
  color: var(--pri1-2);
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.45;
  font-weight: 400;
  line-height: 142%; /* 2.13rem */
  letter-spacing: -0.0375rem;
  border-radius: 6.25rem;
  background: rgba(225, 240, 237, 0.5);
}
@media screen and (max-width: 767px) {
  .list-round ul {
    gap: 0.5rem;
  }
  .list-round ul li {
    width: 47%;
    flex: initial;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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