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

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

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

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

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

* {
  box-sizing: border-box;
}

li, a {
  list-style: none;
}

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

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

input {
  caret-color: black;
}

textarea {
  caret-color: black;
}

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

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

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

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0);
}

::-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: keep-all;
  caret-color: transparent;
}

@keyframes title {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}
@keyframes tit_mini {
  0% {
    letter-spacing: 0.5em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    letter-spacing: auto;
    opacity: 1;
  }
}
@keyframes focus {
  0% {
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    filter: blur(0px);
    opacity: 1;
  }
}
@keyframes cycleM {
  0% {
    transform: translateY(0) scale(1);
  }
  100% {
    transform: translateY(1.5rem) scale(0.95);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes scroll {
  0% {
    transform: translate(-50%, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    transform: translate(-50%, 1.4rem);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes bigger {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(5);
    opacity: 0;
  }
}
@keyframes bounce {
  to {
    transform: translateX(2rem);
    opacity: 0;
  }
}
@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  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);
  }
}
/*style*/
/*
    반응형
    사용 시 : 
    @include tablet{

    }
    @include mobile{

    }
*/
/*모바일에서 안보임*/
.hidden-mo {
  display: block !important;
}
@media screen and (max-width: 1023px) {
  .hidden-mo {
    display: block !important;
  }
}
@media screen and (max-width: 767px) {
  .hidden-mo {
    display: none !important;
  }
}

/*피씨에서 안보임*/
.hidden-pc {
  display: none !important;
}
@media screen and (max-width: 1023px) {
  .hidden-pc {
    display: block !important;
  }
}
@media screen and (max-width: 767px) {
  .hidden-pc {
    display: block !important;
  }
}

/*탭에서 안보임*/
.hidden-tab {
  display: block !important;
}
@media screen and (max-width: 1023px) {
  .hidden-tab {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .hidden-tab {
    display: none !important;
  }
}

/*탭+PC에서 안보임*/
.hidden-pc-tab {
  display: none !important;
}
@media screen and (max-width: 1023px) {
  .hidden-pc-tab {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .hidden-pc-tab {
    display: block !important;
  }
}

/*탭+mo에서 안보임*/
.hidden-tab-mo {
  display: block !important;
}
@media screen and (max-width: 1023px) {
  .hidden-tab-mo {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .hidden-tab-mo {
    display: none !important;
  }
}

:root {
  /*gray*/
  --gray1: #FAFAFA;
  --gray2: #F2F2F2;
  --gray3: #ECECEC;
  --gray4: #F0F0F0;
  --gray5: #CFCFCF;
  --gray6: #BEBEBE;
  --gray7: #B7B7B7;
  --gray8: #ABABAB;
  --gray9: #A1A1A1;
  --gray10: #5E5E5E;
  /*black*/
  --black: #000;
  --black-a95: rgba(0, 0, 0, 0.95);
  --black-a85: rgba(0, 0, 0, 0.85);
  --black-a65: rgba(0, 0, 0, 0.65);
  --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-a30: rgba(0, 0, 0, 0.30);
  --black-a25: rgba(0, 0, 0, 0.25);
  --black-a15: rgba(27, 4, 4, 0.15);
  --black-a10: rgba(0, 0, 0, 0.10);
  --black-a5: rgba(0, 0, 0, 0.5);
  /*white*/
  --white: #fff;
  --white-a95: rgba(255, 255, 255, 0.95);
  --white-a85: rgba(255, 255, 255, 0.85);
  --white-a65: rgba(255, 255, 255, 0.65);
  --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-a30: rgba(255, 255, 255, 0.30);
  --white-a25: rgba(255, 255, 255, 0.25);
  --white-a15: rgba(255, 255, 255, 0.15);
  --white-a10: rgba(255, 255, 255, 0.10);
  --white-a5: rgba(255, 255, 255, 0.5);
  /*pri 1*/
  --pri1: #218CCE;
  --pri1-1: ;
  --pri1-2: ;
  --pri1-3: ;
  --pri1-4: ;
  --pri1-5: ;
  --pri1-6: ;
  --pri1-7: ;
  --pri1-8: ;
  --pri1-9: ;
  --pri1-10: ;
  /*pri 2*/
  --pri2: #1D4193;
  --pri2-1: ;
  --pri2-2: ;
  --pri2-3: ;
  --pri2-4: ;
  --pri2-5: ;
  --pri2-6: ;
  --pri2-7: ;
  --pri2-8: ;
  --pri2-9: ;
  --pri2-10: ;
  /*pri 3*/
  --pri3: #16857F;
  --pri3-1: ;
  --pri3-2: ;
  --pri3-3: ;
  --pri3-4: ;
  --pri3-5: ;
  --pri3-6: ;
  --pri3-7: ;
  --pri3-8: ;
  --pri3-9: ;
  --pri3-10: ;
  /*pri 4*/
  --pri4: #8E755F;
  --pri4-1: ;
  --pri4-2: ;
  --pri4-3: ;
  --pri4-4: ;
  --pri4-5: ;
  --pri4-6: ;
  --pri4-7: ;
  --pri4-8: ;
  --pri4-9: ;
  --pri4-10: ;
  /*pri 5*/
  --pri5: #;
  --pri5: ;
  --pri5-1: ;
  --pri5-2: ;
  --pri5-3: ;
  --pri5-4: ;
  --pri5-5: ;
  --pri5-6: ;
  --pri5-7: ;
  --pri5-8: ;
  --pri5-9: ;
  --pri5-10: ;
  /*sub*/
  --sub1: #F8FDFF;
  --sub1-1: #EBF8FE;
  --sub1-2: ;
  --sub1-3: ;
  --sub1-4: ;
  --sub1-5: ;
  --sub1-6: ;
  --sub1-7: ;
  --sub1-8: ;
  --sub1-9: ;
  --sub1-10: ;
  /*sub*/
  --sub2: #;
  --sub2-1: ;
  --sub2-2: ;
  --sub2-3: ;
  --sub2-4: ;
  --sub2-5: ;
  --sub2-6: ;
  --sub2-7: ;
  --sub2-8: ;
  --sub2-9: ;
  --sub2-10: ;
  /*second*/
  --second1: #;
  --second2: #;
  --second3: #;
  --second4: ;
  --second5: ;
  --second6: ;
  --second7: ;
  --second8: ;
  --second9: ;
  --second10: ;
  --second11: ;
  /*sns*/
  --kakao: #FFC700;
  --naver: #58D30C;
  --daum: #618FFC;
  --youtube: #FD0532;
}

:root {
  --Marcell: "Marcellus", serif;
  --NotoSerif: "Noto Serif KR",serif;
  --NotoSans: "Noto Sans KR";
  --Mont: "Montserrat", sans-serif;
  --preten: "Pretendard Variable", sans-serif;
}

/* 폰트셋팅*/
.en {
  font-family: var(--Mont);
  font-weight: bold;
}

/* 텍스트정렬*/
html, body {
  font-size: 17px;
}

@media (max-width: 1023px) {
  html, body {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  html, body {
    font-size: 17px;
  }
}
@media (max-width: 320px) {
  html, body {
    font-size: 15px;
  }
}
h1 {
  font-family: var(--preten);
  font-size: 5.75rem;
  font-style: normal;
  font-weight: 300;
  line-height: 8.05rem; /* 8.05rem */
  letter-spacing: -0.115rem;
}

h2 {
  font-family: var(--preten);
  font-size: 4.5rem;
  font-style: normal;
  font-weight: 300;
  line-height: 5.3rem; /* 6.3rem */
  letter-spacing: -0.09rem;
}
@media screen and (max-width: 767px) {
  h2 {
    font-size: 28px;
    line-height: 30px;
  }
}

h3 {
  font-family: var(--preten);
  font-size: 3.75rem;
  font-style: normal;
  font-weight: 300;
  line-height: 4.5rem; /* 4.5rem */
  letter-spacing: -0.075rem;
}

h4 {
  font-family: var(--preten);
  font-size: 3.3rem;
  font-style: normal;
  font-weight: 300;
  line-height: 3.8rem; /* 3.6rem */
  letter-spacing: -0.06rem;
}
@media screen and (max-width: 767px) {
  h4 {
    font-size: 1.43rem;
    line-height: 1.7rem;
  }
}

h5 {
  font-family: var(--preten);
  font-size: 2.2rem;
  font-style: normal;
  font-weight: 300;
  line-height: 2.8rem; /* 3.6rem */
  letter-spacing: -0.06rem;
}
@media screen and (max-width: 767px) {
  h5 {
    font-size: 1.3rem;
    line-height: 1.4rem;
  }
}

h6 {
  font-family: var(--preten);
  font-size: 1.705rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.31rem; /* 2.31rem */
  letter-spacing: -0.0525rem;
}
@media screen and (max-width: 767px) {
  h6 {
    font-size: 17px;
    line-height: 1.6rem;
    font-weight: 600;
  }
}

div, a, span, p, ul, ol, li, dd, dt, dl, table, button {
  font-family: var(--preten);
  /*Pretendard*/
  font-size: 1.295rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.9rem; /* 1.8rem */
  letter-spacing: -0.045rem;
}
@media screen and (max-width: 767px) {
  div, a, span, p, ul, ol, li, dd, dt, dl, table, button {
    font-size: 0.8rem;
    line-height: 1.4rem;
  }
}

b {
  font-weight: 700;
}

/*common*/
footer {
  background-color: var(--black);
}
footer li, footer span, footer a {
  font-size: 0.9rem;
}
@media screen and (max-width: 767px) {
  footer li, footer span, footer a {
    font-size: 0.7rem;
  }
}
footer .container {
  margin: 0 auto;
  padding: 80px 0;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer .container img {
  margin: 0 auto;
}
footer .container hr {
  width: 100%;
  text-align: center;
  background: rgba(255, 255, 255, 0.185);
  height: 1px;
  border: 0;
  margin: 60px auto;
}
footer .container .info {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
footer .container .info li {
  text-align: center;
}
footer .container .info li span:nth-child(1) {
  margin-right: 10px;
  color: var(--white-a45);
}
footer .container .copy li {
  text-align: center;
}
footer .container .commu {
  display: flex;
  justify-content: center;
  gap: 20px;
}
footer .container .commu li {
  text-align: center;
}
@media screen and (max-width: 767px) {
  footer .container {
    gap: 15px;
  }
  footer .container .info {
    flex-direction: column;
    gap: 0px;
  }
  footer .container img {
    width: 80%;
  }
}

#header {
  position: relative;
  background-color: white;
  box-shadow: 0px 11px 50px rgba(0, 0, 0, 0.0588235294);
  position: sticky;
  top: -129px;
  z-index: 1000;
}
@media screen and (max-width: 1023px) {
  #header {
    top: 0px;
  }
}
#header .header-top {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
#header .header-top .logo {
  position: relative;
  display: block;
  padding: 20px;
}
#header .header-top .logo img {
  width: 450px;
}
#header .header-top .Util .sitemap {
  width: 30px;
  height: 20px;
  position: relative;
  cursor: pointer;
}
#header .header-top .Util .sitemap p {
  position: absolute;
  width: 100%;
  height: 2px;
  display: block;
  background: var(--pri1);
  right: 0;
  transition: all 0.2s linear;
}
#header .header-top .Util .sitemap p.one {
  top: 0;
}
#header .header-top .Util .sitemap p.two {
  top: 9px;
}
#header .header-top .Util .sitemap p.three {
  width: 15px;
  bottom: 0;
}
#header .header-top .Util .sitemap:hover p {
  width: 100% !important;
}
@media screen and (max-width: 767px) {
  #header .header-top {
    justify-content: space-between;
    gap: 20px;
    padding: 10px 20px;
  }
  #header .header-top .logo {
    padding: 0px;
    width: 200px;
  }
}
#header nav {
  max-width: 1500px;
  margin: 0 auto;
}
#header nav ul {
  display: flex;
}
#header nav ul li {
  flex-basis: 14.285%;
  position: relative;
}
#header nav ul li a {
  white-space: nowrap;
  display: block;
  text-align: center;
  padding: 20px 0px;
}
#header nav ul li .depth02 {
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  z-index: 100;
  background-color: white;
  display: flex;
  flex-direction: column;
}
#header nav ul li .depth02 li a:hover {
  color: var(--pri1);
}
#header nav ul li.active > a {
  color: var(--pri1);
  font-weight: 700;
}
#header nav ul li.active > a:after {
  opacity: 1;
}
@media (width <= 1500px) {
  #header nav {
    width: 100%;
  }
  #header nav ul {
    justify-content: center;
  }
  #header nav ul li a {
    padding: 20px 20px;
    display: block;
  }
}
@media (width <= 1100px) {
  #header nav ul {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
  }
  #header nav ul::-webkit-scrollbar {
    height: 5px;
  }
  #header nav ul li a {
    white-space: nowrap;
    padding: 10px 20px;
  }
}

#sitemap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  animation: slideDown 1s;
  z-index: 10000;
  padding: 20px;
  overflow-y: scroll;
}
#sitemap .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#sitemap .top > img {
  width: 50%;
}
#sitemap .top .close {
  width: 30px;
  height: 30px;
  position: relative;
}
#sitemap .top .close p {
  position: absolute;
  width: 100%;
  height: 2px;
  display: block;
  background: var(--pri1);
  right: 0;
  cursor: pointer;
}
#sitemap .top .close p.one {
  top: 50%;
  transform: rotate(45deg);
}
#sitemap .top .close p.two {
  top: 50%;
  transform: rotate(-45deg);
}
#sitemap nav {
  margin-top: 30px;
}
#sitemap nav .sitemap-menu {
  width: 100%;
}
#sitemap nav .sitemap-menu > li > a {
  font-size: 15px;
  padding: 6px 10px;
  line-height: 44px;
  display: block;
  border-bottom: 1px solid var(--black-a15);
  cursor: pointer;
}
#sitemap nav .sitemap-menu > li .depth02 > li > a {
  font-size: 14px;
  padding: 10px 20px;
  display: block;
  cursor: pointer;
  border-bottom: 1px solid rgba(0, 0, 0, 0.0588235294);
  background-color: var(--gray1);
}
#sitemap .about {
  margin-top: 30px;
}
#sitemap .about .info-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
}
#sitemap .about .info-call h1 {
  font-family: var(--Mont);
  font-weight: bold;
  color: #2e3191;
}
@media screen and (max-width: 1023px) {
  #sitemap .about .info-call h1 {
    font-family: var(--Mont);
  }
}
@media screen and (max-width: 767px) {
  #sitemap .about .info-call h1 {
    font-family: var(--Mont);
  }
}
@media screen and (max-width: 767px) {
  #sitemap .about .info-call {
    gap: 10px;
    margin-top: 15px;
  }
  #sitemap .about .info-call img {
    width: 32px;
  }
  #sitemap .about .info-call h1 {
    font-size: 30px;
    line-height: 3rem;
  }
}
#sitemap .about h6 {
  background-color: #2e3191;
  color: white;
  width: 80%;
  margin: 0 auto;
  padding: 5px 60px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  margin-bottom: 30px;
}
#sitemap .about h6 div {
  font-weight: bold;
  background-color: #ffff00;
  color: black;
  border: 2px solid black;
  border-radius: 999px;
  padding: 10px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  #sitemap .about h6 {
    width: 100%;
    padding: 5px;
    gap: 5px;
    justify-content: center;
  }
  #sitemap .about h6 div {
    width: 20px;
    height: 20px;
    padding: 0px;
  }
}

/*pages*/
/*section공통*/
section {
  position: relative;
}
section .container {
  max-width: 1300px;
  width: 90%;
  margin: 0 auto;
  position: relative;
  padding-top: 150px;
  padding-bottom: 150px;
}
section .container__txt {
  text-align: center;
}
section .container__txt h4 b {
  color: var(--pri1);
}
section .container__txt h6 {
  margin-top: 20px;
  color: var(--black-a65);
}
section .container__txt p {
  margin-top: 20px;
  color: var(--black-a65);
}
section .container__content {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  section .container {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  section .container .container__content {
    margin-top: 30px;
  }
}

/*메인슬라이드*/
#mainslide {
  width: 100%;
  height: 80vh;
  overflow: hidden;
}
#mainslide .swiper {
  width: 100%;
  height: 100%;
}
#mainslide .swiper .swiper-slide .txt-wrap {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  width: 80%;
}
#mainslide .swiper .swiper-slide .txt-wrap p {
  letter-spacing: 8px;
  margin-bottom: 10px;
  color: var(--white-a65);
  font-size: 15px;
}
#mainslide .swiper .swiper-slide .txt-wrap h6, #mainslide .swiper .swiper-slide .txt-wrap h2 {
  font-weight: 200;
}
#mainslide .swiper .swiper-slide .txt-wrap h6 b, #mainslide .swiper .swiper-slide .txt-wrap h2 b {
  color: #2dabff;
}
#mainslide .swiper .swiper-slide .txt-wrap button {
  margin-top: 20px;
  border: 3px solid #2dabff;
  color: #2dabff;
  padding: 20px 70px;
  border-radius: 999px;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  text-decoration: none;
  display: inline-block;
  overflow: hidden;
}
#mainslide .swiper .swiper-slide .txt-wrap button:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #000;
  transform: scaleX(0.3);
  opacity: 0;
  transition: all 0.3s;
}
#mainslide .swiper .swiper-slide .txt-wrap button:hover {
  color: white;
}
#mainslide .swiper .swiper-slide .txt-wrap button:hover:before {
  opacity: 1;
  background-color: #2dabff;
  transform: scaleX(1);
  transition: transform 0.6s cubic-bezier(0.08, 0.35, 0.13, 1.02), opacity;
}
#mainslide .swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  transform: scale(1.2);
  transition: all 2s;
}
#mainslide .swiper .swiper-slide.swiper-slide-active .txt-wrap span {
  animation: slideUp 2s ease-out;
  display: inline-block;
}
#mainslide .swiper .swiper-slide.swiper-slide-active img {
  transform: scale(1);
  transition: all 2s;
}
#mainslide .swiper .swiper-button-next:after, #mainslide .swiper .swiper-button-prev:after {
  color: white;
}
#mainslide .swiper .swiper-button-next, #mainslide .swiper .swiper-rtl .swiper-button-prev {
  right: 5%;
}
#mainslide .swiper .swiper-button-prev, #mainslide .swiper .swiper-rtl .swiper-button-next {
  left: 5%;
}
@media screen and (max-width: 767px) {
  #mainslide {
    height: 80vh;
  }
  #mainslide .swiper .swiper-slide .txt-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    top: 45%;
    text-align: center;
  }
  #mainslide .swiper .swiper-slide .txt-wrap span p:nth-child(1) {
    font-size: 10px;
    letter-spacing: 2px;
  }
  #mainslide .swiper .swiper-slide .txt-wrap span button {
    font-size: 16px;
    padding: 10px 50px;
  }
  #mainslide .swiper .swiper-button-next,
  #mainslide .swiper .swiper-button-prev {
    height: 100%;
    top: 0px !important;
    margin-top: 0px !important;
    width: 40px;
  }
  #mainslide .swiper-button-prev {
    left: 0px !important;
  }
  #mainslide .swiper-button-next {
    right: 0px !important;
  }
  #mainslide .swiper .swiper-button-next::after,
  #mainslide .swiper .swiper-button-prev::after {
    font-size: 20px;
    display: none;
  }
  #mainslide .swiper-button-next, #mainslide .swiper-rtl .swiper-button-prev {
    right: 0px;
  }
  #mainslide .swiper-button-prev, #mainslide .swiper-rtl .swiper-button-next {
    left: 0px;
  }
}
#mainslide video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: brightness(60%);
}
@media screen and (max-width: 767px) {
  #mainslide video {
    height: 100%;
  }
}

/*통증, 내몸이 보내는*/
#clinic .container {
  max-width: 1600px;
}
#clinic .container .container__txt > img {
  margin: 0 auto;
  margin-bottom: 30px;
}
#clinic .container .container__txt h4 b {
  color: red !important;
}
@media screen and (max-width: 767px) {
  #clinic .container .container__txt > img {
    width: 40px;
    margin-bottom: 10px;
  }
}
#clinic .container .container__content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
#clinic .container .container__content a {
  position: relative;
}
#clinic .container .container__content a img {
  width: 100%;
  height: 100%;
}
#clinic .container .container__content a .title-wrap {
  position: absolute;
  top: 10%;
  left: 15%;
}
#clinic .container .container__content a .title-wrap h6 {
  color: var(--black-a65);
}
#clinic .container .container__content a .title-wrap h5 {
  color: var(--pri1);
  margin-top: 10px;
  font-weight: 500;
}
#clinic .container .container__content a:hover {
  overflow: hidden;
}
#clinic .container .container__content a:hover img {
  transform: scale(1.125);
  transition: transform 0.5s;
}
@media screen and (max-width: 1023px) {
  #clinic .container .container__content {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 767px) {
  #clinic .container .container__content {
    grid-template-columns: repeat(2, 1fr);
  }
  #clinic .container .container__content a .title-wrap h6 {
    font-size: 0.999rem;
    line-height: 1.5rem;
  }
  #clinic .container .container__content a .title-wrap h5 {
    margin-top: 0px;
  }
}

/*약속드립니다.*/
#promise .container {
  padding-top: 0px;
  padding-bottom: 150px;
}
#promise .container .container__txt h4 b {
  color: var(--pri2);
}
#promise .container .container__txt h6 {
  margin-top: 20px;
  color: var(--black-a65);
  background-color: var(--pri2);
  display: inline-block;
  padding: 10px 30px;
  border-radius: 999px;
  color: white;
}
#promise .container .container__txt h6 b {
  color: yellow;
}
#promise .container .container__content {
  margin-top: 80px;
}
#promise .container .container__content li {
  display: flex;
  align-items: flex-start;
  gap: 100px;
  margin-bottom: 100px;
}
#promise .container .container__content li .left {
  width: 50%;
}
#promise .container .container__content li .right {
  width: 50%;
}
#promise .container .container__content li .title {
  margin-top: 126px;
}
#promise .container .container__content li .title span {
  font-family: var(--Mont);
  margin-bottom: 20px;
  display: inline-block;
  color: #aab5cd;
}
@media screen and (max-width: 1023px) {
  #promise .container .container__content li .title span {
    font-family: var(--Mont);
  }
}
@media screen and (max-width: 767px) {
  #promise .container .container__content li .title span {
    font-family: var(--Mont);
  }
}
#promise .container .container__content li .title h5 {
  margin-bottom: 20px;
  font-weight: 300;
}
#promise .container .container__content li .title h5 b {
  color: var(--pri2);
}
#promise .container .container__content li .title p b {
  color: var(--pri2);
}
#promise .container .container__content li:last-of-type {
  border-bottom: 0px;
}
@media screen and (max-width: 1023px) {
  #promise .container .container__txt h6 {
    padding: 0;
    background-color: white;
    color: black;
  }
  #promise .container .container__txt h6 b {
    color: var(--pri2);
  }
  #promise .container .container__content li {
    flex-direction: column;
    align-items: center;
    gap: 0px;
  }
  #promise .container .container__content li .title {
    margin-top: 0px;
    text-align: center;
  }
  #promise .container .container__content li .title span {
    background-color: #aab5cd;
    color: white;
    padding: 0px 10px;
    border-radius: 999px;
  }
  #promise .container .container__content li .left, #promise .container .container__content li .right {
    width: 100%;
  }
  #promise .container .container__content li:nth-child(odd) {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 767px) {
  #promise .container {
    padding-bottom: 0px;
  }
}

/*의료진소개*/
#doctor .intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
#doctor .intro img {
  width: 35%;
  margin-right: 20px;
}
#doctor .intro h6 {
  margin-bottom: 50px;
  margin-top: 50px;
  color: #00a4ff;
}
#doctor .intro h5 {
  color: #2e3191;
  font-family: var(--NotoSerif);
  font-weight: 500;
  letter-spacing: -0.15rem;
  margin-bottom: 50px;
}
@media screen and (max-width: 1023px) {
  #doctor .intro h5 {
    font-family: var(--NotoSerif);
  }
}
@media screen and (max-width: 767px) {
  #doctor .intro h5 {
    font-family: var(--NotoSerif);
  }
}
#doctor .intro h5 b {
  color: #00a4ff;
}
#doctor .intro .pre {
  background-image: url("/common/img/user/main/doctor/pre.jpg");
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 1300px;
  width: 90%;
  padding: 80px;
  align-items: center;
}
#doctor .intro .pre img {
  width: 80%;
}
#doctor .intro .pre p {
  text-align: left;
  color: white;
}
@media screen and (max-width: 767px) {
  #doctor .intro h6 {
    margin-bottom: 20px;
  }
  #doctor .intro h5 {
    margin-bottom: 30px;
    line-height: 28px;
  }
  #doctor .intro .pre {
    grid-template-columns: repeat(1, 1fr);
    padding: 40px 40px;
    width: 100%;
  }
  #doctor .intro .pre p {
    text-align: center;
    width: 90%;
    margin: 0 auto;
  }
  #doctor .intro .pre img {
    width: 100%;
    margin-bottom: 10px;
  }
  #doctor .intro > img {
    width: 70%;
  }
}
#doctor .container {
  padding-bottom: 0px;
}
#doctor .container .top-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
#doctor .container .top-wrap .left .title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 50px;
}
#doctor .container .top-wrap .left .title h4 {
  font-weight: 600;
}
#doctor .container .top-wrap .left .title span {
  display: inline-block;
  padding: 0px 20px;
  background-color: var(--pri2);
  color: white;
  border-radius: 99px;
}
#doctor .container .top-wrap .left .profile {
  margin-bottom: 50px;
}
#doctor .container .top-wrap .left .research {
  margin-bottom: 150px;
}
@media screen and (max-width: 767px) {
  #doctor .container .top-wrap .left .research {
    margin-bottom: 100px;
  }
}
#doctor .container .top-wrap .left .profile p:nth-child(1), #doctor .container .top-wrap .left .research p:nth-child(1) {
  padding: 10px 0px;
  color: var(--pri2);
  font-weight: 600;
}
#doctor .container .top-wrap img {
  flex-grow: 0;
  flex-basis: 50%;
  position: sticky;
  top: 130px;
  width: 500px;
}
@media screen and (max-width: 1023px) {
  #doctor .container .top-wrap {
    align-items: flex-start;
  }
  #doctor .container .top-wrap img {
    width: 250px;
    flex-shrink: 0;
  }
  #doctor .container .top-wrap .left .title {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media screen and (max-width: 767px) {
  #doctor .container {
    padding-top: 50px;
  }
  #doctor .container .top-wrap {
    flex-direction: column-reverse;
    align-items: normal;
  }
  #doctor .container .top-wrap img {
    margin: 0 auto;
    position: relative;
    top: 0px;
    width: auto;
  }
  #doctor .container .top-wrap .left {
    text-align: center;
  }
  #doctor .container .top-wrap .left .title {
    margin-top: 30px;
    margin-bottom: 30px;
    display: block !important;
  }
  #doctor .container .top-wrap .left .title span {
    margin-top: 10px;
  }
  #doctor .container .top-wrap .left .profile {
    margin-bottom: 30px;
  }
  #doctor .container .top-wrap .left .profile ul, #doctor .container .top-wrap .left .profile p, #doctor .container .top-wrap .left .research ul, #doctor .container .top-wrap .left .research p {
    text-align: left;
  }
  #doctor .container .top-wrap .left .research {
    margin-bottom: 50px;
  }
}
#doctor .wrap {
  padding: 150px 0;
  background-color: #2f3e5e;
}
#doctor .wrap .thesis {
  max-width: 1300px;
  width: 90%;
  margin: 0 auto;
  position: relative;
  color: white;
  margin-bottom: 50px;
}
#doctor .wrap .thesis p:nth-child(1) {
  padding: 10px 20px;
  font-weight: 600;
  background-color: #008acd;
  display: inline-block;
  margin-bottom: 10px;
  border-radius: 999px;
}
#doctor .wrap .thesis:last-of-type {
  margin-bottom: 0px;
}
@media screen and (max-width: 767px) {
  #doctor .wrap {
    padding: 50px 0;
  }
  #doctor .wrap .thesis {
    margin-bottom: 20px;
  }
  #doctor .wrap .thesis p:nth-child(1) {
    padding: 5px 10px;
  }
}

/*tab*/
.tabList ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: row;
  gap: 20px;
}
.tabList ul li {
  background-color: var(--white);
  color: var(--gray6);
  border: 5px solid var(--gray6);
  cursor: pointer;
  width: 31.333%;
  padding: 15px;
  border-radius: 999px;
  text-align: center;
}
.tabList ul li.on {
  color: var(--pri1);
  border: 5px solid var(--pri1);
}
@media screen and (max-width: 1023px) {
  .tabList ul li {
    width: 25%;
  }
}

.tabContent .content {
  animation: slideDown 1.5s;
  display: none;
}

@media (max-width: 767px) {
  /*
  .tabList{
  position:sticky;
  top:170px;
  z-index:100;
  }
  */
}
/*clinic01*/
#clinic01 {
  background-color: var(--pri1);
}
#clinic01 .container .container__txt {
  color: white;
}
#clinic01 .container .container__txt b {
  color: yellow;
}
#clinic01 .container .container__txt h6 {
  color: var(--white-a65);
}
#clinic01 .container .container__txt h6 b {
  color: yellow;
}
#clinic01 .container .tabList {
  margin-top: 30px;
}
#clinic01 .container .tabList ul li.on {
  color: var(--pri4);
  border: 5px solid var(--pri4);
}
@media screen and (max-width: 767px) {
  #clinic01 .container .tabList ul {
    gap: 10px;
  }
  #clinic01 .container .tabList ul li {
    width: 45%;
    padding: 10px;
  }
}
#clinic01 .container .tabContent {
  margin-top: 50px;
}
#clinic01 .container .tabContent .content {
  background-color: white;
  padding: 50px;
  text-align: center;
}
#clinic01 .container .tabContent .content h6 {
  color: var(--pri4);
}
#clinic01 .container .tabContent .content .banner {
  background-color: var(--pri2);
  color: white;
  padding: 90px;
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
#clinic01 .container .tabContent .content .banner .banner__txt > h6 {
  margin-bottom: 20px;
}
#clinic01 .container .tabContent .content .banner .banner__txt > h6, #clinic01 .container .tabContent .content .banner .banner__txt p {
  color: white;
  text-align: left;
}
#clinic01 .container .tabContent .content .banner > ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
#clinic01 .container .tabContent .content .banner > ul > p {
  flex-basis: 100%;
  margin-bottom: 30px;
}
#clinic01 .container .tabContent .content .banner > ul > li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0px;
  background-color: white;
  width: 150px;
  height: 150px;
  border-radius: 200px;
}
#clinic01 .container .tabContent .content .banner > ul > li > img {
  width: 50px;
  height: 50px;
}
#clinic01 .container .tabContent .content .banner > ul > li > p {
  text-align: center;
  color: var(--pri2);
}
@media screen and (max-width: 1023px) {
  #clinic01 .container .tabContent .content .banner {
    grid-template-columns: repeat(1, 1fr);
    padding: 50px;
    gap: 30px;
  }
  #clinic01 .container .tabContent .content .banner .banner__txt > h6,
  #clinic01 .container .tabContent .content .banner .banner__txt > p {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  #clinic01 .container .tabContent .content .banner {
    padding: 50px 30px;
  }
  #clinic01 .container .tabContent .content .banner ul > p {
    margin-bottom: 10px;
  }
  #clinic01 .container .tabContent .content .banner ul > li {
    width: 90px;
    height: 90px;
    flex-wrap: wrap;
  }
  #clinic01 .container .tabContent .content .banner ul > li > img {
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 767px) {
  #clinic01 .container .tabContent .content {
    padding: 30px 10px;
  }
}
#clinic01 .container .tabContent .content:nth-child(1) .content-point {
  margin-top: 50px;
  display: flex;
  gap: 30px;
}
#clinic01 .container .tabContent .content:nth-child(1) .content-point .point {
  width: 50%;
}
#clinic01 .container .tabContent .content:nth-child(1) .content-point .point > img {
  width: 100%;
}
#clinic01 .container .tabContent .content:nth-child(1) .content-point .point .content-txt .content-txt-title {
  display: flex;
  padding: 20px 50px;
  align-items: center;
  background-color: #114c78;
  color: white;
  border-radius: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
  gap: 30px;
  height: 200px;
}
#clinic01 .container .tabContent .content:nth-child(1) .content-point .point .content-txt .content-txt-title h6 {
  width: 180px;
  flex-shrink: 0;
  text-align: left;
  color: white;
}
#clinic01 .container .tabContent .content:nth-child(1) .content-point .point .content-txt .content-txt-title p {
  text-align: left;
}
#clinic01 .container .tabContent .content:nth-child(1) .content-point .point .content-txt > p {
  text-align: left;
  display: flex;
  margin-bottom: 10px;
}
#clinic01 .container .tabContent .content:nth-child(1) .content-point .point .content-txt > p:before {
  content: "·";
  margin-right: 10px;
}
@media (width <= 1290px) {
  #clinic01 .container .tabContent .content:nth-child(1) .content-point .point .content-txt .content-txt-title {
    flex-direction: column;
    height: 200px;
    gap: 10px;
  }
  #clinic01 .container .tabContent .content:nth-child(1) .content-point .point .content-txt .content-txt-title h6, #clinic01 .container .tabContent .content:nth-child(1) .content-point .point .content-txt .content-txt-title p {
    width: 100%;
    text-align: center;
  }
  #clinic01 .container .tabContent .content:nth-child(1) .content-point .point .content-txt .content-txt-title h6 br, #clinic01 .container .tabContent .content:nth-child(1) .content-point .point .content-txt .content-txt-title p br {
    display: none;
  }
}
@media screen and (max-width: 1023px) {
  #clinic01 .container .tabContent .content:nth-child(1) .content-point {
    flex-direction: column;
    margin-top: 20px;
  }
  #clinic01 .container .tabContent .content:nth-child(1) .content-point .point {
    width: 100%;
  }
  #clinic01 .container .tabContent .content:nth-child(1) .content-point .point .content-txt .content-txt-title {
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  #clinic01 .container .tabContent .content:nth-child(1) .content-point .point .content-txt .content-txt-title {
    padding: 20px 5px;
  }
  #clinic01 .container .tabContent .content:nth-child(1) .content-point .point .content-txt > p {
    margin-bottom: 0px;
  }
}
#clinic01 .container .tabContent .content:nth-child(2) .content-point {
  margin-top: 50px;
  display: flex;
  gap: 30px;
}
#clinic01 .container .tabContent .content:nth-child(2) .content-point .point {
  width: 25%;
}
#clinic01 .container .tabContent .content:nth-child(2) .content-point .point > img {
  width: 100%;
}
#clinic01 .container .tabContent .content:nth-child(2) .content-point .point .content-txt .content-txt-title {
  display: flex;
  padding: 20px 50px;
  align-items: center;
  background-color: #114c78;
  color: white;
  border-radius: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
  gap: 30px;
  height: 150px;
}
#clinic01 .container .tabContent .content:nth-child(2) .content-point .point .content-txt .content-txt-title h6 {
  width: 100%;
  text-align: center;
  color: white;
}
#clinic01 .container .tabContent .content:nth-child(2) .content-point .point .content-txt > p {
  text-align: left;
}
#clinic01 .container .tabContent .content:nth-child(2) .content-point .point .content-txt > p:before {
  display: none !important;
}
@media (width <= 1290px) {
  #clinic01 .container .tabContent .content:nth-child(2) .content-point {
    flex-wrap: wrap;
    justify-content: center;
  }
  #clinic01 .container .tabContent .content:nth-child(2) .content-point .point {
    width: 48%;
  }
}
@media screen and (max-width: 767px) {
  #clinic01 .container .tabContent .content:nth-child(2) .content-point {
    gap: 20px;
  }
  #clinic01 .container .tabContent .content:nth-child(2) .content-point .point {
    width: 100%;
  }
  #clinic01 .container .tabContent .content:nth-child(2) .content-point .point .content-txt .content-txt-title {
    height: auto;
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}

/*clinic02*/
#clinic02 {
  text-align: center;
  background-color: var(--sub1-1);
}
#clinic02 .container__txt h4 b {
  color: var(--pri2);
}
#clinic02 .container__content {
  margin-top: 60px;
}
#clinic02 .container__content .content {
  background-color: white;
  padding: 50px;
  margin-bottom: 20px;
}
#clinic02 .container__content .content:last-of-type {
  margin-bottom: 0px;
}
#clinic02 .container__content .content .txt p b {
  color: var(--pri2);
}
#clinic02 .container__content .content .wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  margin-bottom: 50px;
}
#clinic02 .container__content .content .wrap .txt {
  text-align: left;
  margin-top: 50px;
}
#clinic02 .container__content .content .wrap .txt h6 {
  margin-bottom: 20px;
  color: var(--pri2);
}
#clinic02 .container__content .content .wrap .txt p {
  margin-bottom: 20px;
}
#clinic02 .container__content .content .wrap .txt li {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 10px;
  color: var(--pri2);
}
#clinic02 .container__content .content .wrap .txt li span {
  margin-left: 10px;
}
#clinic02 .container__content .content .wrap .txt li:last-of-type {
  margin-bottom: 0px;
}
#clinic02 .container__content .content .wrap:last-of-type {
  margin-bottom: 0px;
}
@media screen and (max-width: 1023px) {
  #clinic02 .container__content .content .wrap {
    grid-template-columns: repeat(1, 1fr);
  }
  #clinic02 .container__content .content .wrap .txt {
    margin-top: 0px;
  }
}
@media screen and (max-width: 767px) {
  #clinic02 .container__content .content .wrap {
    gap: 20px;
    margin-bottom: 20px;
  }
  #clinic02 .container__content .content .wrap .txt li img {
    width: 20px;
  }
}
#clinic02 .container__content .content .wrap.question {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
#clinic02 .container__content .content .wrap.question li {
  background-color: var(--pri2);
  padding: 100px 30px 30px 30px;
  color: white;
  position: relative;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
}
#clinic02 .container__content .content .wrap.question li span {
  display: block;
}
#clinic02 .container__content .content .wrap.question li span h6 {
  color: yellow;
}
#clinic02 .container__content .content .wrap.question li span:nth-child(1) {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translate(-50%, 0%);
  border-radius: 999px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #4765A8;
}
#clinic02 .container__content .content .wrap.question li span:nth-child(1)::before {
  content: "";
  width: 1px;
  height: 30px;
  background-color: #4765A8;
  position: absolute;
  top: 0;
  margin-top: -30px;
}
#clinic02 .container__content .content .wrap.question li h6 {
  padding: 10px 0px;
  color: yellow;
}
#clinic02 .container__content .content .wrap.question li span:nth-child(3) {
  padding: 10px 0px;
}
@media screen and (max-width: 1023px) {
  #clinic02 .container__content .content .wrap.question {
    grid-template-columns: repeat(1, 1fr);
  }
  #clinic02 .container__content .content .wrap.question li {
    padding: 30px;
    text-align: left;
  }
  #clinic02 .container__content .content .wrap.question li span:nth-child(1) {
    top: -10px;
    left: -10px;
    transform: translate(0%, 0%);
  }
  #clinic02 .container__content .content .wrap.question li span:nth-child(1)::before {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  #clinic02 .container__content .content .wrap.question li {
    padding: 20px;
  }
  #clinic02 .container__content .content .wrap.question li span:nth-child(1) {
    width: 30px;
    height: 30px;
  }
  #clinic02 .container__content .content .wrap.question li h6 {
    padding: 0px;
  }
  #clinic02 .container__content .content .wrap.question li span:nth-child(3) {
    padding-bottom: 0px;
  }
}
#clinic02 .container__content .content .wrap.question.type02 {
  grid-template-columns: repeat(1, 1fr);
}
#clinic02 .container__content .content .wrap.question.type02 li span:nth-child(3) dt {
  font-size: 1.2rem;
  line-height: 1.9rem;
}
@media screen and (max-width: 767px) {
  #clinic02 .container__content .content .wrap.question.type02 li span:nth-child(3) dt {
    line-height: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  #clinic02 .container__content .content {
    padding: 40px 20px;
  }
}
@media screen and (max-width: 767px) {
  #clinic02 .container__content #care02 .wrap .txt, #clinic02 .container__content #care04 .wrap .txt {
    grid-row: 2;
  }
}
#clinic02 .container__content #care01, #clinic02 .container__content #care02, #clinic02 .container__content #care03 {
  scroll-margin-top: 90px;
}
@media screen and (max-width: 767px) {
  #clinic02 .container__content #care01, #clinic02 .container__content #care02, #clinic02 .container__content #care03 {
    scroll-margin-top: 200px;
  }
}
#clinic02 .container__content [id^=care] .wrap .txt p:nth-child(2) b {
  color: var(--pri3);
}

/*clinic03*/
#clinic03 .container > ul {
  margin-top: 30px;
  display: flex;
}
#clinic03 .container > ul li {
  text-align: center;
  padding: 20px;
  flex-basis: 25%;
  border-right: 1px solid rgba(161, 161, 161, 0.2901960784);
}
#clinic03 .container > ul li span {
  display: block;
}
#clinic03 .container > ul li span > img {
  margin: 0 auto;
}
#clinic03 .container > ul li > h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  color: var(--pri2);
}
#clinic03 .container > ul li:last-of-type {
  border-right: 0;
}
@media (width <= 1000px) {
  #clinic03 .container > ul {
    flex-wrap: wrap;
    margin-top: 60px;
  }
  #clinic03 .container > ul li {
    flex-basis: 50%;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  #clinic03 .container > ul li > h6 {
    line-height: 1.8rem;
  }
  #clinic03 .container > ul li:nth-child(1) {
    border-bottom: 1px solid rgba(161, 161, 161, 0.2901960784);
  }
  #clinic03 .container > ul li:nth-child(2) {
    border-bottom: 1px solid rgba(161, 161, 161, 0.2901960784);
    border-right: 0;
  }
}
@media screen and (max-width: 767px) {
  #clinic03 .container > ul li {
    padding: 0px;
  }
  #clinic03 .container > ul li span > img {
    width: 30px;
    height: 30px;
  }
  #clinic03 .container > ul li:nth-child(1) {
    padding-right: 10px;
    padding-bottom: 30px;
  }
  #clinic03 .container > ul li:nth-child(2) {
    padding-left: 10px;
    padding-bottom: 30px;
  }
  #clinic03 .container > ul li:nth-child(3) {
    padding-right: 10px;
    padding-top: 30px;
  }
  #clinic03 .container > ul li:nth-child(4) {
    padding-left: 10px;
    padding-top: 30px;
  }
}
#clinic03 .container .container__txt p b {
  color: var(--pri1);
}
#clinic03 .container .container__content .pointer {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  margin-top: 20px;
}
#clinic03 .container .container__content .pointer li {
  padding: 60px;
  position: relative;
  overflow: hidden;
}
#clinic03 .container .container__content .pointer li:after {
  position: absolute;
  right: -10%;
  bottom: 20%;
  font-size: 300px;
  font-weight: bold;
  z-index: 0;
}
#clinic03 .container .container__content .pointer li p:nth-child(1) {
  font-size: 25px;
  font-weight: 600;
  color: var(--pri1);
  margin-bottom: 47px;
}
#clinic03 .container .container__content .pointer li p:nth-child(2) {
  color: var(--black-a65);
  position: relative;
  z-index: 1;
}
#clinic03 .container .container__content .pointer li:nth-child(1) {
  background-color: var(--sub1);
}
#clinic03 .container .container__content .pointer li:nth-child(1):after {
  content: "1";
  color: var(--sub1-1);
}
#clinic03 .container .container__content .pointer li:nth-child(2) {
  background-color: var(--sub1-1);
}
#clinic03 .container .container__content .pointer li:nth-child(2):after {
  content: "2";
  color: var(--sub1);
}
#clinic03 .container .container__content .pointer li:nth-child(3) {
  background-color: var(--sub1);
}
#clinic03 .container .container__content .pointer li:nth-child(3):after {
  content: "3";
  color: var(--sub1-1);
}
@media screen and (max-width: 1023px) {
  #clinic03 .container .container__content .pointer {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  #clinic03 .container .container__content .pointer li {
    padding: 30px;
  }
  #clinic03 .container .container__content .pointer li p:nth-child(1) {
    margin-bottom: 20px;
  }
  #clinic03 .container .container__content .pointer li:after {
    position: absolute;
    right: -10%;
    bottom: 20%;
    font-size: 200px;
    font-weight: bold;
    z-index: 0;
  }
  #clinic03 .container .container__content > img {
    height: 300px;
  }
}
#clinic03 .container .wrap.question {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background-color: var(--pri2);
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
}
#clinic03 .container .wrap.question li {
  padding: 100px 30px 30px 30px;
  color: white;
  position: relative;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.377);
  border-bottom: 1px solid rgba(255, 255, 255, 0.377);
}
#clinic03 .container .wrap.question li span {
  display: block;
}
#clinic03 .container .wrap.question li span:nth-child(1) {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translate(-50%, 0%);
  border-radius: 999px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #4765A8;
  color: #35e1ff;
}
#clinic03 .container .wrap.question li span:nth-child(1)::before {
  content: "";
  width: 1px;
  height: 30px;
  background-color: #4765A8;
  position: absolute;
  top: 0;
  margin-top: -30px;
}
#clinic03 .container .wrap.question li h6 {
  color: #35e1ff;
}
#clinic03 .container .wrap.question li span:nth-child(3) {
  padding: 10px 0px;
  word-break: auto-phrase;
}
#clinic03 .container .wrap.question li span:nth-child(3) b {
  color: #35e1ff;
}
@media screen and (max-width: 1023px) {
  #clinic03 .container .wrap.question {
    grid-template-columns: repeat(1, 1fr);
  }
  #clinic03 .container .wrap.question li {
    padding: 30px;
    text-align: left;
  }
  #clinic03 .container .wrap.question li span:nth-child(1) {
    position: relative;
    top: 0px;
    transform: translate(0%, 0%);
    left: 0px;
  }
  #clinic03 .container .wrap.question li span:nth-child(1)::before {
    display: none;
  }
  #clinic03 .container .wrap.question li h6 {
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  #clinic03 .container .wrap.question li span:nth-child(1) {
    width: 30px;
    height: 30px;
  }
}

/*장비소개*/
#equipment {
  background-color: var(--sub1-1);
}
#equipment .banner {
  padding-top: 170px;
  padding-bottom: 200px;
  background-color: #1FAFE3;
  text-align: center;
  color: white;
  background-size: cover;
}
#equipment .banner hgroup img {
  margin: 0 auto;
  margin-bottom: 50px;
}
#equipment .banner hgroup h4 {
  margin-bottom: 30px;
}
#equipment .banner hgroup h4 b {
  color: #fff900;
}
#equipment .banner hgroup h6 {
  margin-bottom: 40px;
}
#equipment .banner hgroup > ul {
  display: flex;
  gap: 30px;
  justify-content: center;
}
#equipment .banner hgroup > ul li {
  text-align: center;
  position: relative;
  padding: 30px 50px;
  display: inline-block;
}
#equipment .banner hgroup > ul li b {
  color: #fff900;
}
#equipment .banner hgroup > ul li:before {
  content: url(/common/img/user/main/equip/leaf-left.png);
  position: absolute;
  top: 30%;
  left: 0;
}
#equipment .banner hgroup > ul li:after {
  content: url(/common/img/user/main/equip/leaf-right.png);
  position: absolute;
  top: 30%;
  right: 0;
}
@media (width <= 1000px) {
  #equipment .banner hgroup > ul {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  #equipment .banner hgroup > ul li {
    padding: 0 50px;
    width: 90%;
  }
  #equipment .banner hgroup > ul li:before {
    top: 0%;
  }
  #equipment .banner hgroup > ul li:after {
    top: 0%;
  }
}
@media screen and (max-width: 767px) {
  #equipment .banner {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  #equipment .banner hgroup {
    padding: 0 30px;
  }
}
#equipment .container {
  max-width: 1600px;
}
#equipment .container .container__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
#equipment .container .container__content li {
  padding: 30px;
  background-color: white;
}
#equipment .container .container__content li h6:nth-child(1) {
  font-weight: 600;
  color: var(--pri1);
}
#equipment .container .container__content li span {
  margin-bottom: 20px;
  display: inline-block;
  color: var(--gray7);
}
#equipment .container .container__content li p {
  height: 180px;
  overflow-y: auto;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  #equipment .container .container__content {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  #equipment .container .container__content li {
    padding: 10px;
  }
  #equipment .container .container__content li span {
    display: none;
  }
  #equipment .container .container__content li p:nth-child(3) {
    display: none;
  }
  #equipment .container .container__content li h6:nth-child(1) {
    font-size: 14px;
    max-height: 50px;
    height: auto;
    margin-bottom: 10px;
  }
}

/*둘러보기*/
#Preview {
  overflow: hidden;
  background-color: var(--pri2);
}
#Preview .container .container__txt {
  margin-bottom: 60px;
  color: white;
}
#Preview .container .container__txt b {
  color: #00f1ff;
}
#Preview .container .container__txt p {
  color: white;
}
#Preview .container .swiper-container.slider {
  overflow: hidden;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  #Preview .container .swiper-container.slider {
    margin-bottom: 10px;
  }
}
#Preview .container .slider-thumbnail .swiper-wrapper {
  transform: none !important;
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
}
#Preview .container .slider-thumbnail .swiper-wrapper .swiper-slide {
  cursor: pointer;
  opacity: 0.7;
}
#Preview .container .slider-thumbnail .swiper-wrapper .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}
#Preview .container .slider-thumbnail .swiper-wrapper .swiper-slide img {
  margin-bottom: 10px;
}

/*info*/
#info .container__txt {
  margin-top: 150px;
}
#info .container__content {
  margin: 0 auto;
  margin-top: 80px;
  max-width: 1600px;
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 80px;
}
#info .container__content .new-info-txt h6:nth-child(1) {
  color: #2e3191;
  border: 4px solid #2e3191;
  border-radius: 999px;
  text-align: center;
  padding: 5px 60px;
  margin-bottom: 30px;
}
#info .container__content .new-info-txt ul:nth-child(2) {
  margin-bottom: 30px;
}
#info .container__content .new-info-txt ul:nth-child(2) li {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--black-a10);
  padding-bottom: 15px;
}
#info .container__content .new-info-txt ul:nth-child(2) li > div:nth-child(1) {
  flex-basis: 100px;
  display: flex;
  justify-content: space-between;
}
#info .container__content .new-info-txt ul:nth-child(2) li > div:nth-child(1) span {
  font-weight: bold;
}
#info .container__content .new-info-txt ul:nth-child(2) li:last-of-type {
  border: 0px;
  margin-bottom: 0px;
  padding-bottom: 0px;
}
#info .container__content .new-info-txt ul:nth-child(2) li:last-of-type p:nth-child(1) {
  color: #00a4ff;
  font-weight: bold;
}
#info .container__content .new-info-txt h6:nth-child(3) {
  background-color: #2e3191;
  color: white;
  padding: 5px 60px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
}
#info .container__content .new-info-txt h6:nth-child(3) div {
  font-weight: bold;
  background-color: #ffff00;
  color: black;
  border: 2px solid black;
  border-radius: 999px;
  padding: 10px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#info .container__content > img {
  width: 30%;
}
@media (width <= 1123px) {
  #info .container__content {
    flex-direction: column;
    gap: 80px;
    align-items: center;
  }
  #info .container__content > img {
    width: 80%;
  }
}
@media screen and (max-width: 1023px) {
  #info .container__content {
    /*
    .info-txt{
        width: 100%;
        padding-bottom:80px;
    }
    */
  }
  #info .container__content > img {
    width: 80%;
  }
  #info .container__content .new-info-txt ul li {
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  #info .container__content {
    margin-top: 40px;
    gap: 40px;
    /*
    .info-txt{
        padding:30px;
        ul.time{
            li{
                border-bottom:1px solid var(--black-a15);
                margin-bottom:10px;
                padding-bottom:10px;
                span:nth-child(1){
                    flex-basis:100px;
                }
                &:last-of-type{
                    border:0px;
                }
            }
        }

    }
    */
  }
  #info .container__content .new-info-txt h6:nth-child(3) {
    padding: 5px 0px;
    justify-content: center;
  }
  #info .container__content .new-info-txt ul:nth-child(2) li > div:nth-child(1) span {
    font-size: 15px;
  }
  #info .container__content .new-info-txt ul:nth-child(2) li > div:nth-child(2) p {
    font-size: 15px;
  }
}
#info .info-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
}
#info .info-call h1 {
  font-family: var(--Mont);
  font-weight: bold;
  color: #2e3191;
}
@media screen and (max-width: 1023px) {
  #info .info-call h1 {
    font-family: var(--Mont);
  }
}
@media screen and (max-width: 767px) {
  #info .info-call h1 {
    font-family: var(--Mont);
  }
}
@media screen and (max-width: 767px) {
  #info .info-call {
    gap: 10px;
    margin-top: 15px;
  }
  #info .info-call img {
    width: 60px;
  }
  #info .info-call h1 {
    font-size: 2.7rem;
    line-height: 3rem;
  }
}
#info #map {
  max-width: 1200px;
  width: 90%;
  height: 500px;
  background-color: rgb(231, 231, 231);
  margin: 0 auto;
  margin-top: 100px;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  #info #map {
    height: 300px;
    margin-top: 100px;
  }
}

/*문구강조*/
.appeal-pri1 {
  font-weight: bold;
  color: var(--pri1);
}

.appeal-pri2 {
  font-weight: bold;
  color: var(--pri4);
}

.appeal-sub1 {
  font-weight: bold;
  color: var(--sub1);
}

.appeal-sub2 {
  font-weight: bold;
  color: var(--sub2);
}

.appeal-second1 {
  font-weight: bold;
  background-color: var(--second1);
  color: var(--sub1);
}

.appeal-second2 {
  font-weight: bold;
  background-color: var(--second2);
  color: black;
}

.appeal-second3 {
  font-weight: bold;
  background-color: var(--second3);
  color: black;
}

#subTop {
  padding: 150px 0;
  background-color: var(--sub1);
}
#subTop .txt-wrap {
  text-align: center;
}
#subTop .txt-wrap h4 {
  margin-bottom: 10px;
}

.pay {
  text-align: center;
  padding: 150px 0;
}

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

#join .step01 ul li:nth-child(1) {
  font-family: var(--preten);
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 170%;
  letter-spacing: -0.6px;
  margin-bottom: 0.3125rem;
}
@media screen and (max-width: 1023px) {
  #join .step01 ul li:nth-child(1) {
    font-family: var(--preten);
    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(--preten);
    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(--preten);
  border: 0;
  height: 100%;
}
#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;
}
#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;
}
@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) input {
    flex-basis: 100%;
  }
  #join .step02 ul li:nth-child(2) .btn {
    flex-basis: 100%;
  }
}

#login form {
  width: 100%;
}
#login form input {
  width: 100%;
  margin-bottom: 1.25rem;
}
#login form .login-info {
  display: flex;
  justify-content: space-between;
}
#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(--preten);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
  display: none;
  position: fixed;
  background-color: white;
  z-index: 110;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1023px) {
  .modal-con {
    font-family: var(--preten);
    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(--preten);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 1023px) {
  .modal-con {
    width: 80%;
  }
}
.modal-con .close {
  width: 30px;
  height: 30px;
  top: 20px;
  right: 20px;
  position: absolute;
  z-index: 2;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .modal-con .close {
    top: -40px;
    right: 20px;
  }
}
.modal-con .close:before,
.modal-con .close:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0%;
  width: 100%;
  height: 2px;
  background: var(--white);
  margin: auto;
}
.modal-con .close:before {
  transform: rotate(45deg);
}
.modal-con .close:after {
  transform: rotate(-45deg);
}

.privacy {
  background-color: var(--pri1);
  color: var(--white);
  padding: 1.875rem;
  border-radius: 20px;
  position: fixed;
}

.alert .popcont {
  padding-top: 2.5rem;
  padding-right: 2.5rem;
  padding-left: 2.5rem;
  text-align: center;
}
.alert .popcont p:nth-child(1) {
  font-family: var(--preten);
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: -0.88px;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 1023px) {
  .alert .popcont p:nth-child(1) {
    font-family: var(--preten);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -0.72px;
  }
}
@media screen and (max-width: 767px) {
  .alert .popcont p:nth-child(1) {
    font-family: var(--preten);
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -0.72px;
  }
}
.alert .popcont input {
  background-color: var(--gray1);
  width: 80%;
  margin: 0 auto;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border: 0;
  text-align: center;
  font-family: var(--preten);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1023px) {
  .alert .popcont input {
    font-family: var(--preten);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 767px) {
  .alert .popcont input {
    font-family: var(--preten);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
.alert .popcont p:nth-child(3) {
  font-family: var(--preten);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.48px;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 1023px) {
  .alert .popcont p:nth-child(3) {
    font-family: var(--preten);
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.4px;
  }
}
@media screen and (max-width: 767px) {
  .alert .popcont p:nth-child(3) {
    font-family: var(--preten);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.4px;
  }
}
.alert .popcont p:nth-child(3) i {
  color: var(--gray6);
}
.alert .button-wrap {
  width: 100%;
}
.alert .button-wrap button {
  text-align: center;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  width: 50%;
  font-family: var(--preten);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1023px) {
  .alert .button-wrap button {
    font-family: var(--preten);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 767px) {
  .alert .button-wrap button {
    font-family: var(--preten);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
.alert .button-wrap .check {
  background-color: var(--pri1);
  color: var(--white);
}
.alert .button-wrap .one {
  width: 100%;
  background-color: var(--pri1);
  color: var(--white);
}
.alert .button-wrap .close {
  border-top: 1px solid var(--black-a15);
}

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

.pay {
  font-family: var(--preten);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
  text-align: center;
  padding-top: 150px;
  max-width: 1400px;
  width: 80%;
  margin: 0 auto;
  overflow-x: auto;
}
@media screen and (max-width: 1023px) {
  .pay {
    font-family: var(--preten);
    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(--preten);
    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);
}
.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::-webkit-scrollbar {
  height: 5px;
}
@media screen and (max-width: 780px) {
  .pay table {
    width: 780px;
  }
}

.pay-padding {
  height: 150px;
}

#board {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  margin-bottom: 9.375rem;
  margin-top: 6.25rem;
  /*게시판공통*/
  /*검색&글쓰기*/
  /*토탈(공통)*/
  /*탭(공통)*/
  /*더보기버튼(공통)*/
  /*페이지버튼(공통)*/
}
#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(--pri1);
}
#board .board li {
  cursor: pointer;
  transition: all 0.5s ease;
}
#board .board .list-title {
  font-family: var(--preten);
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1023px) {
  #board .board .list-title {
    font-family: var(--preten);
    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(--preten);
    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(--preten);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1023px) {
  #board .control .search input {
    font-family: var(--preten);
    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(--preten);
    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(--preten);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
#board .control .board-write-btn i {
  margin-right: 1em;
}
@media screen and (max-width: 1023px) {
  #board .control .board-write-btn {
    font-family: var(--preten);
    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(--preten);
    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(--preten);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1023px) {
  #board .total {
    font-family: var(--preten);
    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(--preten);
    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(--preten);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
  margin-top: 3.125rem;
  width: 300px;
  height: 50px;
}
@media screen and (max-width: 1023px) {
  #board .button-wrap .board-button {
    font-family: var(--preten);
    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(--preten);
    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;
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  color: var(--gray9);
  border-radius: 0.3rem;
}
#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 .list-category {
  text-align: center;
  border: 1px solid var(--pri1);
  border-radius: 20em;
  color: var(--pri1);
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  margin-right: 18px;
}
.online li .list-category.end {
  background-color: var(--pri1);
  color: white;
}
.online li .list-txt {
  flex-basis: 70%;
  padding: 0em;
}
.online li .list-txt:before {
  content: "\f023";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
  color: var(--pri1);
}
.online li .list-name {
  flex-basis: 5%;
  text-align: center;
}
.online li .list-data {
  flex-basis: 8%;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .online li {
    gap: 20px;
  }
  .online li .list-txt {
    flex-basis: 100%;
  }
  .online li .list-name {
    flex-basis: auto;
  }
}
.online li:hover .list-txt {
  text-decoration: underline;
}

/*view*/
.view .list-info {
  text-align: center;
  margin-bottom: 3.125rem;
}
.view .list-info .list-title {
  font-family: var(--preten);
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -1.12px;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 1023px) {
  .view .list-info .list-title {
    font-family: var(--preten);
    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(--preten);
    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(--Mont);
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -1.12px;
}
@media screen and (max-width: 1023px) {
  .view .list-info .list-title span {
    font-family: var(--Mont);
  }
}
@media screen and (max-width: 767px) {
  .view .list-info .list-title span {
    font-family: var(--Mont);
  }
}
@media screen and (max-width: 1023px) {
  .view .list-info .list-title span {
    font-family: var(--Mont);
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -1.04px;
  }
}
@media screen and (max-width: 1023px) and (max-width: 1023px) {
  .view .list-info .list-title span {
    font-family: var(--Mont);
  }
}
@media screen and (max-width: 1023px) and (max-width: 767px) {
  .view .list-info .list-title span {
    font-family: var(--Mont);
  }
}
@media screen and (max-width: 767px) {
  .view .list-info .list-title span {
    font-family: var(--Mont);
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -1.04px;
  }
}
@media screen and (max-width: 767px) and (max-width: 1023px) {
  .view .list-info .list-title span {
    font-family: var(--Mont);
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .view .list-info .list-title span {
    font-family: var(--Mont);
  }
}
.view .content {
  position: relative;
  font-family: var(--preten);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
  padding-bottom: 3.125rem;
  padding-top: 3.125rem;
  border-top: 1px solid var(--pri1);
}
@media screen and (max-width: 1023px) {
  .view .content {
    font-family: var(--preten);
    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(--preten);
    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(--preten);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
  border-radius: 999px;
}
@media screen and (max-width: 1023px) {
  .view .content .content-button button {
    font-family: var(--preten);
    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(--preten);
    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 .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(--preten);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  border-top: 1px solid var(--black-a15);
  border-bottom: 1px solid var(--black-a15);
}
@media screen and (max-width: 1023px) {
  .view .add-file {
    font-family: var(--preten);
    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(--preten);
    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(--preten);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1023px) {
  .write label {
    font-family: var(--preten);
    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(--preten);
    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(--preten);
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1023px) {
  .write ul li:nth-child(1) {
    font-family: var(--preten);
    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(--preten);
    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(--preten);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
  max-width: 100%;
}
@media screen and (max-width: 1023px) {
  .write ul li:nth-child(2) input, .write ul li:nth-child(2) textarea {
    font-family: var(--preten);
    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(--preten);
    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) .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);
}
@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: 20px;
}
.write .personal-infor h2 {
  font-family: var(--preten);
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: -0.88px;
}
@media screen and (max-width: 1023px) {
  .write .personal-infor h2 {
    font-family: var(--preten);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -0.72px;
  }
}
@media screen and (max-width: 767px) {
  .write .personal-infor h2 {
    font-family: var(--preten);
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -0.72px;
  }
}
.write .personal-infor p {
  padding: 1.25rem;
  background-color: var(--gray1);
  width: 100%;
}

/*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;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.notice li .list-data {
  margin-top: 1.25rem;
}
@media screen and (min-width: 1024px) and (max-width: 1920px) {
  .notice li:nth-child(3n+4) {
    margin-right: 0 !important;
  }
}
.notice li:before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0%;
  height: 2px;
  background-color: var(--pri1);
}
.notice li:hover:before {
  width: 100%;
  transition: all 0.5s ease;
}
.notice .notice .list-title:before {
  content: "[공지]  ";
  font-weight: bold;
  color: var(--pri1);
}
.notice .list-thumb.no-thumb:after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pri1);
  display: block;
}
@media screen and (max-width: 1023px) {
  .notice li {
    flex-basis: calc(50% - 20px);
  }
}
@media screen and (max-width: 767px) {
  .notice {
    flex-direction: column !important;
  }
  .notice li {
    margin: 0 0 2em 0;
    padding: 2em;
  }
}

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

/*event게시판*/
.event {
  justify-content: space-between !important;
}
.event li {
  flex-basis: calc(50% - 20px);
  margin-bottom: 2.5rem;
}
.event li .list-thumb {
  height: 300px;
  justify-content: center;
}
.event li .list-title {
  text-align: center;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
.event li .list-title span {
  padding-right: 1.25rem;
  font-family: var(--Mont);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1023px) {
  .event li .list-title span {
    font-family: var(--Mont);
  }
}
@media screen and (max-width: 767px) {
  .event li .list-title span {
    font-family: var(--Mont);
  }
}
@media screen and (max-width: 1023px) {
  .event li .list-title span {
    font-family: var(--Mont);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 1023px) and (max-width: 1023px) {
  .event li .list-title span {
    font-family: var(--Mont);
  }
}
@media screen and (max-width: 1023px) and (max-width: 767px) {
  .event li .list-title span {
    font-family: var(--Mont);
  }
}
@media screen and (max-width: 767px) {
  .event li .list-title span {
    font-family: var(--Mont);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 767px) and (max-width: 1023px) {
  .event li .list-title span {
    font-family: var(--Mont);
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .event li .list-title span {
    font-family: var(--Mont);
  }
}
@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=mainV1.css.map */