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

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

body {
  line-height: 1;
  scroll-behavior: smooth;
  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: #2f64af;
  --pri1-1: #7884A3;
  --pri1-2: #B9D6FF;
  --pri1-3: #F9FCFF;
  --pri1-4: #FBFBFB;
  --pri1-5: #003E8B;
  --pri1-6: #001C3F;
  --pri1-7: ;
  --pri1-8: ;
  --pri1-9: ;
  --pri1-10: ;
  /*pri 2*/
  --pri2: #f7932f;
  --pri2-1: ;
  --pri2-2: ;
  --pri2-3: ;
  --pri2-4: ;
  --pri2-5: ;
  --pri2-6: ;
  --pri2-7: ;
  --pri2-8: ;
  --pri2-9: ;
  --pri2-10: ;
  /*pri 3*/
  --pri3: #202020;
  --pri3-1: #555555;
  --pri3-2: #888888;
  --pri3-3: ;
  --pri3-4: ;
  --pri3-5: ;
  --pri3-6: ;
  --pri3-7: ;
  --pri3-8: ;
  --pri3-9: ;
  --pri3-10: ;
  /*pri 4*/
  --pri4: ;
  --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;
}

@font-face {
  font-family: "Paperlogy";
  font-weight: 100;
  font-style: normal;
  font-display: swap;
  src: url("/common/fonts/Paperlogy-1Thin.woff2") format("woff2"), url("/common/fonts/Paperlogy-1Thin.woff") format("woff"), url("/common/fonts/Paperlogy-1Thin.otf") format("opentype"), url("/common/fonts/Paperlogy-1Thin.ttf") format("truetype");
}
@font-face {
  font-family: "Paperlogy";
  font-weight: 200;
  font-style: normal;
  font-display: swap;
  src: url("/common/fonts/Paperlogy-2ExtraLight.woff2") format("woff2"), url("/common/fonts/Paperlogy-2ExtraLight.woff") format("woff"), url("/common/fonts/Paperlogy-2ExtraLight.otf") format("opentype"), url("/common/fonts/Paperlogy-2ExtraLight.ttf") format("truetype");
}
@font-face {
  font-family: "Paperlogy";
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  src: url("/common/fonts/Paperlogy-3Light.woff2") format("woff2"), url("/common/fonts/Paperlogy-3Light.woff") format("woff"), url("/common/fonts/Paperlogy-3Light.otf") format("opentype"), url("/common/fonts/Paperlogy-3Light.ttf") format("truetype");
}
@font-face {
  font-family: "Paperlogy";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("/common/fonts/Paperlogy-4Regular.woff2") format("woff2"), url("/common/fonts/Paperlogy-4Regular.woff") format("woff"), url("/common/fonts/Paperlogy-4Regular.otf") format("opentype"), url("/common/fonts/Paperlogy-4Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Paperlogy";
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url("/common/fonts/Paperlogy-5Medium.woff2") format("woff2"), url("/common/fonts/Paperlogy-5Medium.woff") format("woff"), url("/common/fonts/Paperlogy-5Medium.otf") format("opentype"), url("/common/fonts/Paperlogy-5Medium.ttf") format("truetype");
}
@font-face {
  font-family: "Paperlogy";
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url("/common/fonts/Paperlogy-6SemiBold.woff2") format("woff2"), url("/common/fonts/Paperlogy-6SemiBold.woff") format("woff"), url("/common/fonts/Paperlogy-6SemiBold.otf") format("opentype"), url("/common/fonts/Paperlogy-6SemiBold.ttf") format("truetype");
}
@font-face {
  font-family: "Paperlogy";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("/common/fonts/Paperlogy-7Bold.woff2") format("woff2"), url("/common/fonts/Paperlogy-7Bold.woff") format("woff"), url("/common/fonts/Paperlogy-7Bold.otf") format("opentype"), url("/common/fonts/Paperlogy-7Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Paperlogy";
  font-weight: 800;
  font-style: normal;
  font-display: swap;
  src: url("/common/fonts/Paperlogy-8ExtraBold.woff2") format("woff2"), url("/common/fonts/Paperlogy-8ExtraBold.woff") format("woff"), url("/common/fonts/Paperlogy-8ExtraBold.otf") format("opentype"), url("/common/fonts/Paperlogy-8ExtraBold.ttf") format("truetype");
}
@font-face {
  font-family: "Paperlogy";
  font-weight: 900;
  font-style: normal;
  font-display: swap;
  src: url("/common/fonts/Paperlogy-9Black.woff2") format("woff2"), url("/common/fonts/Paperlogy-9Black.woff") format("woff"), url("/common/fonts/Paperlogy-9Black.otf") format("opentype"), url("/common/fonts/Paperlogy-9Black.ttf") format("truetype");
}
:root {
  --ko: "Paperlogy", "Pretendard", sans-serif;
  --: ;
}

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

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

header {
  position: fixed;
  z-index: 99;
  width: 100%;
  padding: 0 3.75rem;
  top: 3rem;
  box-sizing: border-box;
  transition: all 0.3s ease;
}
header .inr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.87rem 1.25rem 0.87rem 1.87rem;
  background-color: var(--white);
  border-radius: 6.25rem;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}
header.active {
  top: 1rem !important;
}
header.active .inr {
  border-color: #f1f1f1;
}
header h1 a {
  display: block;
  width: auto;
  height: 1.875rem;
  transition: all 0.2s ease-in-out;
}
header h1 a img {
  height: 100%;
  transition: all 0.2s ease-in-out;
}
header .gnb {
  display: flex;
  justify-content: space-between;
  width: 60%;
  border-radius: 1.56rem;
  padding: 0 0.5rem;
  background-color: white;
  border: 1px solid transparent;
  transition: all 0.3s;
  box-sizing: border-box;
}
header .gnb li {
  position: relative;
}
header .gnb li a {
  position: relative;
  display: block;
  padding: 0;
  color: var(--pri3);
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: -0.045rem;
  cursor: pointer;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
header .gnb li a::before {
  background: var(--pri1);
  height: 1px;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  width: 100%;
  content: "";
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition: transform 0.3s;
  transition-delay: 0s;
}
header .gnb li.active a {
  font-weight: 600;
  color: var(--pri1);
}
header .gnb li.active a::before {
  transform: scaleX(1);
  transform-origin: 0 50%;
}
header .gnb li:hover a {
  color: var(--pri1);
}
header .gnb li:hover a::before {
  transform: scaleX(1);
  transform-origin: 0 50%;
}
header .util {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
header .util .tel {
  display: flex;
  align-items: center;
  padding: 0.3rem 0.63rem 0.3rem 2.13rem;
  border-radius: 6.25rem;
  background: linear-gradient(90deg, #0A56C2 0%, #005FE5 100%);
  box-sizing: border-box;
  color: var(--white);
  font-weight: 600;
  font-size: 1.125rem;
}
header .util .tel .icon {
  width: 2.4rem;
  height: 2.4rem;
  background: #fff url(/common/img/user/icon/header_tel.svg) no-repeat center center;
  border-radius: 50%;
  margin-left: 0.44rem;
}
@media (hover: hover) {
  header .gnb li a:hover {
    color: var(--pri3);
  }
}
@media screen and (max-width: 1500px) {
  header {
    padding: 0 2.5rem;
    top: 2.5rem;
  }
  header h1 a {
    height: 1.65rem;
  }
  header .util .tel {
    font-size: 1rem;
    padding: 0.3rem 0.3rem 0.3rem 1.2rem;
  }
  header .util .tel .icon {
    width: 2rem;
    height: 2rem;
    background-size: 60%;
  }
}
@media screen and (max-width: 1340px) {
  header {
    padding: 0 1.2rem;
  }
  header h1 a {
    height: 1.5rem;
  }
  header .gnb {
    width: 76%;
  }
  header .util {
    top: 0.6rem;
    right: 1rem;
    gap: 0;
  }
  header .util .tel {
    width: 2.2rem;
    height: 2.2rem;
    padding: 0;
  }
  header .util .tel span:nth-child(1) {
    display: none;
  }
  header .util .tel .icon {
    width: 100%;
    height: 100%;
    margin: 0;
    background-size: 60%;
    background-color: transparent;
    background-image: url(/common/img/user/icon/m_header_tel.svg);
  }
}
@media screen and (max-width: 1023px) {
  header {
    position: relative;
    align-items: flex-start;
    flex-direction: column;
    top: 0;
    width: 100%;
    padding: 0;
    box-sizing: initial;
    overflow: visible;
    background-color: var(--white);
    opacity: 1 !important;
    transform: none !important;
  }
  header .inr {
    padding: 0.87rem 1.5rem 0.87rem 1.5rem;
    border-radius: 0;
  }
  header.active {
    position: fixed;
    top: 0 !important;
    left: 0;
    right: 0;
    width: 100%;
    height: 5.8rem;
    box-shadow: 5px 7px 4.9px 0px rgba(0, 0, 0, 0.05);
  }
  header.active .gnb {
    border: 0;
  }
  header h1 a {
    display: block;
    width: 14rem;
    height: auto;
    padding: 0;
  }
  header .gnb {
    position: absolute;
    top: 3rem;
    left: 0;
    width: 100%;
    justify-content: initial;
    overflow-x: scroll;
    padding-top: 0.4rem;
    padding-bottom: 0.5rem;
    border-radius: 0;
  }
  header .gnb li a {
    font-size: 1rem;
    font-weight: 500;
    padding: 0.45rem 0.85rem 0.55rem;
    white-space: nowrap;
  }
  header .util {
    position: absolute;
  }
}
@media screen and (max-width: 767px) {
  header.active .inr {
    border: 0;
  }
  header .inr {
    padding: 0.87rem 1rem 0.87rem 1rem;
    border-radius: 0;
  }
  header .gnb {
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  header .gnb::-webkit-scrollbar {
    display: none;
  }
}

.quik-menu {
  display: block;
  flex-direction: column;
  position: fixed;
  bottom: 3rem;
  right: -10rem;
  z-index: 10;
  opacity: 0;
  width: 7.25rem;
  transition: all 0.6s;
}
.quik-menu.on {
  opacity: 1;
  right: 2rem;
}
@media screen and (max-width: 767px) {
  .quik-menu.on {
    right: 0.5rem;
    bottom: 0.5rem;
  }
}
@media screen and (max-width: 767px) {
  .quik-menu {
    width: 6.25rem;
  }
}
.quik-menu .link {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.quik-menu .link a {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  padding: 0.88rem 1rem;
  align-items: center;
  cursor: pointer;
  background-color: var(--white);
  color: #555;
  border-radius: 6.25rem;
  border: 1px solid #DDD;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .quik-menu .link a {
    padding: 0.8rem 0.4rem;
    font-size: 1.1rem;
  }
}
.quik-menu .link a:hover {
  border-color: var(--pri3);
}
.quik-menu .link a:hover .txt {
  color: var(--pri3);
}
.quik-menu .link a.counsel {
  background: linear-gradient(90deg, #0A56C2 0%, #005FE5 100%);
  border-color: transparent;
}
.quik-menu .link a.counsel .txt {
  color: var(--white);
}
.quik-menu .link a.counsel:hover {
  border-color: #026e96;
}
.quik-menu .link a.blog {
  background: linear-gradient(90deg, #5CB533 0%, #51CF17 100%);
  border-color: transparent;
}
.quik-menu .link a.blog .txt {
  color: var(--white);
}
.quik-menu .link a.blog:hover {
  border-color: #287a01;
}
.quik-menu .link a .img {
  width: 0.9rem;
  height: 0.9rem;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: left center;
  opacity: 1;
}
.quik-menu .link a .img[data-quick=blog] {
  background-image: url(/common/img/user/icon/quick_blog.svg);
}
.quik-menu .link a .img[data-quick=counsel] {
  background-image: url(/common/img/user/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%;
  z-index: 2;
  border: 1px solid #DDDDDD;
  background-image: url(/common/img/user/icon/quick_arrow.svg);
  background-color: var(--white);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 0.3s;
}
.quik-menu .posi span.bottom {
  transform: rotate(180deg);
}
.quik-menu .posi span:hover {
  background-image: url(/common/img/user/icon/quick_arrow_on.svg);
  border-color: var(--pri1);
  background-color: var(--pri1);
}

#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: 2.5rem;
  right: 2rem;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  overflow: hidden;
  text-indent: -1000000rem;
  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/online_form_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(--pri3);
  border-radius: 0.125rem;
  border: 0;
  cursor: pointer;
}
#quick #quick_form input[type=submit]:hover {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  #quick #quick_form input[type=submit] {
    height: 2.8rem;
    line-height: 2.8rem;
  }
}
#quick #quick_form .chk-online-agree {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 1.2rem 0 3rem;
  color: #555555;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: -0.01rem;
}
#quick #quick_form .chk-online-agree a {
  font-size: 0.96rem;
}
#quick #quick_form .chk-online-agree input[type=checkbox] {
  width: 1rem;
  height: 1rem;
  margin-right: 0.4rem;
}
@media screen and (max-width: 767px) {
  #quick #quick_form .chk-online-agree {
    padding: 0.8rem 0 1rem;
  }
}

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

.pc-hidden {
  display: none;
}
@media screen and (max-width: 767px) {
  .pc-hidden {
    display: block;
  }
}

.header-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.44rem;
}
.header-wrap .label {
  color: var(--pri1);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 146%;
  letter-spacing: -0.0375rem;
}
.header-wrap .title {
  color: var(--pri3);
  font-size: 3.75rem;
  font-weight: 300;
  line-height: 126%;
  letter-spacing: -0.09375rem;
}
.header-wrap .title b {
  font-weight: 600;
}
.header-wrap .desc {
  color: var(--pri3-2);
  font-size: 1.75rem;
  font-weight: 300;
  line-height: 146%;
  letter-spacing: -0.04375rem;
}
@media screen and (max-width: 1023px) {
  .header-wrap .label {
    font-size: 1.2rem;
  }
  .header-wrap .title {
    padding-top: 1.5rem;
    font-size: 2.2rem;
  }
  .header-wrap .desc {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .header-wrap {
    gap: 1rem;
  }
  .header-wrap .label {
    text-align: center;
  }
  .header-wrap .title {
    padding-top: 0;
    text-align: center;
    font-size: 1.9rem;
    line-height: 1.45;
  }
  .header-wrap .desc {
    padding-top: 0;
    text-align: center;
  }
}

/* 메인비쥬얼 */
#mainSlide {
  width: 100%;
  height: auto;
  margin: 0 auto;
  position: relative;
}
#mainSlide .swiper {
  width: 100%;
  height: 100%;
}
#mainSlide .swiper .swiper-slide .text-wrap {
  max-width: 1500px;
  width: 1500px;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 2.6rem;
  flex-direction: column;
  overflow: hidden;
  text-align: left;
  z-index: 1;
  transition-delay: 0.3s;
  transition: all 0.3s;
}
#mainSlide .swiper .swiper-slide .text-wrap p {
  transition-property: transform;
  transition-duration: 0.9s;
  transform: translateY(500%);
  display: block;
  -webkit-transform: translateY(180%);
  -moz-transform: translateY(180%);
  -ms-transform: translateY(180%);
  -o-transform: translateY(180%);
  display: block;
  transition-delay: inherit;
  opacity: 0;
  color: var(--pri3);
  line-height: 1.45;
  letter-spacing: -2.5%;
}
#mainSlide .swiper .swiper-slide .text-wrap .tit {
  font-size: 3.875rem;
  font-weight: 300;
  line-height: 148%;
  letter-spacing: -0.09688rem;
}
#mainSlide .swiper .swiper-slide .text-wrap .tit span {
  color: var(--pri1);
  font-weight: 600;
}
#mainSlide .swiper .swiper-slide .text-wrap .desc {
  padding-left: 0.2rem;
  font-size: 1.75rem;
  font-weight: 200;
  line-height: 158%; /* 2.59rem */
  letter-spacing: -0.04375rem;
}
#mainSlide .swiper .swiper-slide img {
  width: 100%;
  height: 100%;
}
#mainSlide .swiper .swiper-slide img.pc {
  display: block;
}
#mainSlide .swiper .swiper-slide img.mo {
  display: none;
}
#mainSlide .swiper .swiper-slide.slide04 .text-wrap p {
  color: #075516;
}
#mainSlide .swiper .swiper-slide-active .text-wrap p {
  transform: translateY(0);
  opacity: 1;
}
#mainSlide .swiper .swiper-slide-active .text-wrap .tit {
  transition-delay: 0.3s;
}
#mainSlide .swiper .swiper-slide-active .text-wrap .desc {
  transition-delay: 0.5s;
}
#mainSlide .swiper .swiper-slide-active img {
  transform: scale(1.025);
  transition: transform 5s ease;
  background-position: center center;
}
#mainSlide .swiper .control {
  position: absolute;
  bottom: 32%;
  left: 50%;
  transform: translate(-50%, 0);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: 1500px;
  margin: 0 auto;
  z-index: 1;
}
#mainSlide .swiper .control .swiper-button-prev,
#mainSlide .swiper .control .swiper-button-next {
  position: relative;
  top: initial;
  right: initial;
  left: initial;
  margin-top: 0;
  width: 2rem;
  height: 2rem;
  background-position: center center;
  background-repeat: no-repeat;
}
#mainSlide .swiper .control .swiper-button-prev::after,
#mainSlide .swiper .control .swiper-button-next::after {
  display: none;
}
#mainSlide .swiper .control .swiper-button-prev svg,
#mainSlide .swiper .control .swiper-button-next svg {
  display: none;
}
#mainSlide .swiper .control .swiper-button-next {
  background-image: url(/common/img/user/icon/mainslide_arrow_next.svg);
}
#mainSlide .swiper .control .swiper-button-prev {
  background-image: url(/common/img/user/icon/mainslide_arrow_prev.svg);
}
#mainSlide .swiper .paging {
  position: relative;
  top: 0;
  width: auto;
  display: flex;
  gap: 0.3rem;
  align-items: center;
  color: var(--pri3-1);
  font-weight: 200;
}
#mainSlide .swiper .paging > span {
  font-weight: 600;
}
#mainSlide .swiper .paging .swiper-pagination-bullet {
  width: 0.25rem;
  height: 0.25rem;
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 3px) !important;
  background: var(--pri4-1);
  opacity: 1;
  transition-delay: 0.3s;
  transition: all 0.3s;
}
#mainSlide .swiper .paging .swiper-pagination-bullet-active {
  width: 0.4375rem;
  height: 0.4375rem;
  margin-top: -1px !important;
  background: var(--pri1);
}
@media screen and (max-width: 1500px) {
  #mainSlide .swiper .paging {
    bottom: 30%;
  }
}
@media screen and (max-width: 1500px) {
  #mainSlide .swiper .swiper-slide .text-wrap {
    width: 100%;
    top: 30%;
    left: 8rem;
    transform: initial;
  }
  #mainSlide .swiper .swiper-slide .text-wrap .tit {
    font-size: 2.4rem;
  }
  #mainSlide .swiper .swiper-slide .text-wrap .desc {
    font-size: 1.3rem;
  }
  #mainSlide .swiper .control {
    width: 100%;
    left: 8rem;
    bottom: 20%;
    transform: initial;
  }
}
@media screen and (max-width: 1023px) {
  #mainSlide {
    margin-top: 2rem;
  }
  #mainSlide .swiper .swiper-slide .text-wrap {
    top: 30%;
  }
  #mainSlide .swiper .swiper-slide .text-wrap .tit {
    font-size: 2.2rem;
  }
  #mainSlide .swiper .swiper-slide .text-wrap .desc {
    font-size: 1.3rem;
    padding-left: 0.3rem;
  }
}
@media screen and (max-width: 767px) {
  #mainSlide .swiper .swiper-slide .text-wrap {
    width: 100%;
    top: 16%;
    left: 1.6rem;
    padding-left: 0;
  }
  #mainSlide .swiper .swiper-slide .text-wrap .tit {
    font-size: 2rem;
    line-height: 1.45;
  }
  #mainSlide .swiper .swiper-slide .text-wrap .desc {
    display: none;
    padding: 0;
    font-size: 1rem;
    font-weight: 400;
  }
  #mainSlide .swiper .swiper-slide img.pc {
    display: none;
  }
  #mainSlide .swiper .swiper-slide img.mo {
    display: block;
  }
  #mainSlide .swiper .control {
    width: 100%;
    left: 0;
    transform: translate(1.2rem, 0);
  }
}

/* 빠른메뉴 바로가기 */
#quickLink {
  position: relative;
  margin-top: -3rem;
  z-index: 1;
  padding: 6.25rem 0 0;
  border-radius: 3.75rem 3.75rem 0rem 0rem;
  background-color: var(--white);
}
#quickLink .quickLinkSwiper {
  max-width: 1500px;
  margin: 0 auto;
  overflow: visible;
}
#quickLink ul {
  display: flex;
  justify-content: space-between;
  text-align: center;
}
#quickLink ul li {
  width: calc(14.2857142857% - 2rem);
  transition: all 0.5s ease-in-out;
  box-sizing: border-box;
  cursor: pointer;
}
#quickLink ul li .image {
  position: relative;
  border: 5px solid transparent;
  overflow: hidden;
  border-radius: 8.25rem;
  transition: all 0.3s;
}
#quickLink ul li .image img {
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
  transform: translate3d(0, 0, 0);
}
#quickLink ul li:nth-child(4) .image img {
  border-radius: 6.25rem;
  border: 2px solid #F0F0F0;
}
#quickLink ul li .txt {
  padding-top: 1rem;
  line-height: 1.25;
  font-size: 1.25rem;
  color: var(--pri3);
  font-weight: 500;
}
#quickLink ul li .txt span {
  position: relative;
  transition: all 0.3s ease-in-out;
}
#quickLink ul li .txt span::before {
  background: var(--pri1);
  height: 1px;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  width: 100%;
  content: "";
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition: transform 0.3s;
  transition-delay: 0s;
}
#quickLink ul li:hover .image {
  border-color: var(--pri1);
}
#quickLink ul li:hover .image img {
  transform: scale(1.1);
  transition: all 2s ease-in-out;
}
#quickLink ul li:hover .txt {
  color: var(--pri1);
}
#quickLink ul li:hover .txt span::before {
  transform: scaleX(1);
  transform-origin: 0 50%;
}
#quickLink ul li:hover .txt span:last-child::before {
  transition-delay: 0.3s;
}
#quickLink .swiper-button-next,
#quickLink .swiper-button-prev {
  display: none;
  position: absolute;
  width: 2.5rem;
  height: 2.5rem;
  top: 38%;
  border-radius: 6.25rem;
  background-color: var(--white);
  border: 1px solid #d3d3d3;
}
#quickLink .swiper-button-next::after,
#quickLink .swiper-button-prev::after {
  font-size: 1rem;
  color: var(--pri3);
}
#quickLink .swiper-button-next svg,
#quickLink .swiper-button-prev svg {
  display: none;
}
#quickLink .swiper-button-next {
  right: -0.6rem;
}
#quickLink .swiper-button-next.swiper-button-disabled {
  opacity: 0;
  transition: all 0.3s;
}
#quickLink .swiper-button-prev {
  left: -0.6rem;
}
#quickLink .swiper-button-prev.swiper-button-disabled {
  opacity: 0;
  transition: all 0.3s;
}
@media screen and (max-width: 1500px) {
  #quickLink {
    padding: 6.25rem 2rem 0 2rem;
    overflow: hidden;
  }
  #quickLink ul li {
    width: calc(20% - 2rem);
  }
  #quickLink .swiper-button-next,
  #quickLink .swiper-button-prev {
    display: flex;
  }
}
@media screen and (max-width: 767px) {
  #quickLink {
    padding: 2rem 1rem 0 1rem;
    border-radius: 3rem 3rem 0rem 0rem;
  }
  #quickLink ul li {
    width: calc(25% - 1rem);
  }
  #quickLink ul li.swiper-slide {
    width: auto;
  }
  #quickLink ul li .txt {
    font-size: 1.1rem;
  }
}

/* 이로운통증의 특별함 */
#overview {
  padding-top: 10rem;
}
#overview .overview-item {
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  width: 1500px;
  margin: 0 auto;
}
#overview .overview-item .left {
  width: 50%;
}
#overview .overview-item .left .details-item .details {
  height: 35rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
#overview .overview-item .left .details-item .details.fake {
  height: 40rem;
}
#overview .overview-item .right {
  position: relative;
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}
#overview .overview-item .right.active .photos-item .photos-box {
  top: 20%;
  transition: all 0.3s;
}
#overview .overview-item .right .photos-item {
  width: 100%;
  height: 40rem;
  background: transparent;
  position: relative;
}
#overview .overview-item .right .photos-item .photos-box {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  top: 0%;
  left: 0%;
  border-radius: 2.5rem;
}
#overview .overview-item .right .photos-item .photos-box .photo {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  border-radius: 2.5rem;
}
#overview .overview-item .right .photos-item .photos-box .photo .text-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
}
#overview .overview-item .right .photos-item .photos-box .photo .text-wrap .label {
  margin: 1.25rem 0 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20.9375rem;
  height: 3.6875rem;
  border-radius: 6.25rem;
  border: 1px solid #FFF;
  background: rgba(170, 164, 146, 0.52);
  -webkit-backdrop-filter: blur(2.9000000954px);
          backdrop-filter: blur(2.9000000954px);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 146%; /* 2.19rem */
  letter-spacing: -0.0375rem;
  color: var(--white);
}
#overview .overview-item .right .photos-item .photos-box .photo .text-wrap .label span {
  display: inline-block;
  font-weight: 600;
  padding-left: 0.5rem;
}
#overview .overview-item .right .photos-item .photos-box .photo .text-wrap .contents {
  position: absolute;
  left: 4.31rem;
  bottom: 4.31rem;
}
#overview .overview-item .right .photos-item .photos-box .photo .text-wrap .contents .tit {
  padding-bottom: 0.69rem;
  font-size: 2.875rem;
  font-weight: 600;
  line-height: 148%;
  letter-spacing: -0.07188rem;
}
#overview .overview-item .right .photos-item .photos-box .photo .text-wrap .contents .desc {
  color: var(--pri3-1);
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 148%; /* 2.22rem */
  letter-spacing: -0.0375rem;
}
#overview .overview-item .right .photos-item .photos-box .photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2.5rem;
}
@media screen and (max-width: 1500px) {
  #overview {
    padding-bottom: 3rem;
  }
  #overview .overview-item {
    width: 100%;
  }
  #overview .overview-item .left {
    width: 45%;
    padding-left: 3rem;
  }
  #overview .overview-item .left .details-item .details {
    height: 50vh;
  }
  #overview .overview-item .left .details-item .details.fake {
    height: 60vh;
  }
  #overview .overview-item .right {
    justify-content: flex-start;
    width: 50%;
    height: 100vh;
    padding-right: 4rem !important;
  }
  #overview .overview-item .right .photos-item {
    width: 100%;
    height: 70%;
  }
  #overview .overview-item .right .photos-item .photos-box {
    width: 100%;
    height: 100%;
    left: initial;
    right: 0;
    transition: top 0.3s ease;
  }
  #overview .overview-item .right .photos-item .photos-box .photo img {
    -o-object-fit: fill;
       object-fit: fill;
  }
}
@media screen and (max-width: 1240px) {
  #overview {
    padding-bottom: 0;
    padding-top: 8rem;
  }
  #overview .overview-item .right .photos-item .photos-box {
    height: 100%;
  }
  #overview .overview-item .right .photos-item .photos-box .photo .text-wrap .contents {
    padding-right: 2rem;
  }
  #overview .overview-item .right.active .photos-item .photos-box {
    top: 20%;
  }
  #overview .overview-item .right.active .photos-item .photos-box .photo img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (max-width: 1023px) {
  #overview {
    padding-top: 0;
    padding-bottom: 6rem;
  }
  #overview .overview-item {
    flex-direction: column;
  }
  #overview .overview-item .left {
    width: 100%;
    padding: 0;
    text-align: center;
  }
  #overview .overview-item .left .details-item > div:nth-child(2),
  #overview .overview-item .left .details-item > div:nth-child(3) {
    display: none;
  }
  #overview .overview-item .left .details-item .details {
    height: auto;
    padding-top: 6rem;
  }
  #overview .overview-item .right {
    width: 100%;
    height: initial;
    padding: 4rem 1.2rem 0 !important;
    justify-content: flex-start;
  }
  #overview .overview-item .right .photos-item {
    width: 100%;
    height: initial;
  }
  #overview .overview-item .right .photos-item .photos-box {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    border-radius: 1rem;
  }
  #overview .overview-item .right .photos-item .photos-box .photo {
    position: relative;
    top: initial;
    left: initial;
    border-radius: 1rem;
  }
  #overview .overview-item .right .photos-item .photos-box .photo img {
    border-radius: 1rem;
  }
  #overview .overview-item .right .photos-item .photos-box .photo .text-wrap .label {
    font-size: 1.2rem;
    width: initial;
    height: initial;
    display: inline-flex;
    padding: 0.2rem 2rem;
  }
  #overview .overview-item .right .photos-item .photos-box .photo .text-wrap .contents {
    left: 2rem;
    bottom: 2rem;
  }
  #overview .overview-item .right .photos-item .photos-box .photo .text-wrap .contents .tit {
    font-size: 1.9rem;
  }
  #overview .overview-item .right .photos-item .photos-box .photo .text-wrap .contents .desc {
    font-size: 1.1rem;
  }
}

/* 의료진 소개*/
#doctor {
  position: relative;
  display: flex;
  height: 100%;
  overflow: hidden;
}
#doctor .left {
  position: relative;
  width: 50%;
  height: 62.5rem;
  background-color: #E4EAF0;
}
#doctor .left .header-wrap {
  padding-left: 13.5rem;
  padding-top: 10rem;
}
#doctor .left .header-wrap .title {
  font-weight: 600;
  color: var(--pri1);
}
#doctor .left .header-wrap .title b {
  color: var(--pri3);
}
#doctor .left .contents {
  position: absolute;
  right: 0;
  bottom: 10rem;
}
#doctor .left .contents ul {
  display: flex;
  flex-direction: column;
  gap: 0.44rem;
}
#doctor .left .contents ul li {
  display: flex;
  align-items: center;
  width: 50rem;
  height: 3.6875rem;
  border-radius: 6.25rem;
  color: var(--white);
  background-color: var(--pri1);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 146%; /* 2.19rem */
  letter-spacing: -0.0375rem;
}
#doctor .left .contents ul li::before {
  display: inline-block;
  content: "·";
  padding-left: 3.31rem;
  padding-right: 0.44rem;
}
#doctor .left .contents ul li:nth-child(2) {
  background-color: var(--pri2);
}
#doctor .left .contents ul li span {
  display: inline-block;
  padding-left: 0.44rem;
  font-size: 0.875rem;
  font-weight: 200;
}
#doctor .left .doctor {
  display: none;
  position: relative;
  z-index: 0;
  width: 46%;
  margin-left: auto;
  margin-right: 3rem;
  padding-top: 2rem;
}
#doctor .right {
  width: 50%;
  height: 62.5rem;
  z-index: 2;
  background-color: #F1F5F6;
}
#doctor .right .doctor {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
#doctor .right .inr {
  display: flex;
  align-items: flex-end;
  height: 100%;
  padding-left: 16rem;
  padding-right: 8rem;
  padding-bottom: 4rem;
}
#doctor .right .inr .doctor-history {
  display: flex;
  padding-bottom: 2.44rem;
}
#doctor .right .inr .doctor-history .header-wrap {
  padding-right: 2.5rem;
  flex-basis: 10rem;
}
#doctor .right .inr .doctor-history .header-wrap .tit {
  display: inline-flex;
  padding: 0.1875rem 1.375rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  border-radius: 2.1875rem;
  background-color: var(--white);
  color: var(--pri3);
  text-align: center;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: -0.03125rem;
}
#doctor .right .inr .doctor-history ul {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.7rem;
}
#doctor .right .inr .doctor-history ul li {
  display: flex;
  color: var(--pri3);
  line-height: 1.25;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: -0.025rem;
}
#doctor .right .inr .doctor-history ul li::before {
  display: inline-block;
  content: "·";
  padding-right: 0.83rem;
  font-weight: 800;
  color: var(--pri1);
}
#doctor .right .inr .doctor-history ul li.point {
  color: var(--pri1);
  font-weight: 600;
}
@media screen and (max-width: 1620px) {
  #doctor .left {
    height: 65rem;
  }
  #doctor .left .header-wrap {
    padding-left: 5rem;
  }
  #doctor .right {
    height: 65rem;
  }
  #doctor .right .inr {
    align-items: flex-start;
    padding-top: 8rem;
    padding-bottom: 0;
  }
  #doctor .right .inr .doctor-history {
    flex-direction: column;
  }
  #doctor .right .inr .doctor-history .header-wrap {
    padding-right: 0;
    flex-basis: initial;
  }
  #doctor .right .inr .doctor-history ul {
    padding-top: 1rem;
  }
}
@media screen and (max-width: 1500px) {
  #doctor .left .header-wrap {
    padding-left: 4rem;
    padding-top: 8rem;
  }
  #doctor .left .contents {
    left: 5%;
    right: initial;
    bottom: 2rem;
    z-index: 1;
  }
  #doctor .left .doctor {
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
  }
  #doctor .right {
    position: relative;
  }
  #doctor .right .inr {
    padding: 4rem 3rem;
    z-index: 1;
    position: relative;
  }
  #doctor .right .doctor {
    display: none;
    left: initial;
    transform: initial;
    right: 1rem;
    width: 20rem;
  }
}
@media screen and (max-width: 1023px) {
  #doctor {
    flex-direction: column;
    margin-top: -4rem;
  }
  #doctor .left {
    position: relative;
    width: 100%;
    height: 75vh;
  }
  #doctor .left .header-wrap {
    padding-top: 6rem;
    padding-left: 3rem;
  }
  #doctor .left .contents {
    padding-top: 3rem;
    position: relative;
    right: initial;
    bottom: initial;
    left: initial;
  }
  #doctor .left .contents ul li {
    width: 90%;
    margin: 0 auto;
    text-align: center;
    font-size: 1.35rem;
  }
  #doctor .left .doctor {
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 20rem;
  }
  #doctor .right {
    width: 100%;
    height: 100%;
  }
  #doctor .right .doctor {
    display: none;
  }
  #doctor .right .inr {
    justify-content: flex-start;
    padding: 4rem 3rem 4rem 3rem;
  }
}
@media screen and (max-width: 767px) {
  #doctor {
    margin-top: 0;
  }
  #doctor .left .header-wrap {
    padding-left: 1.2rem;
  }
  #doctor .left .header-wrap p {
    text-align: left;
  }
  #doctor .left .doctor {
    top: initial;
    bottom: 0;
    width: 45%;
    right: 1.2rem;
    margin-right: 0;
  }
  #doctor .left .contents {
    padding-top: 6rem;
    z-index: 1;
  }
  #doctor .left .contents ul {
    padding: 0 1.2rem;
    box-sizing: border-box;
  }
  #doctor .left .contents ul li {
    text-align: left;
    width: 100%;
    font-size: 1.2rem;
  }
  #doctor .left .contents ul li::before {
    padding-left: 1.3rem;
  }
  #doctor .left .contents ul li span {
    display: none;
  }
  #doctor .right .inr {
    padding: 4rem 1.2rem 3rem;
  }
  #doctor .right .inr .doctor-history {
    flex-direction: column;
  }
  #doctor .right .inr .doctor-history .header-wrap {
    padding-right: 0;
    flex-basis: initial;
  }
  #doctor .right .inr .doctor-history ul {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 460px) {
  #doctor .left .doctor {
    bottom: 6rem;
  }
}

/* 진료과목 */
#subject .header-wrap {
  padding: 12.5rem 0 5rem;
  text-align: center;
}
#subject .contents {
  gap: 3.13rem;
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 38.5rem;
}
#subject .contents > div {
  position: relative;
  width: 50%;
  height: 100%;
  cursor: pointer;
  flex: 1;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: all 0.8s ease;
}
#subject .contents > div.active {
  flex: 1.2;
}
#subject .contents > div.active .text-wrap .desc {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
  transition: all 0.5s;
}
#subject .contents > div.active .btn {
  opacity: 1;
  transform: translatey(0);
  transition-delay: 0.8s;
  transition: all 0.5s;
}
#subject .contents > div.active .video {
  opacity: 1;
}
#subject .contents > div .video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 0;
}
#subject .contents > div:hover {
  flex: 1.2;
}
#subject .contents > div:hover .text-wrap .desc {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
  transition: all 0.5s;
}
#subject .contents > div:hover .btn {
  opacity: 1;
  transform: translatey(0);
  transition-delay: 0.8s;
  transition: all 0.5s;
}
#subject .contents > div:hover .video {
  opacity: 1;
}
#subject .contents .left {
  background-image: url(/common/img/user/main/subject01.jpg);
}
#subject .contents .right {
  background-image: url(/common/img/user/main/subject02.jpg);
}
#subject .contents .text-wrap {
  position: relative;
  padding: 6.63rem 0 0 5rem;
  z-index: 1;
}
#subject .contents .text-wrap .tit {
  color: var(--white);
  font-size: 3.75rem;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.09375rem;
}
#subject .contents .text-wrap .tit span {
  display: inline-block;
  padding-left: 1rem;
  opacity: 0.6;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0;
}
#subject .contents .text-wrap .desc {
  padding-top: 2.44rem;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 128%;
  letter-spacing: -0.05313rem;
  transition-property: transform;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transition: all 0.5s;
  opacity: 0;
}
#subject .contents .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6.25rem;
  background: #F1F5F6;
  width: 14.5625rem;
  height: 3.875rem;
  color: var(--pri3-1);
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  position: absolute;
  right: 1.87rem;
  bottom: 1.87rem;
  text-transform: uppercase;
  opacity: 0;
  transition-property: transform;
  transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transition: all 0.5s;
  z-index: 1;
}
#subject .contents .btn .icon {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.81rem;
  background: url(/common/img/user/icon/btn_arrow.svg) no-repeat center center;
}
@media screen and (max-width: 1023px) {
  #subject .header-wrap {
    padding: 8rem 0 5rem;
  }
  #subject .contents {
    gap: 2.8rem;
    height: 30rem;
  }
  #subject .contents > div.active {
    flex: 1.4;
  }
  #subject .contents .text-wrap .tit {
    font-size: 2.2rem;
  }
  #subject .contents .text-wrap .tit span {
    font-size: 1.2rem;
  }
  #subject .contents .text-wrap .desc {
    font-size: 1.2rem;
  }
  #subject .contents .btn {
    width: 12rem;
    height: 3rem;
  }
}
@media screen and (max-width: 767px) {
  #subject .header-wrap {
    padding: 6rem 0 4rem;
  }
  #subject .contents {
    height: auto;
    flex-direction: column;
  }
  #subject .contents .text-wrap {
    text-align: center;
    padding: 0;
  }
  #subject .contents .text-wrap .desc {
    opacity: 1;
    padding-top: 1rem;
    padding-bottom: 2rem;
    transform: initial;
    -webkit-transform: initial;
    -moz-transform: initial;
    -ms-transform: initial;
    -o-transform: initial;
    line-height: 1.45;
  }
  #subject .contents > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 25rem;
    flex: initial;
    align-items: center;
  }
  #subject .contents > div:hover {
    flex: initial;
  }
  #subject .contents > div.active {
    flex: initial;
  }
  #subject .contents > div .btn {
    opacity: 1;
    position: relative;
    right: initial;
    bottom: initial;
    transform: none;
    font-size: 0.8rem;
    height: 2.4rem;
  }
}

/* 비수술치료 */
#nonsurgical {
  overflow: hidden;
}
#nonsurgical .header-wrap {
  padding: 12.5rem 2rem 5rem;
  text-align: center;
}
#nonsurgical .swiper {
  overflow: visible;
}
#nonsurgical .swiper .swiper-pagination {
  bottom: -3.25rem;
}
#nonsurgical .swiper .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
#nonsurgical .swiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 2px) !important;
}
#nonsurgical .swiper .swiper-pagination-bullet-active {
  background: var(--pri1);
}
#nonsurgical .swiper-slide {
  height: 50rem;
  animation: fadeInSlide 0.6s ease forwards;
}
#nonsurgical .swiper-slide.grid1 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  width: 60%;
  margin-left: 12rem;
}
#nonsurgical .swiper-slide.grid2 {
  flex-shrink: 0;
  flex-grow: 1;
  width: 30%;
  margin-left: 2.5rem;
  transition: width 0.3s ease-in-out;
}
#nonsurgical .swiper-slide.grid3 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  width: 60%;
  margin-left: 2.5rem;
  margin-right: 12rem;
  transition: width 0.3s ease-in-out;
}
#nonsurgical .swiper-slide .top {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  height: calc(50% - 1.5rem);
}
#nonsurgical .swiper-slide .bottom {
  display: flex;
  gap: 2.5rem;
  height: calc(50% - 1.5rem);
}
#nonsurgical .swiper-slide .full {
  display: flex;
  gap: 2.5rem;
  height: 100%;
}
#nonsurgical .swiper-slide .full .item {
  width: 100%;
}
#nonsurgical .swiper-slide .item {
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  border-radius: 1.25rem;
  border: 4px solid transparent;
  transition: all 0.8s ease;
  cursor: pointer;
}
#nonsurgical .swiper-slide .item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#nonsurgical .swiper-slide .item .text-wrap {
  position: absolute;
  z-index: 1;
  top: 4.44rem;
  left: 3.4rem;
}
#nonsurgical .swiper-slide .item .text-wrap .label {
  display: inline-block;
  min-width: 10.5rem;
  height: 1.5rem;
  padding: 0rem 1.5625rem;
  gap: 0.625rem;
  color: var(--pri3-2);
  text-align: center;
  font-size: 1rem;
  font-weight: 300;
  line-height: 148%;
  letter-spacing: -0.025rem;
  border-radius: 6.25rem;
  background-color: var(--white);
}
#nonsurgical .swiper-slide .item .text-wrap .tit {
  padding: 0.69rem 0 2rem;
  color: var(--pri3);
  font-size: 2.875rem;
  font-weight: 600;
  line-height: 148%; /* 4.255rem */
  letter-spacing: -0.07188rem;
}
#nonsurgical .swiper-slide .item .text-wrap .desc {
  opacity: 0;
  color: var(--pri3-1);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 148%;
  letter-spacing: -0.0375rem;
  transition: all 0.3s ease;
}
#nonsurgical .swiper-slide .item .text-wrap.wh .label {
  color: var(--white);
  border-radius: 6.25rem;
  border: 1px solid rgba(255, 255, 255, 0.67);
  background: rgba(255, 255, 255, 0.22);
  -webkit-backdrop-filter: blur(4.8499999046px);
          backdrop-filter: blur(4.8499999046px);
}
#nonsurgical .swiper-slide .item .text-wrap.wh .tit {
  color: var(--white);
}
#nonsurgical .swiper-slide .item .text-wrap.wh .desc {
  color: var(--white);
}
#nonsurgical .swiper-slide .item .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6.25rem;
  background: var(--white);
  width: 13rem;
  height: 2.875rem;
  color: var(--pri3-1);
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  position: absolute;
  right: 1.87rem;
  bottom: 1.87rem;
  text-transform: uppercase;
  opacity: 0;
  transition: all 0.5s;
  z-index: 1;
}
#nonsurgical .swiper-slide .item .btn .icon {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.81rem;
  background: url(/common/img/user/icon/btn_arrow.svg) no-repeat center center;
}
#nonsurgical .swiper-slide .item.col1 {
  width: 40%;
  flex: 0.4;
}
#nonsurgical .swiper-slide .item.col1:hover {
  flex: 1;
}
#nonsurgical .swiper-slide .item.col2 {
  width: 60%;
  flex: 0.6;
}
#nonsurgical .swiper-slide .item.col2:hover {
  flex: 1;
}
#nonsurgical .swiper-slide .item.col-full {
  height: 100%;
  flex: 1;
}
#nonsurgical .swiper-slide .item.col-full:hover {
  flex: 1.2;
}
#nonsurgical .swiper-slide .item:hover {
  border-color: var(--pri1);
}
#nonsurgical .swiper-slide .item:hover .text-wrap .desc {
  opacity: 1;
  transition: all 0.3s ease;
}
#nonsurgical .swiper-slide .item:hover .btn {
  opacity: 1;
}
@keyframes fadeInSlide {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (max-width: 1500px) {
  #nonsurgical .swiper-slide.grid1 {
    width: 120%;
    margin-left: 3rem;
  }
  #nonsurgical .swiper-slide.grid2 {
    width: 100%;
    margin-left: 1.5rem;
  }
  #nonsurgical .swiper-slide.grid3 {
    width: 120%;
    margin-left: 1.5rem;
    margin-right: 2rem;
  }
  #nonsurgical .swiper-slide .full {
    gap: 1.5rem;
  }
  #nonsurgical .swiper-slide .top {
    gap: 1.5rem;
    margin-bottom: 0;
    height: calc(50% - 0.5rem);
  }
  #nonsurgical .swiper-slide .bottom {
    gap: 1.5rem;
    margin-bottom: 0;
    height: calc(50% - 0.5rem);
  }
}
@media screen and (max-width: 1023px) {
  #nonsurgical .swiper-slide.grid1 {
    width: 90%;
    margin-left: 2rem;
  }
  #nonsurgical .swiper-slide.grid2 {
    width: 90%;
  }
  #nonsurgical .swiper-slide.grid3 {
    width: 90%;
  }
}
@media screen and (max-width: 767px) {
  #nonsurgical .header-wrap {
    padding: 6rem 2rem 4rem;
  }
  #nonsurgical .swiper-slide {
    height: 60vh;
  }
  #nonsurgical .swiper-slide .top {
    gap: 0.6rem;
  }
  #nonsurgical .swiper-slide .bottom {
    gap: 0.6rem;
  }
  #nonsurgical .swiper-slide .full {
    gap: 0.6rem;
  }
  #nonsurgical .swiper-slide.grid1 {
    width: 100%;
    margin-left: 1.2rem;
  }
  #nonsurgical .swiper-slide.grid2 {
    width: 70%;
    margin-left: 0.6rem;
  }
  #nonsurgical .swiper-slide.grid3 {
    width: 100%;
    margin-left: 0.6rem;
    margin-right: 0.6rem;
  }
  #nonsurgical .swiper-slide .item {
    border-radius: 0.8rem;
  }
  #nonsurgical .swiper-slide .item.col1 {
    width: 40%;
    flex: 1;
  }
  #nonsurgical .swiper-slide .item.col1:hover {
    flex: 1;
  }
  #nonsurgical .swiper-slide .item.col2 {
    width: 60%;
    flex: 1;
  }
  #nonsurgical .swiper-slide .item.col2:hover {
    flex: 1;
  }
  #nonsurgical .swiper-slide .item.col-full {
    height: 100%;
    flex: 1;
  }
  #nonsurgical .swiper-slide .item.col-full:hover {
    flex: 1;
  }
  #nonsurgical .swiper-slide .item img {
    left: initial;
    right: 0;
  }
  #nonsurgical .swiper-slide .item .text-wrap {
    top: 3.4rem;
    left: 2.4rem;
  }
  #nonsurgical .swiper-slide .item .text-wrap .label {
    min-width: auto;
    height: auto;
    font-size: 0.8rem;
  }
  #nonsurgical .swiper-slide .item .text-wrap .tit {
    font-size: 1.8rem;
  }
  #nonsurgical .swiper-slide .item:hover .text-wrap .desc {
    opacity: 0;
    transition: all 0.3s ease;
  }
  #nonsurgical .swiper-slide .item:hover .btn {
    opacity: 0;
  }
}
@media screen and (max-width: 460px) {
  #nonsurgical .header-wrap .title br {
    display: none;
  }
}

/* 장비소개 */
#equip .header-wrap {
  position: relative;
  width: 93.75rem;
  padding: 12.5rem 0 5rem;
  margin: 0 auto;
  text-align: left;
}
#equip .header-wrap .swiper-pagination {
  position: absolute;
  left: 2.5rem;
  bottom: 0;
}
#equip .header-wrap .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
#equip .header-wrap .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 2px) !important;
}
#equip .contents {
  flex: 1 1 0;
  min-width: 0;
  padding: 6rem 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: 35rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1.25rem;
  background: #FBFBFB;
  overflow: hidden;
}
#equip .equipSwiper .swiper-slide img {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: auto;
}
#equip .equipSwiper .swiper-slide .text-wrap {
  position: absolute;
  width: 100%;
  top: 3rem;
  left: 4rem;
}
#equip .equipSwiper .swiper-slide .text-wrap .label {
  display: inline-flex;
  padding: 0.2rem 1.375rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  color: var(--white);
  text-align: center;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.03125rem;
  border: 1px solid var(--pri1);
  border-radius: 6.25rem;
  color: var(--pri1);
}
#equip .equipSwiper .swiper-slide .text-wrap .label[data-type=treat] {
  color: var(--pri2);
  border-color: var(--pri2);
}
#equip .equipSwiper .swiper-slide .text-wrap .tit {
  margin-top: 1rem;
  color: var(--pri3);
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.04375rem;
}
#equip .equipSwiper .swiper-slide .text-wrap .tit span {
  font-size: 1.3rem;
  font-weight: 400;
}
#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: 1500px) {
  #equip .header-wrap {
    width: 100%;
    padding: 12.5rem 3rem 5rem;
  }
  #equip .header-wrap .swiper-pagination {
    left: 5.5rem;
  }
}
@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-wrap {
    padding: 6rem 1.2rem 6rem;
  }
  #equip .header-wrap .swiper-control {
    width: 9rem;
    right: 0;
  }
  #equip .header-wrap .swiper-control .swiper-button-next, #equip .header-wrap .swiper-control .swiper-button-prev {
    width: 3.5rem;
    height: 3.5rem;
  }
  #equip .header-wrap .swiper-control .swiper-button-next {
    left: 4.5em;
  }
  #equip .contents {
    padding: 0 0 2.5rem;
  }
  #equip .equipSwiper {
    padding-left: 1rem;
    padding-bottom: 2.5rem;
  }
  #equip .equipSwiper .swiper-slide {
    height: 24rem;
  }
  #equip .equipSwiper .swiper-slide .text-wrap {
    text-align: center;
    top: 2rem;
    left: initial;
  }
  #equip .equipSwiper .swiper-slide .text-wrap .label {
    font-size: 1rem;
  }
  #equip .equipSwiper .swiper-slide .text-wrap .tit {
    line-height: 1.25;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 460px) {
  #equip .equipSwiper .swiper-slide {
    height: 20rem;
  }
}

/* 내부시설 */
#facility::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 52rem;
  background-color: #F9FCFF;
}
#facility .header-wrap {
  position: relative;
  width: 93.75rem;
  padding: 12.5rem 0 0;
  margin: 0 auto;
  text-align: left;
  z-index: 1;
}
#facility .header-wrap .swiper-control {
  position: absolute;
  right: 0;
  bottom: 6rem;
  width: 13rem;
  z-index: 1;
}
#facility .header-wrap .swiper-control .control {
  width: 5.625rem;
  height: 5.625rem;
  border-radius: 6.25rem;
  background: var(--pri3);
}
#facility .header-wrap .swiper-control .control svg {
  display: none;
}
#facility .header-wrap .swiper-control .control::after {
  font-size: 2rem;
  color: var(--white);
}
#facility .contents {
  padding-top: 6.25rem;
}
#facility .contents .facilitySwiper {
  padding: 0 2rem;
}
#facility .contents .facilitySwiper .swiper-slide {
  border-radius: 1.25rem;
  background: #FBFBFB;
  overflow: hidden;
}
#facility .contents .facilitySwiper .swiper-pagination {
  width: 93.75rem;
  height: 0.125rem;
  margin: 0 auto;
  top: initial;
  bottom: initial;
  position: relative;
  margin-top: 5.6rem;
  background: #D9D9D9;
}
#facility .contents .facilitySwiper .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--pri3);
}
@media screen and (max-width: 1500px) {
  #facility::before {
    height: 80%;
  }
  #facility .header-wrap {
    width: 100%;
    margin: initial;
    padding: 9rem 3rem 0;
  }
  #facility .contents .facilitySwiper .swiper-pagination {
    width: 100%;
  }
}
@media screen and (max-width: 1023px) {
  #facility::before {
    height: 60%;
  }
  #facility .header-wrap {
    padding: 6rem 2rem 0;
  }
  #facility .header-wrap .swiper-control {
    width: 10rem;
    bottom: 3rem;
    right: 1rem;
  }
  #facility .header-wrap .swiper-control .control {
    width: 4rem;
    height: 4rem;
  }
  #facility .contents {
    padding-top: 4rem;
  }
}
@media screen and (max-width: 767px) {
  #facility::before {
    background-color: #f3f9ff;
  }
  #facility .header-wrap {
    padding: 6rem 1.2rem 0;
  }
  #facility .header-wrap .swiper-control {
    display: none;
  }
  #facility .contents .facilitySwiper {
    padding: 0 1.2rem;
  }
  #facility .contents .facilitySwiper .swiper-slide {
    border-radius: 0.8rem;
  }
  #facility .contents .facilitySwiper .swiper-pagination {
    margin-top: 3rem;
  }
}

/* 병원정보 */
#hospitalInfo .header-wrap {
  position: relative;
  width: 93.75rem;
  padding: 12.5rem 0 5rem;
  margin: 0 auto;
  box-sizing: border-box;
}
#hospitalInfo .contents {
  background-color: #003E8B;
}
#hospitalInfo .contents .map {
  width: 100%;
  height: 40rem;
}
#hospitalInfo .contents .map .roughmap_maker_label .roughmap_lebel_text {
  padding-left: 2.65rem;
  font-size: 2rem;
  line-height: 2.2rem;
  color: var(--pri1);
  letter-spacing: -0.2rem;
  background: #fff url(/common/img/user/main/watermark.svg) no-repeat 0.5rem center;
}
#hospitalInfo .contents .inr {
  width: 93.75rem;
  margin: 0 auto;
  padding: 6.25rem 0 9rem;
  color: var(--white);
  box-sizing: border-box;
}
#hospitalInfo .contents .inr .hospital-info {
  display: flex;
  justify-content: space-between;
}
#hospitalInfo .contents .inr .hospital-info .left {
  width: 40rem;
}
#hospitalInfo .contents .inr .hospital-info .title {
  flex-basis: 13rem;
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.04375rem;
}
@media screen and (max-width: 1023px) {
  #hospitalInfo .contents .inr .hospital-info .title {
    font-size: 1.4rem;
  }
}
#hospitalInfo .contents .inr .hospital-info .time .title {
  padding-bottom: 1.7rem;
}
#hospitalInfo .contents .inr .hospital-info .time .contents {
  display: flex;
  flex-direction: column;
}
#hospitalInfo .contents .inr .hospital-info .time .contents > p {
  padding-top: 1.8rem;
  padding-bottom: 0.9rem;
  display: flex;
  flex-direction: row !important;
}
#hospitalInfo .contents .inr .hospital-info .time .contents > p:first-child {
  padding-top: 0;
}
#hospitalInfo .contents .inr .hospital-info .time .label {
  padding-right: 2rem;
  display: inline-block;
  font-size: 1.375rem;
  font-weight: 400;
  letter-spacing: -0.03438rem;
}
@media screen and (max-width: 1023px) {
  #hospitalInfo .contents .inr .hospital-info .time .label {
    font-size: 1.2rem;
  }
}
#hospitalInfo .contents .inr .hospital-info .time .txt {
  display: inline-block;
  font-size: 1.375rem;
  font-weight: 600;
  letter-spacing: 0;
}
@media screen and (max-width: 1023px) {
  #hospitalInfo .contents .inr .hospital-info .time .txt {
    font-size: 1.2rem;
  }
}
#hospitalInfo .contents .inr .hospital-info .time .notice {
  display: flex;
  gap: 0.5rem;
}
#hospitalInfo .contents .inr .hospital-info .time .notice .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.99781rem;
  height: 0.99781rem;
  border-radius: 6.25rem;
  font-size: 0.625rem;
  background-color: var(--pri2);
}
#hospitalInfo .contents .inr .hospital-info .time .notice .txt {
  color: var(--pri2);
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: -0.02813rem;
}
#hospitalInfo .contents .inr .hospital-info .sub-notice {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0.84rem 1.94rem;
  border-radius: 0.25rem;
  background: #00306A;
  color: #B9D6FF;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: -0.01875rem;
  gap: 0.68rem;
}
#hospitalInfo .contents .inr .hospital-info .sub-notice p {
  line-height: auto;
}
#hospitalInfo .contents .inr .hospital-info .sub-notice .bar {
  display: inline-block;
  padding: 0 0.65rem;
  font-weight: 200;
}
@media screen and (max-width: 1023px) {
  #hospitalInfo .contents .inr .hospital-info .sub-notice {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 767px) {
  #hospitalInfo .contents .inr .hospital-info .sub-notice {
    padding: 0.84rem 0.94rem;
    font-size: 0.9rem;
    gap: 0.5rem;
  }
}
#hospitalInfo .contents .inr .hospital-info .tel {
  display: flex;
  padding-top: 4.2rem;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: normal;
}
#hospitalInfo .contents .inr .hospital-info .tel p {
  display: flex;
  align-items: center;
  gap: 1.13rem;
}
#hospitalInfo .contents .inr .hospital-info .tel .icon {
  display: flex;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 6.25rem;
  background-color: var(--pri2);
  background-image: url(/common/img/user/icon/hospital_info_tel.svg);
  background-position: center center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1023px) {
  #hospitalInfo .contents .inr .hospital-info .tel {
    font-size: 1.9rem;
  }
}
#hospitalInfo .contents .inr .hospital-info .addr {
  display: flex;
  padding-top: 4.3rem;
  padding-bottom: 1.5rem;
  font-size: 1.375rem;
  font-weight: 400;
  letter-spacing: -0.03438rem;
}
#hospitalInfo .contents .inr .hospital-info .addr .subway {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding-top: 1rem;
  color: #8BD868;
}
#hospitalInfo .contents .inr .hospital-info .addr .subway .icon {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background-color: #8BD868;
  border-radius: 6.25rem;
  font-weight: 600;
}
@media screen and (max-width: 1023px) {
  #hospitalInfo .contents .inr .hospital-info .addr {
    font-size: 1.2rem;
  }
}
#hospitalInfo .contents .inr .hospital-info .parking {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  padding-top: 1.69rem;
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 148%;
  letter-spacing: -0.03438rem;
}
#hospitalInfo .contents .inr .hospital-info .parking .space b,
#hospitalInfo .contents .inr .hospital-info .parking .space .point {
  color: #F6993C;
}
#hospitalInfo .contents .inr .hospital-info .parking .city b,
#hospitalInfo .contents .inr .hospital-info .parking .city .point {
  color: #12DFAF;
}
#hospitalInfo .contents .inr .hospital-info .parking .image {
  position: relative;
}
#hospitalInfo .contents .inr .hospital-info .parking .image img {
  width: 100%;
}
@media screen and (max-width: 1023px) {
  #hospitalInfo .contents .inr .hospital-info .parking {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 1500px) {
  #hospitalInfo .header-wrap {
    width: 100%;
    padding: 8rem 2rem 5rem;
  }
  #hospitalInfo .contents .inr {
    width: 100%;
    padding: 5.25rem 2rem 5rem;
  }
  #hospitalInfo .contents .inr .hospital-info {
    gap: 3rem;
  }
}
@media screen and (max-width: 1023px) {
  #hospitalInfo .header-wrap {
    text-align: center;
  }
  #hospitalInfo .contents .map {
    height: 30rem;
  }
  #hospitalInfo .contents .inr .hospital-info .left {
    width: 50%;
  }
  #hospitalInfo .contents .inr .hospital-info .right {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  #hospitalInfo .header-wrap {
    padding: 6rem 1.2rem 4rem;
  }
  #hospitalInfo .contents .inr {
    padding: 4rem 1.2rem 4rem;
  }
  #hospitalInfo .contents .inr .hospital-info {
    flex-direction: column;
    justify-content: initial;
  }
  #hospitalInfo .contents .inr .hospital-info .left {
    width: 100%;
  }
  #hospitalInfo .contents .inr .hospital-info .right {
    width: 100%;
  }
  #hospitalInfo .contents .inr .hospital-info .title {
    flex-basis: 100%;
    padding-bottom: 1.2rem;
    font-size: 1.25rem;
  }
  #hospitalInfo .contents .inr .hospital-info .tel {
    padding-top: 3rem;
    flex-direction: column;
  }
  #hospitalInfo .contents .inr .hospital-info .tel p {
    gap: 1rem;
  }
  #hospitalInfo .contents .inr .hospital-info .addr {
    padding-top: 3rem;
    flex-direction: column;
  }
  #hospitalInfo .contents .inr .hospital-info .parking {
    padding-top: 0;
  }
  #hospitalInfo .contents .inr .hospital-info .time .label,
  #hospitalInfo .contents .inr .hospital-info .time .txt {
    font-size: 1.1rem;
  }
  #hospitalInfo .contents .map {
    height: 22rem;
  }
}

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

/* tab */
.tab {
  padding-top: 1rem;
  padding-bottom: 0.8rem;
  width: 100%;
  display: inline-flex;
  overflow-x: auto;
  white-space: nowrap;
}
.tab li a {
  position: relative;
  display: flex;
  padding: 0.625rem 1.5rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: -0.06rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.tab li a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: var(--pri2);
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition: transform 0.3s;
  transition-delay: 0s;
}
@media screen and (max-width: 767px) {
  .tab li a {
    padding: 0.2rem 1.2rem 0.2rem;
  }
}
.tab li.active a {
  color: var(--pri2);
}
.tab li.active a::after {
  transform: scaleX(1);
  transform-origin: 0 50%;
}
@media screen and (max-width: 767px) {
  .tab {
    width: 100%;
    overflow-x: scroll;
    justify-content: flex-start;
    padding: 0 1rem 0 0;
    border-radius: 0;
    overflow-x: scroll;
  }
  .tab li a {
    padding: 0.4rem 1rem;
    font-size: 1.2rem;
  }
}

.popup {
  display: none;
  width: 80%;
  height: 96%;
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 100%);
  z-index: 1000;
  box-sizing: border-box;
  transition: all 0.5s ease-in-out;
}
.popup.show {
  display: block;
  animation: slideUp 0.4s ease-out forwards;
}
.popup.hide {
  animation: slideDown 0.4s ease-in forwards;
}
.popup .popup-header {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  position: relative;
  height: 9rem;
  padding-top: 1rem;
  padding-left: 3rem;
  color: var(--white);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.10063rem;
  background-color: var(--pri1);
  background-image: url(/common/img/user/sub/popup_header.jpg);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover;
}
.popup .popup-header .close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: 3.4rem;
  height: 3.4rem;
  display: block;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  background: url(/common/img/user/icon/popup_close.svg) no-repeat center center;
  background-size: 1.5rem auto;
}
.popup .popup-header .close:hover {
  opacity: 0.5;
}
.popup .popup-header.narrow {
  height: 5rem;
  padding-top: 0;
}
.popup .popup-contents {
  height: 100%;
  padding: 0 0 10rem;
  background-color: var(--white);
  overflow-y: scroll;
  box-sizing: border-box;
  border: 1px solid #000;
  border-top: 0;
  box-sizing: border-box;
}
.popup .popup-contents.center {
  text-align: center;
}
.popup .popup-contents .inr {
  padding: 4rem 4rem 0;
}
@media screen and (max-width: 767px) {
  .popup .popup-contents .inr {
    padding: 2rem 1.2rem 0;
  }
}
.popup .subject-header {
  padding: 5rem 4rem;
  color: var(--pri3);
  background-color: #F9FCFF;
}
.popup .subject-header .title {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 148%;
  letter-spacing: -0.05625rem;
}
.popup .subject-header .desc {
  padding-top: 1.3rem;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.65;
  letter-spacing: -0.0375rem;
}
.popup .subject-header .desc b {
  font-weight: 600;
}
.popup .subject-header .desc.gap > p {
  padding-bottom: 1rem;
}
.popup .subject-header .desc .point {
  color: var(--pri1);
}
.popup .subject-header .word {
  padding: 2rem 2rem;
  border-radius: 0.4rem;
  border: 1px dashed #bacbdc;
}
.popup .subject-header .word .tit {
  padding-top: 0;
  padding-bottom: 0.5rem;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 148%;
  letter-spacing: -0.05625rem;
}
.popup .subject-header .word .desc {
  padding-top: 0;
  font-size: 1.3rem;
  line-height: 1.45;
}
.popup .subject-content {
  padding: 5rem 4rem;
  color: var(--pri3);
}
.popup .subject-content .top {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 6.25rem;
}
.popup .subject-content .top.center {
  align-items: center;
}
.popup .subject-content .top:nth-child(2) {
  padding-top: 2rem;
}
.popup .subject-content .top > p {
  position: sticky;
  top: 1.5rem;
}
.popup .subject-content .top > p img {
  width: 38.75rem;
  height: 33.75rem;
}
.popup .subject-content .top > p video {
  width: 38.75rem;
  height: auto;
}
.popup .subject-content .top > div {
  flex: 1;
}
.popup .subject-content .top .desc {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: -0.0375rem;
}
@media screen and (max-width: 767px) {
  .popup .subject-content .top .desc {
    font-size: 1.1rem;
  }
}
.popup .subject-content .top .symptoms .tit span {
  display: block;
  font-weight: 300;
  font-size: 1.2rem;
  padding-top: 1rem;
}
.popup .subject-content .top .symptoms .num {
  width: 8rem !important;
  padding: 0 !important;
}
.popup .subject-content .top .symptoms ul li .txt-label {
  line-height: 1.45;
}
.popup .subject-content .top .symptoms ul li .txt-label span {
  padding-left: 1.5rem;
  display: block;
  width: calc(100% - 8rem);
  font-size: 1.4rem;
  font-weight: 400;
}
.popup .subject-content .top .list-check li {
  width: 100%;
  min-height: 6rem;
  height: auto;
  min-height: 6rem;
  padding: 0.5rem 2rem 0.5rem 5rem;
}
.popup .subject-content .top .list-check li:nth-child(4n+2), .popup .subject-content .top .list-check li:nth-child(4n+3), .popup .subject-content .top .list-check li:nth-child(even) {
  background-color: var(--white);
}
.popup .subject-content .top .list-check li:nth-child(2n) {
  background-color: #F9FCFF;
}
.popup .subject-content .top .list-check.number li {
  padding: 0.5rem 2rem 0.5rem 3rem;
}
@media screen and (max-width: 767px) {
  .popup .subject-content .top .list-check.number li {
    padding: 0.5rem 2rem 0.5rem 1.2rem;
  }
}
.popup .subject-content .bottom {
  padding-top: 2rem;
}
.popup .subject-content .bottom .desc {
  line-height: 1.65;
  font-size: 1.3rem;
  font-weight: 300;
}
.popup .subject-content .bottom .desc b {
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .popup .subject-content .bottom .desc {
    font-size: 1.1rem;
  }
}
.popup .subject-content .bottom .point {
  font-weight: 600;
  color: var(--pri1);
}
.popup .subject-content .bottom .b-gap {
  padding-bottom: 3rem;
}
.popup .subject-content .bottom .b-dash {
  border-top: 1px dashed #dfdfdf;
}
.popup .subject-content .advantage {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  padding-bottom: 4rem;
}
.popup .subject-content .advantage.four li {
  width: calc(25% - 2rem);
}
.popup .subject-content .advantage.three li {
  width: calc(33.3333333333% - 2rem);
}
.popup .subject-content .advantage.two {
  padding-bottom: 0;
}
.popup .subject-content .advantage.two li {
  width: calc(50% - 2rem);
}
.popup .subject-content .advantage li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3.2rem 1rem 3rem;
  width: calc(20% - 2rem);
  text-align: center;
  border-radius: 0.625rem;
  background: #FBFBFB;
}
.popup .subject-content .advantage li img {
  width: auto;
  height: 3.2rem;
  margin-bottom: 2rem;
}
.popup .subject-content .advantage li .txt {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.42;
  letter-spacing: -0.0375rem;
  color: var(--pri3);
}
.popup .subject-content .advantage li .txt span {
  display: block;
}
.popup .subject-content .advantage li .txt .point {
  font-weight: 600;
  color: var(--pri1);
}
.popup .tit {
  padding-top: 2rem;
  padding-bottom: 1.5rem;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: -0.05625rem;
}
.popup .tit.pt5 {
  padding-top: 5rem;
}
.popup .list-bullet {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}
.popup .list-bullet li {
  display: flex;
  gap: 0.8rem;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: -0.0375rem;
}
.popup .list-bullet li::before {
  content: "·";
  display: flex;
  font-weight: 800;
}
.popup .list-check {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #202020;
  border-bottom: 1px solid #202020;
}
.popup .list-check li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 50%;
  min-height: 8.6rem;
  padding-left: 4.4rem;
  padding-right: 2.5rem;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.0375rem;
  background: url(/common/img/user/icon/list-check.svg) no-repeat 2rem center;
  background-size: 1.4rem auto;
  border-bottom: 1px solid #BFD1E3;
}
.popup .list-check li:nth-child(4n+2), .popup .list-check li:nth-child(4n+3) {
  background-color: #F9FCFF;
}
.popup .list-check.column {
  flex-direction: column;
}
.popup .list-check.column li {
  width: 100%;
}
.popup .list-check.column li:nth-child(4n+2), .popup .list-check.column li:nth-child(4n+3) {
  background-color: #fff;
}
.popup .list-check.column li:nth-child(even) {
  background-color: #F9FCFF;
}
.popup .list-check.number {
  counter-reset: item;
}
.popup .list-check.number li {
  counter-increment: item;
  gap: 1.44rem;
  width: 100%;
  background-image: none;
  padding: 0 2rem 0 3rem;
}
.popup .list-check.number li b {
  display: flex;
  min-width: 4rem;
  font-weight: 600;
}
.popup .list-check.number li::before {
  min-width: 2rem;
  content: counter(item);
  display: inline-block;
  color: #C3C3C3;
  font-size: 1.375rem;
  font-weight: 400;
}
.popup .list-check.number li:nth-child(4n+2), .popup .list-check.number li:nth-child(4n+3) {
  background-color: #fff;
}
.popup .list-check.number li:nth-child(even) {
  background-color: #F9FCFF;
}
.popup .list-check.h5 {
  margin-top: 2rem;
}
.popup .list-check.h5 li {
  height: 5rem;
}
.popup .list-img {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #202020;
  border-bottom: 1px solid #202020;
}
.popup .list-img li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.0375rem;
  border-bottom: 1px solid #BFD1E3;
}
.popup .list-img li:nth-child(even) {
  background-color: #F9FCFF;
}
.popup .list-img li .label {
  width: 20%;
}
.popup .list-img li .label img {
  width: 100%;
  height: 10rem;
}
.popup .list-img li .label span {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.3rem 0;
  color: var(--white);
  background-color: var(--pri1-6);
}
.popup .list-img li .txt {
  width: 80%;
  display: inline-block;
  padding: 2rem 3rem;
  line-height: 1.65;
  font-size: 1.3rem;
  font-weight: 300;
}
.popup .list-img li .txt b {
  color: var(--pri1);
  font-weight: 600;
}
.popup .list-img li .txt .txt-label {
  display: inline-block;
  padding-bottom: 1rem;
  font-size: 1.6rem;
  color: var(--pri1-6);
  font-weight: 600;
}
.popup .list-img.number .txt {
  width: 100%;
}
.popup .list-img.number .txt .txt-label {
  display: flex;
  align-items: center;
}
.popup .list-img.number .txt .txt-label .num {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-right: 0.8rem;
  width: 2rem;
  height: 2rem;
  color: var(--pri1);
  background-color: var(--pri1-2);
  border-radius: 6.25rem;
}
.popup .list-img.number .txt .txt-label .num.step {
  width: 5rem;
}
@media screen and (max-width: 767px) {
  .popup .list-img.number .txt {
    padding: 1.5rem 1rem;
  }
}
.popup .list-process {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  border-top: 1px solid var(--pri3);
}
.popup .list-process li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 50%;
  padding: 2.5rem 3.5rem;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.0375rem;
  border-bottom: 1px solid #BFD1E3;
}
.popup .list-process li.last {
  width: 100%;
  align-items: center;
}
.popup .list-process li.last::after {
  display: none;
}
.popup .list-process li:nth-child(4n+2), .popup .list-process li:nth-child(4n+3) {
  background-color: #F9FCFF;
}
.popup .list-process li:nth-child(4n+2) .label, .popup .list-process li:nth-child(4n+3) .label {
  border-color: transparent;
}
.popup .list-process li:nth-child(2n)::after {
  display: none;
}
.popup .list-process li:nth-child(2n)::after {
  display: none;
}
.popup .list-process li::after {
  position: absolute;
  right: -1.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  content: "";
  width: 2.875rem;
  height: 2.875rem;
  border-radius: 2.875rem;
  background: var(--pri1) url(/common/img/user/sub/list_process_arrow.svg) no-repeat center center;
  background-size: 1.3rem auto;
}
@media screen and (max-width: 767px) {
  .popup .list-process li::after {
    display: none;
  }
}
.popup .list-process li .label {
  display: inline-flex;
  padding: 0.125rem 1.875rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  border-radius: 6.25rem;
  background: var(--white);
  color: var(--pri1-5);
  font-size: 1.375rem;
  font-weight: 500;
  border: 1px solid #D5DADE;
}
.popup .list-process li p {
  padding-top: 1.6rem;
  line-height: 1.45;
}
@media screen and (max-width: 767px) {
  .popup .list-process li {
    width: 100%;
    padding: 1.5rem 1.5rem;
    font-size: 1.2rem;
  }
  .popup .list-process li.last {
    align-items: flex-start;
  }
  .popup .list-process li .label {
    font-size: 1rem;
  }
  .popup .list-process li .number ::after {
    display: none;
  }
  .popup .list-process li:nth-child(4n+2), .popup .list-process li:nth-child(4n+3) {
    background: var(--white);
  }
  .popup .list-process li:nth-child(2n) {
    background-color: #F9FCFF;
  }
  .popup .list-process li:nth-child(4n+2) .label, .popup .list-process li:nth-child(4n+3) .label {
    border-color: #D5DADE;
  }
}
.popup .list-image {
  display: flex;
  gap: 1rem;
  padding-bottom: 3rem;
}
@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: 1500px) {
  .popup {
    width: 95%;
    overflow: hidden;
  }
  .popup .popup-header {
    padding-left: 2rem;
  }
  .popup .subject-header {
    padding: 4rem 3rem;
  }
  .popup .subject-content .top {
    gap: 3.5rem;
  }
  .popup .subject-content .top > p img {
    width: 30rem;
    height: auto;
  }
  .popup .subject-content .top > p video {
    width: 30rem;
    height: auto;
  }
  .popup .subject-content .advantage {
    gap: 1rem;
    align-items: flex-start;
  }
  .popup .subject-content .advantage li {
    width: calc(20% - 1rem);
    padding: 2rem 0.5rem 2rem;
  }
  .popup .subject-content .advantage li .txt {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 1023px) {
  .popup .tit {
    font-size: 1.6rem;
  }
  .popup .popup-header {
    height: 8rem;
  }
  .popup .tab li a {
    padding: 0.4rem 1.2rem;
  }
  .popup .subject-header {
    padding: 3rem 2rem;
  }
  .popup .subject-header .desc {
    font-size: 1.2rem;
  }
  .popup .subject-content {
    padding: 3rem 2rem;
  }
  .popup .subject-content .top {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }
  .popup .subject-content .top > p {
    position: relative;
    top: initial;
  }
  .popup .subject-content .top > div {
    flex: initial;
    width: 100%;
  }
  .popup .list-bullet {
    flex-direction: row;
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .popup .list-bullet li {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: -0.0375rem;
    width: 46%;
    line-height: 1.45;
  }
  .popup .list-check li {
    min-height: 6rem;
    height: auto;
    padding: 1rem 2.5rem 1rem 5rem;
    line-height: 1.45;
    font-size: 1.2rem;
    background-size: 1.6rem auto;
    background-position: 2rem center;
  }
  .popup .list-img li .txt {
    font-size: 1.2rem;
  }
  .popup .list-img li .txt .txt-label {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .popup {
    width: 96%;
  }
  .popup .popup-header {
    gap: 0.3em;
    height: 6.5rem;
    padding-top: 0;
  }
  .popup .popup-header .title {
    font-size: 1.7rem;
  }
  .popup .popup-header .title > p {
    position: relative;
    left: initial;
  }
  .popup .popup-header .close {
    top: 0.5rem;
    width: 2.4rem;
    height: 2.4rem;
  }
  .popup .subject-content {
    padding: 3rem 1.2rem;
    justify-content: center;
    box-sizing: border-box;
  }
  .popup .subject-content .advantage {
    justify-content: center;
    gap: 0.5rem;
  }
  .popup .subject-content .advantage li {
    width: calc(33.3333333333% - 1rem);
    min-height: 11rem;
    padding: 1.2rem 0.1rem 2rem;
  }
  .popup .subject-content .advantage li img {
    height: 2rem;
    margin-bottom: 1rem;
  }
  .popup .subject-content .advantage li .txt {
    font-size: 1.1rem;
    line-height: 1.45;
  }
  .popup .subject-content .advantage.three li {
    width: calc(33.3333333333% - 1rem);
  }
  .popup .subject-content .advantage.four li {
    width: calc(50% - 1rem);
  }
  .popup .subject-content .top > p video {
    width: 100%;
  }
  .popup .list-bullet li {
    width: 100%;
  }
  .popup .list-check li {
    width: 100%;
    padding: 0.4rem 1rem 0.4rem 3.2rem;
    background-size: 1.2rem auto;
    background-position: 1.3rem center;
  }
  .popup .list-check li:nth-child(4n+2), .popup .list-check li:nth-child(4n+3) {
    background-color: var(--white);
  }
  .popup .list-check li:nth-child(2n) {
    background-color: #F9FCFF;
  }
}

table.style01 {
  margin-top: 3rem;
  table-layout: fixed;
  min-width: 100%;
  border-collapse: collapse;
}
table.style01 thead {
  border-top: 1px solid #363636;
  color: var(--white);
  background-color: var(--pri1-6);
}
table.style01 thead tr th {
  text-align: center;
  padding: 1rem 0.2rem;
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1.15;
  border-bottom: 1px solid #363636;
  border-right: 1px solid #555555;
}
table.style01 thead tr th.last {
  border-right: 0;
}
table.style01 thead .section {
  color: var(--white);
  background-color: var(--pri1-5);
}
table.style01 tbody tr {
  position: relative;
  transition: background-color 0.3s;
}
table.style01 tbody tr th {
  background-color: var(--pri1-3);
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1.15;
  border-bottom: 1px dashed #dfdfdf;
}
table.style01 tbody tr td {
  text-align: center;
  padding: 1rem 0.6rem;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.45;
  letter-spacing: 0;
  word-break: break-all;
  border-right: 1px dashed #dfdfdf;
  border-bottom: 1px dashed #dfdfdf;
  transition: all 0.3s;
}
table.style01 tbody tr td b {
  font-weight: 700;
  color: var(--pri1);
}
table.style01 .section {
  color: var(--pri1);
  background-color: #deeeff;
}
table.style02 {
  margin-top: 3rem;
  table-layout: fixed;
  min-width: 100%;
  border-collapse: collapse;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
table.style02 thead {
  border-top: 1px solid #363636;
  color: var(--white);
  background-color: var(--pri1-6);
}
table.style02 thead tr th {
  text-align: center;
  padding: 1rem 0.2rem;
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1.15;
  border-bottom: 1px solid #363636;
  border-right: 1px solid #555555;
}
table.style02 thead tr th.last {
  border-right: 0;
}
table.style02 thead .section {
  color: var(--white);
  background-color: var(--pri1-5);
}
table.style02 tbody tr {
  position: relative;
  transition: background-color 0.3s;
}
table.style02 tbody tr th {
  color: var(--white);
  background-color: var(--pri1-6);
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1.15;
  border-bottom: 1px solid #1b375a;
}
table.style02 tbody tr td {
  text-align: center;
  padding: 1rem 0.6rem;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.45;
  letter-spacing: 0;
  word-break: break-all;
  border-right: 1px dashed #dfdfdf;
  border-bottom: 1px dashed #dfdfdf;
  transition: all 0.3s;
}
table.style02 tbody tr td b {
  font-weight: 700;
  color: var(--pri1);
}
table.style02 .section {
  color: var(--pri1);
  background-color: #deeeff;
}
table.pay {
  table-layout: fixed;
  width: -moz-max-content;
  width: max-content;
  min-width: 100%;
  border-collapse: collapse;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
table.pay thead {
  background-color: var(--pri1-6);
}
table.pay thead tr th {
  text-align: center;
  padding: 0.6rem 0.1rem;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.15;
  color: var(--white);
  border-bottom: 1px solid #363636;
  border-right: 1px solid #555555;
}
table.pay thead tr th.last {
  border-right: 0;
  background-color: var(--pri1);
}
table.pay tbody tr {
  position: relative;
  transition: background-color 0.3s;
}
table.pay tbody tr.even {
  background-color: #f4fdff;
}
table.pay tbody tr.border-top {
  border-top: 1px solid #b4b4b4;
}
table.pay tbody tr.border-bottom {
  border-bottom: 1px solid #b4b4b4;
}
table.pay tbody tr td {
  text-align: center;
  padding: 0.6rem;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.45;
  letter-spacing: 0;
  word-break: break-all;
  border-right: 1px dashed #dfdfdf;
  border-bottom: 1px dashed #dfdfdf;
  transition: all 0.3s;
}
table.pay tbody tr td b {
  font-weight: 700;
  color: var(--pri1);
}
table.pay tbody tr .point2 {
  color: #ed7c0b;
  background-color: #fff6ed;
}
table.pay tbody tr .date {
  background-color: #f6f9fe;
}
table.pay tbody tr .point {
  color: var(--pri1);
}
table.pay tbody tr .xmark {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background: url(/common/img/user/icon/xmark.svg) no-repeat center center;
  background-size: 50% auto;
}
table.pay tbody tr .omark {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background: url(/common/img/user/icon/omark.svg) no-repeat center center;
  background-size: 50% auto;
}

#board {
  padding-top: 20rem !important;
  margin-bottom: 3rem !important;
}
#board .title {
  font-weight: 600;
  font-size: 2.2rem;
  text-align: center;
  padding-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  #board {
    padding-top: 6rem !important;
  }
}

.community {
  padding-top: 12rem !important;
}

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