@charset "UTF-8";
/*base*/
@import url("https://fonts.googleapis.com/css2?family=Gowun+Batang&display=swap");
@import url("https://cdn.jsdelivr.net/gh/spoqa/spoqa-han-sans@2.1.2/css/SpoqaHanSansNeo.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;
  overflow-x: hidden;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE, Edge */
}

body::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

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

* {
  box-sizing: border-box;
}

li, a {
  list-style: none;
}

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

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

input {
  caret-color: black;
}

textarea {
  caret-color: black;
}

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

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

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

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

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

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

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

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

html {
  scroll-behavior: smooth;
}

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

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

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

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

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

    }
    @include mobile{

    }
*/
/*모바일에서 안보임*/
.hidden-mo {
  display: block !important;
}
@media screen and (max-width: 1100px) {
  .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: 1100px) {
  .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: 1100px) {
  .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: 1100px) {
  .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: 1100px) {
  .hidden-tab-mo {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .hidden-tab-mo {
    display: none !important;
  }
}

/*pc+mo에서 안보임*/
.hidden-pc-mo {
  display: none !important;
}
@media screen and (max-width: 1100px) {
  .hidden-pc-mo {
    display: block !important;
  }
}
@media screen and (max-width: 767px) {
  .hidden-pc-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: #00929E;
  --pri1-1: ;
  --pri1-2: ;
  --pri1-3: ;
  --pri1-4: ;
  --pri1-5: ;
  --pri1-6: ;
  --pri1-7: ;
  --pri1-8: ;
  --pri1-9: ;
  --pri1-10: ;
  /*pri 2*/
  --pri2: #0D5258;
  --pri2-1: ;
  --pri2-2: ;
  --pri2-3: ;
  --pri2-4: ;
  --pri2-5: ;
  --pri2-6: ;
  --pri2-7: ;
  --pri2-8: ;
  --pri2-9: ;
  --pri2-10: ;
  /*pri 3*/
  --pri3: #A38F68;
  --pri3-1: ;
  --pri3-2: ;
  --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: #F5FAFA;
  --sub1-1: #E2EFEE;
  --sub1-2: #8CB5B5;
  --sub1-3: #137B84;
  --sub1-4: #00929E;
  --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: #FEFBF5;
  --sub3-1: #F8F4EF;
  --sub3-2: ;
  --sub3-3: ;
  --sub3-4: ;
  --sub3-5: ;
  --sub3-6: ;
  --sub3-7: ;
  --sub3-8: ;
  --sub3-9: ;
  --sub3-10: ;
  /*second*/
  --second1: ;
  --second2: ;
  --second3: ;
  --second4: ;
  --second5: ;
  --second6: ;
  --second7: ;
  --second8: ;
  --second9: ;
  --second10: ;
  --second11: ;
  /*sns*/
  --kakao: #ffbb00;
  --naver: #58D30C;
  --daum: #618FFC;
  --youtube: #FD0532;
}

:root {
  --spoqa: "Spoqa Han Sans Neo", "sans-serif";
  --gowun: "Gowun Batang", serif;
}

/* 폰트셋팅*/
html, body {
  font-size: 16px;
}

h1 {
  font-family: var(--gowun);
  font-size: 4.375rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.21875rem;
}
@media screen and (max-width: 1100px) {
  h1 {
    font-family: var(--gowun);
  }
}
@media screen and (max-width: 767px) {
  h1 {
    font-family: var(--gowun);
  }
}
@media screen and (max-width: 1100px) {
  h1 {
    font-size: 3.75rem;
  }
}
@media screen and (max-width: 767px) {
  h1 {
    font-size: 2.5rem;
  }
}

h2 {
  font-family: var(--gowun);
  font-size: 3.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.1875rem;
}
@media screen and (max-width: 1100px) {
  h2 {
    font-family: var(--gowun);
  }
}
@media screen and (max-width: 767px) {
  h2 {
    font-family: var(--gowun);
  }
}
@media screen and (max-width: 1100px) {
  h2 {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  h2 {
    font-size: 1.875rem;
  }
}

h3 {
  font-family: var(--gowun);
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.125rem;
}
@media screen and (max-width: 1100px) {
  h3 {
    font-family: var(--gowun);
  }
}
@media screen and (max-width: 767px) {
  h3 {
    font-family: var(--gowun);
  }
}
@media screen and (max-width: 1100px) {
  h3 {
    font-size: 1.875rem;
  }
}
@media screen and (max-width: 767px) {
  h3 {
    font-size: 1.6875rem;
  }
}

h4 {
  font-family: var(--gowun);
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.09375rem;
}
@media screen and (max-width: 1100px) {
  h4 {
    font-family: var(--gowun);
  }
}
@media screen and (max-width: 767px) {
  h4 {
    font-family: var(--gowun);
  }
}
@media screen and (max-width: 1100px) {
  h4 {
    font-size: 1.4375rem;
  }
}
@media screen and (max-width: 767px) {
  h4 {
    font-size: 1.375rem;
  }
}

h5 {
  font-family: var(--gowun);
  font-size: 1.5625rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.07813rem;
}
@media screen and (max-width: 1100px) {
  h5 {
    font-family: var(--gowun);
  }
}
@media screen and (max-width: 767px) {
  h5 {
    font-family: var(--gowun);
  }
}
@media screen and (max-width: 1100px) {
  h5 {
    font-size: 1.4375rem;
  }
}
@media screen and (max-width: 767px) {
  h5 {
    font-size: 1.3125rem;
  }
}

h6 {
  font-family: var(--gowun);
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.0625rem;
}
@media screen and (max-width: 1100px) {
  h6 {
    font-family: var(--gowun);
  }
}
@media screen and (max-width: 767px) {
  h6 {
    font-family: var(--gowun);
  }
}
@media screen and (max-width: 1100px) {
  h6 {
    font-size: 1.1875rem;
  }
}
@media screen and (max-width: 767px) {
  h6 {
    font-size: 1.0625rem;
  }
}

div, a, span, p, ul, ol, li, dd, dt, dl, table, button, select, input {
  font-family: var(--spoqa);
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 2.475rem */
  letter-spacing: -0.125rem;
}
@media screen and (max-width: 1100px) {
  div, a, span, p, ul, ol, li, dd, dt, dl, table, button, select, input {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  div, a, span, p, ul, ol, li, dd, dt, dl, table, button, select, input {
    font-size: 1rem;
  }
}

b {
  font-weight: 700;
}

.small {
  font-family: var(--spoqa);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 2.025rem */
  letter-spacing: -0.125rem;
}
@media screen and (max-width: 767px) {
  .small {
    font-size: 1rem;
  }
}

/*삭제금지*/
.btn {
  color: white;
  border: 1px solid white;
  padding: 10px 50px;
  transition: all 0.5s ease;
}
.btn:hover {
  background-color: white;
  color: var(--pri2);
}

/*common*/
/*footer*/
footer {
  width: 100%;
  padding-bottom: 6.25rem;
  padding-top: 6.25rem;
  background-color: var(--pri2);
}
footer .container {
  max-width: 1400px;
  width: 90%;
  margin: 0 auto;
}
footer .container .content {
  display: flex;
  margin-bottom: 50px;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 30px;
}
footer .container .content ul li a {
  color: white;
  font-family: var(--spoqa);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 2.025rem */
  letter-spacing: -0.125rem;
}
@media screen and (max-width: 767px) {
  footer .container .content ul li a {
    font-size: 0.9375rem;
  }
}
footer .container .content .list01 li {
  margin-bottom: 10px;
  text-align: left;
}
footer .container .content .list01 li a {
  margin-left: 20px;
}
footer .container .content .list01 li a:first-of-type {
  margin-left: 0px;
}
footer .container .content .list02 {
  flex-basis: 20%;
}
footer .container .content .list02 li {
  text-align: left;
}
footer .container .content .list02 li a {
  width: 100%;
  border-bottom: 1px solid var(--white-a20);
  color: var(--white-a65);
  padding: 10px;
  display: block;
}
footer .container .content .list02 li a:hover {
  color: rgb(255, 255, 255);
  transition: all 0.5s ease;
}
@media screen and (max-width: 1100px) {
  footer .container .content {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }
  footer .container .content .list01 li {
    margin-bottom: 0px;
  }
  footer .container .content .list01 a {
    width: 100%;
    display: block;
    margin-left: 0px !important;
    text-align: center;
    margin-bottom: 5px;
  }
  footer .container .content .list02 {
    flex-basis: auto;
    display: flex;
    gap: 20px;
  }
}
footer .container > p {
  font-family: var(--spoqa);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 2.025rem */
  letter-spacing: -0.125rem;
  text-align: center;
  color: var(--white-a40);
}
@media screen and (max-width: 767px) {
  footer .container > p {
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 1100px) {
  footer {
    padding-bottom: 12.5rem;
  }
}

header {
  position: fixed;
  z-index: 100;
  top: 0;
  width: 100%;
  background-color: white;
  border-bottom: 1px solid var(--black-a10);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo {
  margin-left: 2%;
  width: 160px;
  padding: 20px 0px;
  transition: width 0.5s ease;
}
header .logo img {
  width: 100%;
}
@media screen and (max-width: 1100px) {
  header .logo {
    width: 150px;
  }
  header .logo img {
    width: auto;
  }
}
header .logo.svg_on {
  width: 120px;
}
@media screen and (max-width: 1100px) {
  header .logo.svg_on {
    width: 150px;
  }
}
header nav {
  margin-right: 2%;
  width: 60%;
}
header nav ul {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
header nav ul li {
  flex-basis: 14.2857%;
}
header nav ul li a {
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  letter-spacing: -0.125rem;
  display: block;
  padding: 20px 20px;
  transition: padding 0.3s ease;
  text-align: center;
  white-space: nowrap;
}
header nav ul li a:hover {
  opacity: 0.5;
}
header nav ul li a.active {
  color: var(--pri2);
  position: relative;
}
header nav ul li a.active:after {
  position: absolute;
  bottom: -12%;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--pri2);
}
@media screen and (max-width: 767px) {
  header nav ul li a.active:after {
    display: none;
  }
}
header nav ul li:nth-child(2) a.active:after,
header nav ul li:nth-child(3) a.active:after {
  border-top: 5px solid var(--white);
}
@media (max-width: 1210px) {
  header nav ul li a {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  header nav {
    right: -200%;
    transition: right 0.2s ease-in;
  }
}
header nav.mobile {
  position: fixed;
  top: 83px;
  right: -10px;
  width: 80%;
  height: 100%;
  background-color: var(--pri1);
  color: white;
}
header nav.mobile ul {
  display: block;
  margin-top: 30px;
}
header nav.mobile ul li {
  border-bottom: 1px solid var(--white-a25);
  width: 80%;
  margin: 0 auto;
}
header .toggle-button {
  display: none;
}
@media screen and (max-width: 1100px) {
  header .toggle-button {
    position: relative;
    display: block;
    width: 70px;
    height: 70px;
    cursor: pointer;
    margin-right: 1%;
    overflow: hidden;
  }
  header .toggle-button .line {
    width: 54px;
    height: 54px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
  }
  header .toggle-button .line span {
    position: absolute;
    width: 100%;
    height: 2px;
    display: block;
    background: var(--pri1);
    left: 0;
    transition: all 0.2s linear;
  }
  header .toggle-button .line span:nth-child(1) {
    top: 11px;
    width: 80%;
  }
  header .toggle-button .line span:nth-child(2) {
    top: 25px;
    width: 70%;
  }
  header .toggle-button .line span:nth-child(3) {
    width: 100%;
    bottom: 12px;
  }
}
header .toggle-button.close .line span:nth-child(1) {
  top: 25px;
  transform: rotate(135deg);
  width: 100%;
}
header .toggle-button.close .line span:nth-child(2) {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  right: -60px;
}
header .toggle-button.close .line span:nth-child(3) {
  top: 25px;
  transform: rotate(-135deg);
}
@media screen and (max-width: 1100px) {
  header nav ul {
    display: none;
  }
}

.quick-call {
  position: fixed;
  bottom: 4%;
  left: 2%;
  background-color: var(--pri1);
  padding: 15px 50px;
  border-radius: 999px;
  color: white;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 90;
}
@media screen and (max-width: 767px) {
  .quick-call {
    padding: 20px;
    left: 5%;
  }
  .quick-call p {
    display: none;
  }
}

.quick-online {
  position: fixed;
  bottom: 4%;
  right: 2%;
  background-color: var(--pri3);
  padding: 15px 50px;
  border-radius: 999px;
  color: white;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 90;
  animation: float 2s ease-in-out infinite;
  cursor: pointer;
  transition: right 0.5s ease-in-out;
}
@media screen and (max-width: 767px) {
  .quick-online {
    right: 5%;
  }
}

.quick-online.on {
  right: -100%;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}
.online-form {
  position: fixed;
  bottom: 5%;
  right: -100%;
  background-color: var(--sub3-1);
  border-radius: 30px;
  padding: 50px;
  z-index: 91;
  transition: right 0.5s ease-in-out;
}
.online-form p,
.online-form form select,
.online-form form input[type=text],
.online-form form input[type=tel],
.online-form form input[type=submit],
.online-form form label[for=online-check],
.online-form form label[for=online-check] a,
.online-form form label span {
  font-family: var(--spoqa);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 2.025rem */
  letter-spacing: -0.125rem;
}
@media screen and (max-width: 767px) {
  .online-form p,
  .online-form form select,
  .online-form form input[type=text],
  .online-form form input[type=tel],
  .online-form form input[type=submit],
  .online-form form label[for=online-check],
  .online-form form label[for=online-check] a,
  .online-form form label span {
    font-size: 0.9375rem;
  }
}
.online-form p {
  margin-bottom: 20px;
  color: var(--pri3);
}
.online-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.online-form form select,
.online-form form input[type=text],
.online-form form input[type=tel],
.online-form form input[type=submit] {
  border: 0;
  background-color: var(--white);
}
.online-form form select,
.online-form form input[type=text],
.online-form form input[type=tel] {
  height: 50px;
  padding: 0px 20px;
}
.online-form form select {
  color: var(--pri3);
}
.online-form form label[for=online-check] {
  cursor: pointer;
  position: relative;
  color: var(--black-a60);
}
.online-form form label[for=online-check] input[type=checkbox] {
  position: absolute;
  left: -9999px;
}
.online-form form label[for=online-check] input[type=checkbox]:checked + span,
.online-form form label[for=online-check] input[type=checkbox]:checked + span i {
  color: var(--pri3);
}
.online-form form input[type=submit] {
  background-color: var(--pri3);
  color: white;
  cursor: pointer;
  border-radius: 10px;
  padding: 10px;
  margin-top: 5px;
  margin-bottom: 15px;
}
.online-form .close {
  width: 50px;
  height: 50px;
  margin: 0 auto;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .online-form {
    width: 90%;
    font-size: 15px !important;
  }
  .online-form p, .online-form select, .online-form input, .online-form label, .online-form a {
    font-size: 15px !important;
  }
}

.online-form.on {
  right: 2%;
}
@media screen and (max-width: 767px) {
  .online-form.on {
    right: 5%;
  }
}

/*pages*/
:root {
  --sectd: 250px;
}

.point-visual {
  display: block;
  position: absolute;
  top: 28px;
  left: 0;
  background-color: var(--sub1-3);
  width: 100%;
  height: 30px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .point-visual {
    top: 10px;
  }
}

#mainslide {
  width: 100%;
  height: 100vh;
}
#mainslide .swiper {
  width: 100%;
  height: 100%;
}
#mainslide .swiper .title {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 50;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  width: 80%;
}
#mainslide .swiper .title span {
  display: block;
  overflow: hidden;
  transition-delay: 0.3s;
}
#mainslide .swiper .title span p {
  color: var(--white-a60);
}
#mainslide .swiper .title span h2 {
  margin-bottom: 20px;
}
#mainslide .swiper .title span p, #mainslide .swiper .title span h2 {
  transition-property: transform;
  transition-duration: 0.6s;
  transform: translateY(-500%);
  display: block;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  display: block;
  transition-delay: inherit;
  opacity: 0;
}
#mainslide .swiper img {
  width: 100%;
  height: 100%;
  transform: scale(1.08);
}
#mainslide .swiper-slide-active .title span p, #mainslide .swiper-slide-active .title span h2 {
  transform: translateY(0);
  opacity: 1;
}
#mainslide .swiper-slide-active .title span h2 {
  transition-delay: 0.3s;
}
#mainslide .swiper-slide-active .title span p {
  transition-delay: 0.5s;
}
#mainslide .swiper-slide-active img {
  transform: scale(1);
  transition: transform 5s ease;
  background-position: center center;
}
#mainslide .swiper-button-next,
#mainslide .swiper-button-prev {
  width: 100px;
  height: 100px;
}
@media screen and (max-width: 767px) {
  #mainslide .swiper-button-next,
  #mainslide .swiper-button-prev {
    display: none;
  }
}
#mainslide .swiper-button-prev {
  left: 3%;
}
#mainslide .swiper-button-prev:after {
  content: url("/common/img/user/icon/main-arrow-prev.svg");
}
#mainslide .swiper-button-next {
  right: 3%;
}
#mainslide .swiper-button-next:after {
  content: url("/common/img/user/icon/main-arrow-next.svg");
}

#info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  align-items: stretch;
  gap: 15px;
  max-width: 1500px;
  width: 90%;
  margin: 0 auto;
  padding-top: var(--sectd);
  padding-bottom: 15px;
}
#info .doctor {
  background-color: var(--sub1);
  grid-column: 1/3;
  grid-row: 1/2;
  position: relative;
  overflow: hidden;
}
#info .doctor .txt-wrap {
  margin-top: 70px;
  margin-left: 70px;
  padding-bottom: 70px;
}
#info .doctor .txt-wrap p {
  color: var(--sub1-2);
  margin-bottom: 37px;
  font-weight: 700;
}
#info .doctor .txt-wrap .name {
  display: flex;
  gap: 15px;
  margin-bottom: 54px;
  align-items: center;
}
#info .doctor .txt-wrap .name p {
  margin-bottom: 0px;
  color: black;
  font-weight: 400;
}
#info .doctor .txt-wrap h5 {
  color: var(--pri2);
}
#info .doctor .txt-wrap .doctor-profile {
  height: 500px;
  overflow: scroll;
  width: 540px;
  margin-top: 50px;
  background-color: white;
  padding: 42px;
}
#info .doctor .txt-wrap .doctor-profile ul {
  margin-bottom: 30px;
}
#info .doctor .txt-wrap .doctor-profile ul h6 {
  color: var(--pri2);
  margin-bottom: 10px;
}
#info .doctor .txt-wrap .doctor-profile ul:last-of-type {
  margin-bottom: 0px;
}
#info .doctor .txt-wrap .doctor-profile ul li {
  font-family: var(--spoqa);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 2.025rem */
  letter-spacing: -0.125rem;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  #info .doctor .txt-wrap .doctor-profile ul li {
    font-size: 0.9375rem;
  }
}
#info .doctor .txt-wrap .doctor-profile ul li:before {
  content: "";
  width: 2px;
  height: 2px;
  display: inline-block;
  background-color: var(--pri1);
  border-radius: 5px;
  margin-top: 14px;
}
#info .doctor img {
  position: absolute;
  top: 0%;
  right: -2%;
  z-index: 10;
  height: 100%;
}
#info .doctor button {
  position: absolute;
  bottom: 0%;
  left: 0%;
  font-family: var(--spoqa);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 2.025rem */
  letter-spacing: -0.125rem;
  padding: 10px 55px;
  background-color: var(--pri1);
  color: white;
  z-index: 20;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  #info .doctor button {
    font-size: 0.9375rem;
  }
}
#info .time {
  grid-column: 1/2;
  grid-row: 2/3;
  background-color: var(--sub3);
}
#info .time .txt-wrap {
  margin-top: 70px;
  margin-left: 70px;
}
#info .time .txt-wrap p {
  color: var(--pri3);
  margin-bottom: 30px;
  font-weight: 700;
}
#info .time .txt-wrap ul li {
  display: flex;
  gap: 30px;
  color: var(--black-a60);
}
#info .time .txt-wrap ul li div:nth-child(1) {
  display: flex;
  justify-content: space-between;
  width: 150px;
}
#info .time .txt-wrap ul li div:nth-child(1) span {
  display: block;
}
#info .time .txt-wrap ul li div:nth-child(2) {
  letter-spacing: 0rem;
}
#info .address {
  grid-column: 2/3;
  grid-row: 2/3;
  border: 1px solid var(--black-a10);
  position: relative;
  background-color: var(--pri3);
  padding-top: 70px;
  padding-left: 70px;
  padding-bottom: 70px;
  color: white;
}
#info .address > div {
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
}
#info .address > div span {
  font-weight: 700;
}
#info .address > div:last-of-type {
  margin-bottom: 0px;
}
@media (width <= 1500px) {
  #info {
    grid-template-columns: 1fr !important;
  }
  #info .doctor {
    grid-column: 1/3;
    grid-row: 1/2;
    width: auto;
    height: auto;
  }
  #info .doctor .txt-wrap h5 br {
    display: none;
  }
  #info .doctor img {
    top: 6%;
    right: -10%;
    width: 50%;
  }
  #info .time {
    grid-column: 1/3;
    grid-row: 2/3;
    height: auto;
    padding-bottom: 70px;
  }
  #info .address {
    grid-column: 1/3;
    grid-row: 3/4;
    height: auto;
  }
  #info .address .txt-wrap {
    height: auto;
    padding-bottom: 70px;
  }
}
@media screen and (max-width: 1100px) {
  #info .doctor .txt-wrap {
    width: 80%;
    margin: 0 auto;
    padding: 50px 0px;
    z-index: 11;
    position: relative;
  }
  #info .doctor .txt-wrap .doctor-profile {
    width: 100%;
    padding: 30px;
  }
  #info .doctor img {
    position: relative;
    height: auto;
    top: 0;
    left: 0;
    right: 0;
    width: auto;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  #info .time {
    padding-bottom: 0px;
  }
  #info .time .txt-wrap {
    margin: 50px;
  }
  #info .time .txt-wrap ul li {
    gap: 5px;
    flex-direction: column;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--black-a25);
  }
  #info .time .txt-wrap ul li div:nth-child(1) {
    justify-content: flex-start;
    gap: 20px;
    width: auto;
  }
  #info .time .txt-wrap ul li:last-of-type {
    margin-bottom: 0px;
    border-bottom: 0px;
    padding-bottom: 0px;
  }
  #info .address {
    padding: 50px;
  }
  #info .address > div {
    gap: 5px;
    margin-bottom: 30px;
  }
}

#map {
  max-width: 1500px;
  width: 90%;
  margin: 0 auto;
  background-color: white;
  height: 500px;
  border: 1px solid var(--black-a15);
}

.visual-top, .visual-bottom {
  height: 600px;
}
@media screen and (max-width: 1100px) {
  .visual-top, .visual-bottom {
    height: 300px;
  }
}

#visual .Title {
  max-width: 1280px;
  width: 90%;
  margin: 0 auto;
  overflow: hidden;
}
#visual .Title .wrap {
  text-align: right;
  color: white;
}
#visual .Title .wrap h2 {
  display: inline-block;
  position: relative;
}
#visual .Title .wrap h2 span {
  display: block;
  position: absolute;
  top: 9px;
  left: 0;
  background-color: var(--sub1-3);
  width: 100%;
  height: 30px;
  z-index: -1;
}
@media screen and (max-width: 1100px) {
  #visual .Title svg {
    width: 80%;
  }
}
@media screen and (max-width: 767px) {
  #visual .Title {
    width: 80%;
  }
  #visual .Title svg {
    height: 150px;
  }
}
#visual #clinic .title,
#visual #care .title,
#visual #equip .title {
  display: inline-block;
  background-color: white;
  text-align: center;
  padding: 10px 50px;
  border-radius: 999px;
  font-family: var(--spoqa);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 2.025rem */
  letter-spacing: -0.125rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  #visual #clinic .title,
  #visual #care .title,
  #visual #equip .title {
    font-size: 0.9375rem;
  }
}
#visual #clinic {
  text-align: center;
  margin-top: 150px;
}
#visual #clinic .clinic-wrap {
  margin: 0 auto;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  width: 90%;
}
#visual #clinic .clinic-wrap li {
  cursor: pointer;
  position: relative;
}
#visual #clinic .clinic-wrap li p {
  font-family: var(--spoqa);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 2.025rem */
  letter-spacing: -0.125rem;
  color: white;
  margin-top: 30px;
  transition: all 0.5s ease;
}
@media screen and (max-width: 767px) {
  #visual #clinic .clinic-wrap li p {
    font-size: 0.9375rem;
  }
}
#visual #clinic .clinic-wrap li p span:nth-child(2) {
  display: none;
}
#visual #clinic .clinic-wrap li img {
  filter: brightness(100%);
  transition: filter 0.5s ease;
}
#visual #clinic .clinic-wrap li:hover {
  position: relative;
}
#visual #clinic .clinic-wrap li:hover img {
  filter: brightness(50%);
}
#visual #clinic .clinic-wrap li:hover p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: 0px;
  width: 100%;
}
#visual #clinic .clinic-wrap li:hover p span:nth-child(2) {
  display: block;
  font-size: 50px;
}
@media screen and (max-width: 1100px) {
  #visual #clinic .clinic-wrap {
    gap: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  #visual #clinic .clinic-wrap li p {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 0px;
    width: 100%;
  }
  #visual #clinic .clinic-wrap li p span:nth-child(2) {
    display: block;
    font-size: 30px;
  }
  #visual #clinic .clinic-wrap li img {
    width: 100%;
    filter: brightness(50%);
  }
  #visual #clinic .clinic-wrap li:hover p span:nth-child(2) {
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  #visual #clinic .clinic-wrap {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  #visual #clinic {
    margin-top: 100px;
  }
}
#visual #care {
  text-align: center;
  margin-top: 150px;
}
#visual #care .care-wrap {
  margin-top: 40px;
  display: flex;
  align-items: flex-start;
  position: relative;
  overflow: visible;
}
#visual #care .care-wrap .care-img {
  position: sticky;
  top: 0;
  width: 50%;
  height: 100vh;
  transition: opacity 0.5s ease;
}
#visual #care .care-wrap .txt_wrap {
  width: 50%;
}
#visual #care .care-wrap .txt_wrap .txt {
  padding-top: 300px;
  padding-bottom: 300px;
  padding-left: 100px;
  padding-right: 100px;
  text-align: left;
  color: white;
}
#visual #care .care-wrap .txt_wrap .txt p:nth-child(1) {
  margin-bottom: 40px;
  font-weight: 700;
}
#visual #care .care-wrap .txt_wrap .txt p:nth-child(2) {
  margin-bottom: 40px;
  color: var(--white-a80);
}
#visual #care .care-wrap .txt_wrap .txt .txt-ul {
  margin-bottom: 40px;
}
#visual #care .care-wrap .txt_wrap .txt .txt-ul li {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
}
#visual #care .care-wrap .txt_wrap .txt .txt-ul li span:nth-child(1) {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background-color: white;
  color: var(--pri2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800px;
  flex-shrink: 0;
}
#visual #care .care-wrap .txt_wrap .txt .txt-ul li span:nth-child(2) {
  color: var(--white-a80);
}
#visual #care .care-wrap .txt_wrap .txt .txt-ul li:last-of-type {
  margin-bottom: 0px;
}
#visual #care .care-wrap .txt_wrap .txt p:nth-child(2),
#visual #care .care-wrap .txt_wrap .txt .txt-ul li span,
#visual #care .care-wrap .txt_wrap .txt button {
  font-family: var(--spoqa);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 2.025rem */
  letter-spacing: -0.125rem;
}
@media screen and (max-width: 767px) {
  #visual #care .care-wrap .txt_wrap .txt p:nth-child(2),
  #visual #care .care-wrap .txt_wrap .txt .txt-ul li span,
  #visual #care .care-wrap .txt_wrap .txt button {
    font-size: 0.9375rem;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1366px) {
  #visual #care .care-wrap .care-img {
    top: 100px;
    height: 80%;
  }
}
@media screen and (max-width: 1100px) {
  #visual #care .care-wrap .txt_wrap {
    width: 90%;
    margin: 0 auto;
  }
  #visual #care .care-wrap .txt_wrap .txt {
    padding: 0px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 100px;
  }
  #visual #care .care-wrap .txt_wrap .txt:last-of-type {
    margin-bottom: 0px;
  }
  #visual #care .care-wrap .txt_wrap .txt:nth-child(1):before {
    content: "";
    display: block;
    width: 100%;
    height: 350px;
    background-image: url("/common/img/user/main/care01m.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    margin-bottom: 40px;
  }
  #visual #care .care-wrap .txt_wrap .txt:nth-child(2):before {
    content: "";
    display: block;
    width: 100%;
    height: 350px;
    background-image: url("/common/img/user/main/care02m.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    margin-bottom: 40px;
  }
  #visual #care .care-wrap .txt_wrap .txt:nth-child(3):before {
    content: "";
    display: block;
    width: 100%;
    height: 350px;
    background-image: url("/common/img/user/main/care03m.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    margin-bottom: 40px;
  }
  #visual #care .care-wrap .txt_wrap .txt:nth-child(4):before {
    content: "";
    display: block;
    width: 100%;
    height: 350px;
    background-image: url("/common/img/user/main/care04m.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  #visual #care .care-wrap {
    margin-top: 100px;
  }
}
#visual #equip {
  margin-top: 150px;
  text-align: center;
}
#visual #equip .equip-wrap {
  max-width: 1700px;
  width: 90%;
  margin: 0 auto;
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  justify-content: center;
}
#visual #equip .equip-wrap .equip {
  flex-basis: 30%;
}
#visual #equip .equip-wrap .equip img {
  width: 100%;
}
#visual #equip .equip-wrap .equip p:nth-child(2) {
  color: white;
  padding: 20px;
}
#visual #equip .equip-wrap .equip P:nth-child(3) {
  font-family: var(--spoqa);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 2.025rem */
  letter-spacing: -0.125rem;
  color: var(--white-a50);
}
@media screen and (max-width: 767px) {
  #visual #equip .equip-wrap .equip P:nth-child(3) {
    font-size: 0.9375rem;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1366px) {
  #visual #equip .equip-wrap {
    gap: 20px;
  }
}
@media screen and (max-width: 1100px) {
  #visual #equip .equip-wrap .equip {
    flex-basis: 40%;
  }
}
@media screen and (max-width: 767px) {
  #visual #equip {
    margin-top: 100px;
  }
  #visual #equip .equip-wrap {
    gap: 1%;
  }
  #visual #equip .equip-wrap .equip {
    flex-basis: 48%;
    margin-bottom: 30px;
  }
}
#visual .point {
  text-align: center;
  color: white;
  padding-top: 250px;
}
#visual .point h3 {
  display: inline-block;
  position: relative;
}

#special {
  text-align: center;
}
#special > h6 {
  color: var(--sub1-2);
  letter-spacing: 1.25rem;
  margin-right: -1.3rem;
  margin-bottom: 1.875rem;
  display: block;
}
#special > h3 {
  color: var(--grey10);
}
#special .special-wrap {
  margin-top: 160px;
}
#special .special-wrap li {
  display: flex;
  align-items: center;
}
#special .special-wrap li img, #special .special-wrap li .txt {
  width: 50%;
}
#special .special-wrap li .txt {
  text-align: left;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 60px;
  padding-left: 217px;
}
#special .special-wrap li .txt p:nth-child(1) {
  color: var(--sub1-2);
  font-family: var(--spoqa);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 2.025rem */
  letter-spacing: -0.125rem;
  font-family: var(--gowun);
  letter-spacing: 10px;
  font-size: 15px;
  margin-right: -10px;
}
@media screen and (max-width: 767px) {
  #special .special-wrap li .txt p:nth-child(1) {
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 1100px) {
  #special .special-wrap li .txt p:nth-child(1) {
    font-family: var(--gowun);
  }
}
@media screen and (max-width: 767px) {
  #special .special-wrap li .txt p:nth-child(1) {
    font-family: var(--gowun);
  }
}
#special .special-wrap li .txt h4:nth-child(1) {
  color: var(--gray10);
}
#special .special-wrap li .txt p:nth-child(3) {
  color: var(--pri1);
  padding: 10px 30px;
  border-radius: 999px;
  border: 1px solid var(--pri1);
  display: inline-block;
  font-family: var(--spoqa);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 2.025rem */
  letter-spacing: -0.125rem;
}
@media screen and (max-width: 767px) {
  #special .special-wrap li .txt p:nth-child(3) {
    font-size: 0.9375rem;
  }
}
#special .special-wrap li:nth-child(1) .img {
  background-image: url(/common/img/user/main/special01.jpg);
  background-attachment: fixed;
  position: relative;
  background-position: center;
  background-size: cover;
  width: 50%;
  height: 600px;
}
@supports (-webkit-overflow-scrolling: touch) {
  #special .special-wrap li:nth-child(1) .img {
    background-attachment: scroll;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1366px) {
  #special .special-wrap li:nth-child(1) .img {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 1100px) {
  #special .special-wrap li:nth-child(1) .img {
    height: 500px;
  }
}
@media screen and (max-width: 767px) {
  #special .special-wrap li:nth-child(1) .img {
    width: 100%;
    height: 300px;
  }
}
#special .special-wrap li:nth-child(2) .img {
  background-image: url(/common/img/user/main/special02.jpg);
  background-attachment: fixed;
  position: relative;
  background-position: center;
  background-size: cover;
  width: 50%;
  height: 600px;
}
@supports (-webkit-overflow-scrolling: touch) {
  #special .special-wrap li:nth-child(2) .img {
    background-attachment: scroll;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1366px) {
  #special .special-wrap li:nth-child(2) .img {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 1100px) {
  #special .special-wrap li:nth-child(2) .img {
    height: 500px;
  }
}
@media screen and (max-width: 767px) {
  #special .special-wrap li:nth-child(2) .img {
    width: 100%;
    height: 300px;
  }
}
#special .special-wrap li:nth-child(3) .img {
  background-image: url(/common/img/user/main/special03.jpg);
  background-attachment: fixed;
  position: relative;
  background-position: center;
  background-size: cover;
  width: 50%;
  height: 600px;
}
@supports (-webkit-overflow-scrolling: touch) {
  #special .special-wrap li:nth-child(3) .img {
    background-attachment: scroll;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1366px) {
  #special .special-wrap li:nth-child(3) .img {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 1100px) {
  #special .special-wrap li:nth-child(3) .img {
    height: 500px;
  }
}
@media screen and (max-width: 767px) {
  #special .special-wrap li:nth-child(3) .img {
    width: 100%;
    height: 300px;
  }
}
@media (max-width: 1500px) {
  #special .special-wrap li .txt {
    padding-left: 80px;
  }
}
@media screen and (max-width: 1100px) {
  #special {
    overflow: hidden;
  }
  #special .special-wrap {
    margin-top: 100px;
  }
  #special .special-wrap li .txt {
    padding-left: 60px;
    padding-right: 60px;
  }
  #special .special-wrap li .txt br {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  #special > h6 {
    font-size: 12px;
  }
  #special .special-wrap li {
    flex-direction: column;
    margin-bottom: 50px;
  }
  #special .special-wrap li .txt {
    margin-top: 50px;
    padding: 0;
    align-items: center;
    width: 100%;
    gap: 20px;
    text-align: center;
  }
  #special .special-wrap li .txt br {
    display: block;
  }
  #special .special-wrap li .txt p:nth-child(1) {
    font-size: 12px;
  }
  #special .special-wrap li:last-of-type {
    margin-bottom: 0px;
  }
  #special .special-wrap li:nth-child(2) .img {
    order: 1;
  }
  #special .special-wrap li:nth-child(2) .txt {
    order: 2;
  }
}

#gallery {
  position: relative;
  max-width: 1500px;
  height: 700px;
  margin: 0 auto;
  overflow: hidden;
  margin-bottom: 250px;
  margin-top: 250px;
  display: block;
  width: 90%;
}
#gallery .gallery-swiper {
  width: 100%;
  height: 100%;
}
#gallery .gallery-swiper .swiper-slide {
  width: 100%;
  height: 100%;
}
#gallery .gallery-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
}
#gallery .gallery-swiper .button-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 468px;
  height: 100%;
  background-color: var(--black-a20);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
#gallery .gallery-swiper .button-wrap h4 {
  color: white;
  margin-left: 100px;
  margin-bottom: 30px;
}
#gallery .gallery-swiper .button-wrap > span {
  margin-left: 100px;
  margin-bottom: 200px;
  display: flex;
  gap: 10px;
}
#gallery .gallery-swiper .button-wrap > span .swiper-button-prev,
#gallery .gallery-swiper .button-wrap > span .swiper-button-next {
  position: relative;
  width: 50px;
  height: 50px;
  background-color: var(--white-a50);
  top: auto;
  margin-top: auto;
  left: 0;
  right: 0;
}
#gallery .gallery-swiper .button-wrap > span .swiper-button-prev svg,
#gallery .gallery-swiper .button-wrap > span .swiper-button-next svg {
  display: none;
}
#gallery .gallery-swiper .button-wrap > span .swiper-button-next:after,
#gallery .gallery-swiper .button-wrap > span .swiper-button-prev:after {
  font-size: 13px;
}
#gallery .gallery-swiper .button-wrap > span .swiper-button-next:after {
  content: url("/common/img/user/icon/arrow-next.svg");
}
#gallery .gallery-swiper .button-wrap > span .swiper-button-prev:after {
  content: url("/common/img/user/icon/arrow-prev.svg");
}
#gallery .gallery-swiper .button-wrap .slide-info {
  color: white;
  display: flex;
  gap: 20px;
  margin-left: 100px;
}
#gallery .gallery-thumb-swiper {
  position: absolute;
  right: 0%;
  bottom: 15%;
  z-index: 15;
  width: 80%;
  height: 100px;
  overflow: hidden;
}
#gallery .gallery-thumb-swiper .swiper-slide {
  opacity: 0.6;
  cursor: pointer;
  width: 200px !important;
}
#gallery .gallery-thumb-swiper .swiper-slide img {
  height: 100%;
  border: 2px solid rgba(255, 255, 255, 0.341);
}
#gallery .gallery-thumb-swiper .swiper-slide-thumb-active {
  opacity: 1;
  border: 2px solid white;
}
@media screen and (max-width: 1100px) {
  #gallery .gallery-swiper .button-wrap {
    width: 35%;
  }
  #gallery .gallery-swiper .button-wrap .slide-info {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  #gallery {
    margin-bottom: 150px;
    margin-top: 150px;
    height: 600px;
  }
  #gallery .gallery-swiper .button-wrap {
    width: 100%;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0);
  }
  #gallery .gallery-swiper .button-wrap h4 {
    margin-left: 0px;
  }
  #gallery .gallery-swiper .button-wrap > span {
    margin-left: 0px;
  }
  #gallery .gallery-thumb-swiper {
    width: 90%;
  }
}

#info {
  scroll-margin-top: -100px;
}

#clinic {
  scroll-margin-top: 100px;
}

#care {
  scroll-margin-top: 100px;
}

#equip {
  scroll-margin-top: 100px;
}

#special {
  scroll-margin-top: 150px;
}

#gallery {
  scroll-margin-top: 150px;
}

#SubTop {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 100px;
  padding-bottom: 100px;
  margin-top: 100px;
  text-align: center;
}
#SubTop .title h4 {
  display: inline-block;
  position: relative;
}
#SubTop .title h4::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  background-color: var(--sub1-1);
  width: 100%;
  height: 20px;
}
#SubTop .title h4::after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  z-index: -1;
  background-color: var(--pri2);
  width: 6px;
  height: 6px;
  border-radius: 999px;
}

.popup-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 200;
  background: rgba(0, 0, 0, 0.5);
}
.popup-wrapper .popup {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100%;
  max-height: 100vh;
  transform: translate(-50%, -50%);
  background: white;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.popup-wrapper .popup .popup-inner {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; /* 아이패드용 */
  position: relative;
}
.popup-wrapper .popup .popup-inner .close-popup {
  position: fixed;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  z-index: 100;
}

.popup-content {
  position: relative;
  display: flex;
  gap: 200px;
  flex-direction: column;
  height: 100%;
  overflow-y: auto;
}
@media screen and (max-width: 767px) {
  .popup-content {
    gap: 100px;
  }
}
.popup-content .title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
.popup-content .title .line-container {
  height: 200px;
  position: relative;
}
.popup-content .title .line-container .line-animate {
  width: 1px;
  height: 100%;
  background: var(--gray8);
  position: absolute;
  top: 0;
  left: 50%;
  transform: scaleY(0);
  transform-origin: top;
  animation: drawLine 1.2s ease-out forwards;
}
@keyframes drawLine {
  to {
    transform: scaleY(1);
  }
}
.popup-content .title h3 {
  color: var(--sub1-3);
  position: relative;
}
.popup-content .title h3:before {
  content: "";
  display: block;
  width: 100%;
  height: 21px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  background-color: var(--sub1);
}
@media screen and (max-width: 1100px) {
  .popup-content .title .line-container {
    height: 100px;
  }
}
.popup-content .txt {
  max-width: 1500px;
  width: 90%;
  margin: 0 auto;
  margin-top: -110px;
  padding: 80px 100px;
  border: 10px solid var(--sub1-1);
  text-align: center;
}
.popup-content .txt b {
  color: var(--pri1);
}
@media (max-width: 1500px) {
  .popup-content .txt {
    margin-top: -70px;
  }
  .popup-content .txt br {
    display: none;
  }
}
@media screen and (max-width: 1100px) {
  .popup-content .txt {
    padding: 50px;
  }
}
@media screen and (max-width: 767px) {
  .popup-content .txt {
    margin-top: -35px;
  }
}
.popup-content .qa {
  display: flex;
  gap: 100px;
  flex-direction: column;
  align-items: flex-start;
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}
.popup-content .qa li span:nth-child(1) {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.popup-content .qa li span:nth-child(1) h3 {
  color: var(--sub1-3);
}
.popup-content .qa li span:nth-child(1) h4 {
  color: black;
}
.popup-content .qa li span:nth-child(2) {
  display: block;
  margin-left: 80px;
}
.popup-content .qa li span:nth-child(2) p {
  color: var(--black-a55);
  text-align: -webkit-auto;
}
.popup-content .qa li:nth-child(2) {
  width: 80%;
  margin-left: auto;
}
@media (max-width: 1500px) {
  .popup-content .qa li span:nth-child(2) {
    margin-left: 52px;
  }
}
@media screen and (max-width: 767px) {
  .popup-content .qa li span:nth-child(1) {
    align-items: baseline;
    gap: 5px;
  }
  .popup-content .qa li span:nth-child(1) h3 {
    width: 40px;
    flex-shrink: 0;
  }
  .popup-content .qa li span:nth-child(2) {
    margin-left: 46px;
  }
  .popup-content .qa li:nth-child(2) {
    width: 90%;
  }
}
.popup-content .case {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1500px;
  width: 90%;
  margin: 0 auto;
}
.popup-content .case .txt-wrap {
  padding: 100px;
  border: 5px solid var(--pri1);
  margin-top: 100px;
  margin-left: -100px;
  background-color: white;
  width: 60%;
  transition: all 0.5s ease;
}
.popup-content .case .txt-wrap h4 {
  color: var(--pri1);
  margin-bottom: 50px;
  text-align: left;
}
.popup-content .case .txt-wrap > ul li {
  color: var(--black-a65);
  display: flex;
  text-align: left;
  margin-bottom: 10px;
}
.popup-content .case .txt-wrap > ul li::before {
  content: " · ";
  color: var(--pri1);
  margin-right: 0.4em;
  display: block;
}
.popup-content .case .txt-wrap > ul li:last-of-type {
  margin-bottom: 0px;
}
@media (max-width: 1500px) {
  .popup-content .case .txt-wrap {
    margin-top: 210px;
    margin-left: -330px;
  }
}
@media screen and (max-width: 1100px) {
  .popup-content .case {
    flex-direction: column;
  }
  .popup-content .case > img {
    width: 100%;
  }
  .popup-content .case .txt-wrap {
    padding: 50px;
    margin-top: 0px;
    margin-left: 0px;
    width: 100%;
  }
  .popup-content .case .txt-wrap h4 br {
    display: none;
  }
}
.popup-content .notice {
  width: 100%;
  background-color: var(--pri2);
  padding: 150px;
  text-align: center;
}
.popup-content .notice h4 {
  color: white;
  margin-bottom: 40px;
}
.popup-content .notice p {
  color: var(--white-a50);
  font-family: var(--spoqa);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 2.025rem */
  letter-spacing: -0.125rem;
}
@media screen and (max-width: 767px) {
  .popup-content .notice p {
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 767px) {
  .popup-content .notice {
    padding: 150px 50px;
  }
}

.no-scroll {
  overflow: hidden;
}

/*community*/
.community {
  font-family: var(--spoqa);
  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: 1100px) {
  .community {
    font-family: var(--spoqa);
    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(--spoqa);
    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(--spoqa);
  font-size: 72px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: -1.44px;
  font-family: var(--gowun);
  text-align: center;
}
@media screen and (max-width: 1100px) {
  .community .title {
    font-family: var(--spoqa);
    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(--spoqa);
    font-size: 60px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: -1.2px;
  }
}
@media screen and (max-width: 1100px) {
  .community .title {
    font-family: var(--gowun);
  }
}
@media screen and (max-width: 767px) {
  .community .title {
    font-family: var(--gowun);
  }
}
.community .title-mini {
  text-align: center;
  font-family: var(--spoqa);
  font-family: var(--spoqa);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1100px) {
  .community .title-mini {
    font-family: var(--spoqa);
    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(--spoqa);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
.community input {
  font-family: var(--spoqa);
  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: 1100px) {
  .community input {
    font-family: var(--spoqa);
    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(--spoqa);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
.community .step-tit {
  font-family: var(--spoqa);
  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: 1100px) {
  .community .step-tit {
    font-family: var(--spoqa);
    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(--spoqa);
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.72px;
  }
}
.community .step-tit span {
  font-family: var(--spoqa);
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.88px;
  font-family: var(--gowun);
  margin-right: 0.625rem;
}
@media screen and (max-width: 1100px) {
  .community .step-tit span {
    font-family: var(--spoqa);
    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(--spoqa);
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.72px;
  }
}
@media screen and (max-width: 1100px) {
  .community .step-tit span {
    font-family: var(--gowun);
  }
}
@media screen and (max-width: 767px) {
  .community .step-tit span {
    font-family: var(--gowun);
  }
}
.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);
  color: var(--black-a60);
}
.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(--spoqa);
  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: 1100px) {
  #join .step01 ul li:nth-child(1) {
    font-family: var(--spoqa);
    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(--spoqa);
    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(--spoqa);
  border: 0;
  height: 100%;
}
#join .step01 ul li:nth-child(3) label span {
  font-family: var(--spoqa);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1100px) {
  #join .step01 ul li:nth-child(3) label span {
    font-family: var(--spoqa);
    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(--spoqa);
    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(--spoqa);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1100px) {
  #join .step02 ul li:nth-child(1) {
    font-family: var(--spoqa);
    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(--spoqa);
    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(--spoqa);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1100px) {
  #join .step02 ul li:nth-child(2) .btn {
    font-family: var(--spoqa);
    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(--spoqa);
    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(--spoqa);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1100px) {
  #join .step02 ul li:nth-child(2) label span {
    font-family: var(--spoqa);
    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(--spoqa);
    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(--spoqa);
  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: 1100px) {
  #join .step02 ul li:nth-child(2) .email-notice {
    font-family: var(--spoqa);
    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(--spoqa);
    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(--spoqa);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1100px) {
  #login form .login-info a {
    font-family: var(--spoqa);
    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(--spoqa);
    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(--spoqa);
  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: 1100px) {
  .modal-con {
    font-family: var(--spoqa);
    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(--spoqa);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 1100px) {
  .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(--spoqa);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1100px) {
  .modal-con .popcont {
    font-family: var(--spoqa);
    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(--spoqa);
    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(--spoqa);
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: -0.88px;
}
@media screen and (max-width: 1100px) {
  .modal-con .popcont p:nth-child(1) {
    font-family: var(--spoqa);
    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(--spoqa);
    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(--spoqa);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1100px) {
  .modal-con .popcont input {
    font-family: var(--spoqa);
    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(--spoqa);
    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(--spoqa);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.48px;
}
@media screen and (max-width: 1100px) {
  .modal-con .popcont p:nth-child(3) {
    font-family: var(--spoqa);
    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(--spoqa);
    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(--spoqa);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1100px) {
  .modal-con .button-wrap button {
    font-family: var(--spoqa);
    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(--spoqa);
    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: 1100px) {
  .privacy .popcont pre {
    font-family: var(--spoqa);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.48px;
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}
@media screen and (max-width: 1100px) and (max-width: 1100px) {
  .privacy .popcont pre {
    font-family: var(--spoqa);
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.4px;
  }
}
@media screen and (max-width: 1100px) and (max-width: 767px) {
  .privacy .popcont pre {
    font-family: var(--spoqa);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.4px;
  }
}
@media screen and (max-width: 767px) {
  .privacy {
    font-family: var(--spoqa);
    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: 1100px) {
  .privacy {
    font-family: var(--spoqa);
    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(--spoqa);
    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(--spoqa);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1100px) {
  #password_lost .id ul li, #password_lost .password ul li {
    font-family: var(--spoqa);
    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(--spoqa);
    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%;
  }
}

.pay {
  font-family: var(--spoqa);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
  text-align: center;
  max-width: 1400px;
  width: 80%;
  margin: 0 auto;
  overflow-x: auto;
  margin-bottom: 150px;
}
@media screen and (max-width: 1100px) {
  .pay {
    font-family: var(--spoqa);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 767px) {
  .pay {
    font-family: var(--spoqa);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
.pay table {
  width: 100%;
}
.pay table tr td, .pay table tr th {
  border: 1px solid var(--pri1);
  font-family: var(--spoqa);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 2.025rem */
  letter-spacing: -0.125rem;
}
@media screen and (max-width: 767px) {
  .pay table tr td, .pay table tr th {
    font-size: 0.9375rem;
  }
}
.pay table thead {
  background-color: var(--pri1);
  color: white;
  border: 1px solid var(--pri1);
}
.pay table thead td, .pay table thead th {
  border: 1px solid var(--white);
}
.pay table tbody th {
  background-color: var(--sub1-1);
}
.pay::-webkit-scrollbar {
  height: 5px;
}
@media screen and (max-width: 780px) {
  .pay table {
    width: 780px;
  }
}

.pay-padding {
  height: 150px;
}

#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(--spoqa);
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1100px) {
  #board .board .list-title {
    font-family: var(--spoqa);
    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(--spoqa);
    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(--spoqa);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1100px) {
  #board .control .search input {
    font-family: var(--spoqa);
    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(--spoqa);
    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(--spoqa);
  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: 1100px) {
  #board .control .board-write-btn {
    font-family: var(--spoqa);
    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(--spoqa);
    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(--spoqa);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1100px) {
  #board .total {
    font-family: var(--spoqa);
    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(--spoqa);
    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(--spoqa);
  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: 1100px) {
  #board .button-wrap .board-button {
    font-family: var(--spoqa);
    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(--spoqa);
    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(--spoqa);
  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: 1100px) {
  #board .pagination .num_list li a {
    font-family: var(--spoqa);
    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(--spoqa);
    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(--spoqa);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1100px) {
  .online li p {
    font-family: var(--spoqa);
    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(--spoqa);
    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: 1100px) {
  .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(--spoqa);
  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: 1100px) {
  .view .list-info .list-title {
    font-family: var(--spoqa);
    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(--spoqa);
    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(--gowun);
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -1.12px;
}
@media screen and (max-width: 1100px) {
  .view .list-info .list-title span {
    font-family: var(--gowun);
  }
}
@media screen and (max-width: 767px) {
  .view .list-info .list-title span {
    font-family: var(--gowun);
  }
}
@media screen and (max-width: 1100px) {
  .view .list-info .list-title span {
    font-family: var(--gowun);
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -1.04px;
  }
}
@media screen and (max-width: 1100px) and (max-width: 1100px) {
  .view .list-info .list-title span {
    font-family: var(--gowun);
  }
}
@media screen and (max-width: 1100px) and (max-width: 767px) {
  .view .list-info .list-title span {
    font-family: var(--gowun);
  }
}
@media screen and (max-width: 767px) {
  .view .list-info .list-title span {
    font-family: var(--gowun);
    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: 1100px) {
  .view .list-info .list-title span {
    font-family: var(--gowun);
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .view .list-info .list-title span {
    font-family: var(--gowun);
  }
}
.view .content {
  position: relative;
  font-family: var(--spoqa);
  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: 1100px) {
  .view .content {
    font-family: var(--spoqa);
    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(--spoqa);
    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(--spoqa);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
  border-radius: 999px;
}
@media screen and (max-width: 1100px) {
  .view .content .content-button button {
    font-family: var(--spoqa);
    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(--spoqa);
    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(--spoqa);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1100px) {
  .view .answer p {
    font-family: var(--spoqa);
    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(--spoqa);
    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(--spoqa);
  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: 1100px) {
  .view .add-file {
    font-family: var(--spoqa);
    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(--spoqa);
    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(--spoqa);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1100px) {
  .write label {
    font-family: var(--spoqa);
    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(--spoqa);
    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(--spoqa);
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1100px) {
  .write ul li:nth-child(1) {
    font-family: var(--spoqa);
    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(--spoqa);
    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(--spoqa);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
  max-width: 100%;
}
@media screen and (max-width: 1100px) {
  .write ul li:nth-child(2) input, .write ul li:nth-child(2) textarea {
    font-family: var(--spoqa);
    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(--spoqa);
    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(--spoqa);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1100px) {
  .write ul li:nth-child(2) label span {
    font-family: var(--spoqa);
    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(--spoqa);
    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(--spoqa);
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1100px) {
  .write .personal-infor h2 {
    font-family: var(--spoqa);
    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(--spoqa);
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -0.56px;
  }
}
.write .personal-infor p {
  font-family: var(--spoqa);
  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: 1100px) {
  .write .personal-infor p {
    font-family: var(--spoqa);
    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(--spoqa);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
.write .personal-infor label span {
  font-family: var(--spoqa);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1100px) {
  .write .personal-infor label span {
    font-family: var(--spoqa);
    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(--spoqa);
    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(--spoqa);
  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: 1100px) {
  .notice li .list-content {
    font-family: var(--spoqa);
    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(--spoqa);
    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(--spoqa);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1100px) {
  .notice li .list-data {
    font-family: var(--spoqa);
    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(--spoqa);
    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: 1100px) {
  .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(--gowun);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1100px) {
  .event li .list-title span {
    font-family: var(--gowun);
  }
}
@media screen and (max-width: 767px) {
  .event li .list-title span {
    font-family: var(--gowun);
  }
}
@media screen and (max-width: 1100px) {
  .event li .list-title span {
    font-family: var(--gowun);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 1100px) and (max-width: 1100px) {
  .event li .list-title span {
    font-family: var(--gowun);
  }
}
@media screen and (max-width: 1100px) and (max-width: 767px) {
  .event li .list-title span {
    font-family: var(--gowun);
  }
}
@media screen and (max-width: 767px) {
  .event li .list-title span {
    font-family: var(--gowun);
    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: 1100px) {
  .event li .list-title span {
    font-family: var(--gowun);
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .event li .list-title span {
    font-family: var(--gowun);
  }
}
@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 */