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

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

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

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

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

* {
  box-sizing: border-box;
}

li, a {
  list-style: none;
}

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

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

input {
  caret-color: black;
}

textarea {
  caret-color: black;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

    }
    @include mobile{

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

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

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

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

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

:root {
  /*gray*/
  --gray1: #FAFAFA;
  --gray2: #F2F2F2;
  --gray3: #ECECEC;
  --gray4: #F0F0F0;
  --gray5: #CFCFCF;
  --gray6: #BEBEBE;
  --gray7: #B7B7B7;
  --gray8: #ABABAB;
  --gray9: #A1A1A1;
  --gray10: #5E5E5E;
  /*black*/
  --black: #000;
  --black-a95: rgba(0, 0, 0, 0.95);
  --black-a90: rgba(0, 0, 0, 0.90);
  --black-a85: rgba(0, 0, 0, 0.85);
  --black-a80: rgba(0, 0, 0, 0.80);
  --black-a75: rgba(0, 0, 0, 0.75);
  --black-a70: rgba(0, 0, 0, 0.70);
  --black-a65: rgba(0, 0, 0, 0.65);
  --black-a60: rgba(0, 0, 0, 0.60);
  --black-a55: rgba(0, 0, 0, 0.55);
  --black-a50: rgba(0, 0, 0, 0.50);
  --black-a45: rgba(0, 0, 0, 0.45);
  --black-a40: rgba(0, 0, 0, 0.40);
  --black-a35: rgba(0, 0, 0, 0.35);
  --black-a30: rgba(0, 0, 0, 0.30);
  --black-a25: rgba(0, 0, 0, 0.25);
  --black-a20: rgba(0, 0, 0, 0.20);
  --black-a15: rgba(0, 0, 0, 0.15);
  --black-a10: rgba(0, 0, 0, 0.10);
  --black-a5: rgba(0, 0, 0, 0.05);
  /*white*/
  --white: #fff;
  --white-a95: rgba(255, 255, 255, 0.95);
  --white-a90: rgba(255, 255, 255, 0.90);
  --white-a85: rgba(255, 255, 255, 0.85);
  --white-a80: rgba(255, 255, 255, 0.80);
  --white-a75: rgba(255, 255, 255, 0.75);
  --white-a70: rgba(255, 255, 255, 0.70);
  --white-a65: rgba(255, 255, 255, 0.65);
  --white-a60: rgba(255, 255, 255, 0.60);
  --white-a55: rgba(255, 255, 255, 0.55);
  --white-a50: rgba(255, 255, 255, 0.50);
  --white-a45: rgba(255, 255, 255, 0.45);
  --white-a40: rgba(255, 255, 255, 0.40);
  --white-a35: rgba(255, 255, 255, 0.35);
  --white-a30: rgba(255, 255, 255, 0.30);
  --white-a25: rgba(255, 255, 255, 0.25);
  --white-a20: rgba(255, 255, 255, 0.20);
  --white-a15: rgba(255, 255, 255, 0.15);
  --white-a10: rgba(255, 255, 255, 0.10);
  --white-a5: rgba(255, 255, 255, 0.05);
  /*pri 1*/
  --pri1: #109E86;
  /*pri 2*/
  --pri2: #043772;
  /*pri 3*/
  --pri3: #FAAC2F;
  /*sub*/
  --sub1: #F4FBF7;
  --sub1-1: #8A9D93;
  --sub1-2: #1F8278;
  --sub1-3: #0F5B53;
  /*sub*/
  --sub2: #F9FAFD;
  --sub2-1: #BBBBC5;
  --sub2-2: #6883A2;
  --sub2-3: #2769B7;
  /*sub*/
  --sub3: #F9F5EE;
  --sub3-1: #FFA20C;
  --sub3-2: #D49B3E;
  --sub3-3: #96876D;
  /*sns*/
  --kakao: #ffbb00;
  --naver: #58D30C;
  --daum: #618FFC;
  --youtube: #FD0532;
}

@font-face {
  font-family: "JalnanGothic";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_231029@1.1/JalnanGothic.woff") format("woff");
}
:root {
  --nomal: "Pretendard", sans-serif;
  --point: "JalnanGothic";
}

/* 폰트셋팅*/
html, body {
  font-size: 16px;
}
@media screen and (max-width: 1023px) {
  html, body {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  html, body {
    font-size: 12px;
  }
}

h1 {
  font-family: var(--point);
  font-size: 3.25rem;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.125rem;
}
@media screen and (max-width: 1023px) {
  h1 {
    font-family: var(--point);
  }
}
@media screen and (max-width: 767px) {
  h1 {
    font-family: var(--point);
  }
}

h2 {
  font-family: var(--point);
  font-size: 3rem;
  font-weight: 400;
  line-height: 130%; /* 3.9rem */
  letter-spacing: -0.125rem;
}
@media screen and (max-width: 1023px) {
  h2 {
    font-family: var(--point);
  }
}
@media screen and (max-width: 767px) {
  h2 {
    font-family: var(--point);
  }
}

h3 {
  font-family: var(--point);
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 130%; /* 2.925rem */
  letter-spacing: -0.125rem;
}
@media screen and (max-width: 1023px) {
  h3 {
    font-family: var(--point);
  }
}
@media screen and (max-width: 767px) {
  h3 {
    font-family: var(--point);
  }
}

h4 {
  font-family: var(--point);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 130%; /* 1.95rem */
  letter-spacing: -0.125rem;
}
@media screen and (max-width: 1023px) {
  h4 {
    font-family: var(--point);
  }
}
@media screen and (max-width: 767px) {
  h4 {
    font-family: var(--point);
  }
}

h5 {
  font-family: var(--point);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 130%; /* 1.625rem */
  letter-spacing: -0.0625rem;
}
@media screen and (max-width: 1023px) {
  h5 {
    font-family: var(--point);
  }
}
@media screen and (max-width: 767px) {
  h5 {
    font-family: var(--point);
  }
}

h6 {
  font-family: var(--point);
  font-size: 1.1875rem;
  font-weight: 400;
  line-height: 130%; /* 1.54375rem */
  letter-spacing: -0.0625rem;
}
@media screen and (max-width: 1023px) {
  h6 {
    font-family: var(--point);
  }
}
@media screen and (max-width: 767px) {
  h6 {
    font-family: var(--point);
  }
}

div, a, span, p, ul, ol, li, dd, dt, dl, table, button, select, input {
  font-family: var(--nomal);
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 180%; /* 2.025rem */
  letter-spacing: -0.03125rem;
}

b {
  font-weight: 700;
}

.small {
  font-family: var(--nomal);
  font-size: 1rem;
  font-weight: 400;
  line-height: 180%; /* 1.8rem */
  letter-spacing: -0.03125rem;
}

/*삭제금지*/
/*common*/
footer {
  background-color: var(--sub2-2);
  color: rgba(255, 255, 255, 0.495);
  padding: 50px 0px;
  margin-top: 150px;
}
footer .container {
  width: 90%;
  margin: 0 auto;
  position: relative;
}
footer .container ul {
  display: flex;
  gap: 50px;
}
footer .container ul .label {
  color: rgba(255, 255, 255, 0.612);
  margin-right: 5px;
}
footer .container li.admin-button {
  display: inline-block;
  padding: 0px 20px;
  border-radius: 999px;
  border: 1px solid var(--white-a30);
  margin-top: 30px;
}
footer .container li a.pay {
  color: white;
}
footer .container > img {
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 1023px) {
  footer .container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  footer .container ul {
    order: 1;
  }
  footer .container li.admin-button {
    order: 2;
  }
  footer .container > img {
    position: relative;
    order: 0;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  footer {
    padding-bottom: 150px;
  }
  footer .container ul {
    flex-direction: column;
    gap: 0px;
  }
  footer .container ul li, footer .container ul span {
    font-size: 12px;
  }
}

header {
  position: fixed;
  z-index: 130;
  width: 94%;
  left: 3%;
  top: 3%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .menu {
  display: flex;
  border-radius: 999px;
  padding: 0 20px;
  background-color: white;
  border: 1px solid #d0e7e5;
}
header .menu li a {
  display: block;
  padding: 15px 20px;
  cursor: pointer;
  color: var(--sub1-4);
  position: relative;
}
header .menu li a:hover::after {
  content: "";
  position: absolute;
  top: 95%;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background-color: var(--pri2);
  border-radius: 50%;
}
header .menu li a.active-link {
  font-weight: bold;
  color: var(--pri2);
}
@media (width <= 1261px) {
  header .menu li a {
    font-size: 16px;
  }
}
@media (width <= 1200px) {
  header .menu li a {
    padding: 10px 10px;
  }
}
@media (width <= 1024px) {
  header .menu {
    display: none;
  }
}
header .mobile_menu {
  display: block;
  position: fixed;
  top: 10%;
  right: 5%;
  width: 50%;
  height: auto;
  border-radius: 20px;
  padding: 10px 20px;
}
header .mobile_menu li a:hover::after {
  left: 0%;
  top: 50%;
  transform: translateY(-50%);
}
header .Util {
  display: none;
  width: 40px;
  height: 40px;
  background-color: var(--pri2);
  border-radius: 60px;
  cursor: pointer;
  position: relative;
}
header .Util .sitemap {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
header .Util .sitemap p {
  position: absolute;
  width: 100%;
  height: 2px;
  display: block;
  background: #fff;
  right: 0;
  transition: all 0.2s linear;
}
header .Util .sitemap p.one {
  top: 8px;
}
header .Util .sitemap p.two {
  top: 13px;
  width: 70%;
}
header .Util .sitemap p.three {
  width: 100%;
  bottom: 10px;
}
header .Util:hover .sitemap p {
  width: 100% !important;
}
header .Util .sitemap.close p.one {
  top: 14px;
  transform: rotate(135deg);
}
header .Util .sitemap.close p.two {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  right: -60px;
}
header .Util .sitemap.close p.three {
  top: 14px;
  transform: rotate(-135deg);
}
@media (width <= 1024px) {
  header .Util {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  header {
    top: 2%;
    width: 90%;
    left: 5%;
  }
  header .logo {
    width: 50%;
  }
}
@media (width <= 320px) {
  header .mobile_menu {
    width: 80%;
  }
}

.white-header .menu {
  border: 1px solid #d0e7e5;
}

.dark-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 125;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.quick__wrap {
  position: sticky;
  bottom: 4%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  z-index: 110;
  width: 90%;
  transition: width 0.3s ease;
}

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

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

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

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

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

/*pages*/
:root {
  --secpt: 200px;
  --secpb: 200px;
}

#info,
#gallery,
#doctor,
#clinic,
#equip,
#care,
#special {
  padding-top: var(--secpt);
  padding-bottom: var(--secpb);
}

h3 {
  position: relative;
  display: inline-block;
}
h3:before {
  content: "";
  background-image: url("/common/img/user/icon/visual.svg");
  background-repeat: no-repeat;
  background-size: cover;
  display: inline-block;
  transform: translateY(-50%);
  animation: float 2s ease-in-out infinite;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  margin-bottom: 18px;
}
@media screen and (max-width: 767px) {
  h3:before {
    width: 15px;
    height: 15px;
  }
}

#equip .container .title h3:before {
  position: absolute;
  right: -8%;
  top: -32%;
}
@media screen and (max-width: 767px) {
  #equip .container .title h3:before {
    right: -16%;
    top: -12%;
  }
}

#care h3:before {
  position: absolute;
  left: -4%;
  top: -12%;
}
@media screen and (max-width: 767px) {
  #care h3:before {
    left: -8%;
  }
}

#special h3:before {
  position: absolute;
  right: -8%;
  top: -9%;
}
@media screen and (max-width: 767px) {
  #special h3:before {
    right: 6%;
    top: -12%;
  }
}

#Mainslide {
  width: 100%;
  margin: 0 auto;
  position: relative;
  height: 100vh;
}
#Mainslide .swiper {
  width: 100%;
  height: 100%;
}
#Mainslide .swiper .swiper-slide .text-wrap {
  position: absolute;
  text-align: left;
  z-index: 1;
  width: 80%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  display: flex;
  gap: 50px;
  flex-direction: column;
}
#Mainslide .swiper .swiper-slide .text-wrap span {
  display: block;
  overflow: hidden;
  transition-delay: 0.3s;
}
#Mainslide .swiper .swiper-slide .text-wrap span p {
  color: var(--black-a60);
}
#Mainslide .swiper .swiper-slide .text-wrap span p, #Mainslide .swiper .swiper-slide .text-wrap span h2 {
  transition-property: transform;
  transition-duration: 0.6s;
  transform: translateY(500%);
  display: block;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  display: block;
  transition-delay: inherit;
  opacity: 0;
}
#Mainslide .swiper .swiper-slide img {
  width: 100%;
  height: 100%;
}
#Mainslide .swiper .slide01 .text-wrap span h2 {
  color: #435F89;
}
#Mainslide .swiper .slide02 .text-wrap span h2 {
  color: var(--pri3);
}
#Mainslide .swiper .slide03 .text-wrap span h2 {
  color: var(--pri2);
}
#Mainslide .swiper .swiper-slide-active .text-wrap span p, #Mainslide .swiper .swiper-slide-active .text-wrap span h2 {
  transform: translateY(0);
  opacity: 1;
}
#Mainslide .swiper .swiper-slide-active .text-wrap span h2 {
  transition-delay: 0.3s;
}
#Mainslide .swiper .swiper-slide-active .text-wrap span p {
  transition-delay: 0.5s;
}
#Mainslide .swiper .swiper-slide-active img {
  transform: scale(1.025);
  transition: transform 5s ease;
  background-position: center center;
}
@media screen and (min-width: 1024px) and (max-width: 1600px) {
  #Mainslide {
    height: 80vh;
  }
}
@media screen and (max-width: 1023px) {
  #Mainslide .swiper .swiper-slide .text-wrap {
    transform: translate(-50%, -50%);
  }
}
@media screen and (max-width: 767px) {
  #Mainslide .swiper .swiper-slide .text-wrap {
    top: 30%;
    width: 80%;
    gap: 20px;
  }
  #Mainslide .swiper .swiper-slide .text-wrap span h2 {
    text-align: center;
    word-break: keep-all;
    font-size: 1.9rem;
  }
  #Mainslide .swiper .swiper-slide .text-wrap span p {
    text-align: center;
  }
}

#info {
  max-width: 1500px;
  margin: 0 auto;
  width: 80%;
  padding-bottom: 0px;
}
#info .title {
  width: 100%;
  margin-bottom: 80px;
}
#info .title h3 {
  color: var(--pri1);
}
#info .info-top {
  display: flex;
  gap: 100px;
}
#info .info-top .parking .info-title {
  display: flex;
  width: 100%;
  align-items: center;
  flex-direction: row;
  gap: 20px;
  padding-bottom: 30px;
}
#info .info-top .parking .info-title h4 {
  color: var(--black-a65);
}
#info .info-top .parking p {
  margin-bottom: 20px;
  background-color: var(--pri3);
  color: white;
  margin-top: 30px;
  display: inline-block;
  padding: 5px 20px;
  border-radius: 999px;
}
#info .info-top .parking li:nth-child(3) b {
  color: var(--pri3);
}
#info .info-top .parking li:nth-child(4) b {
  color: var(--pri1);
}
#info .info-top .parking li:nth-child(5) b {
  color: var(--pri2);
}
#info .info-top .map {
  background-color: var(--gray2);
  width: 100%;
  height: 600px;
  position: relative;
}
#info .info-top .map .address {
  position: absolute;
  top: 5%;
  left: 2%;
  z-index: 100;
  padding: 50px;
  background-color: white;
}
#info .info-top .map .address b {
  color: var(--pri2);
}
@media (width <= 1200px) {
  #info .info-top .map {
    width: 100%;
    height: 500px;
    position: relative !important;
  }
}
@media screen and (max-width: 767px) {
  #info .info-top .map .address {
    bottom: 2%;
    top: auto;
  }
}
@media screen and (max-width: 1023px) {
  #info .info-top {
    flex-direction: column;
    gap: 30px;
  }
}
#info .info-bottom {
  margin-top: 100px;
  display: flex;
  justify-content: space-between;
  gap: 100px;
  padding-bottom: 100px;
}
#info .info-bottom .info-title {
  display: flex;
  width: 100%;
  align-items: center;
  flex-direction: row;
  gap: 20px;
  border-bottom: 1px solid var(--black-a20);
  margin-bottom: 30px;
  padding-bottom: 30px;
}
#info .info-bottom .info-title h4 {
  color: var(--black-a65);
}
#info .info-bottom .time {
  flex-basis: 40%;
}
#info .info-bottom .time ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
#info .info-bottom .time li {
  display: flex;
  gap: 30px;
  margin-bottom: 10px;
}
#info .info-bottom .time li > div:nth-child(1) {
  display: flex;
  flex-basis: 80px;
  justify-content: space-between;
  flex-shrink: 0;
  color: var(--black-a50);
}
#info .info-bottom .time li:last-of-type {
  color: var(--pri2);
}
#info .info-bottom .call {
  flex-basis: 20%;
}
#info .info-bottom .sns-button-wrap {
  display: flex;
  gap: 20px;
}
#info .info-bottom .sns-button-wrap a {
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: white;
  gap: 10px;
  border-radius: 20px;
}
#info .info-bottom .sns-button-wrap a img {
  width: 40%;
}
#info .info-bottom .sns-button-wrap a.insta {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
#info .info-bottom .sns-button-wrap a.blog {
  background-color: var(--naver);
}
@media (width <= 1720px) {
  #info .info-bottom {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  #info .info-bottom .time ul {
    grid-template-columns: 1fr;
  }
  #info .info-bottom .sns-button-wrap a {
    height: 100px;
    gap: 5px;
  }
  #info .info-bottom .sns-button-wrap a img {
    width: 20%;
  }
}

#gallery {
  width: 100%;
  background-color: var(--sub1);
}
#gallery .container {
  max-width: 1710px;
  margin-left: auto;
  width: 90%;
}
#gallery .container h3 {
  margin-bottom: 20px;
  color: var(--sub1-3);
}
#gallery .container p {
  margin-bottom: 20px;
  color: var(--sub1-1);
}
#gallery .container .swiper .swiper-wrapper {
  margin-top: 100px;
  align-items: center;
}
#gallery .container .swiper .swiper-wrapper .swiper-slide {
  opacity: 0.5;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
#gallery .container .swiper .swiper-wrapper .swiper-slide img {
  width: 85%;
}
#gallery .container .swiper .swiper-wrapper .swiper-slide-active {
  opacity: 1;
}
#gallery .container .swiper .swiper-wrapper .swiper-slide-active img {
  width: 100%;
}
@media screen and (max-width: 1023px) {
  #gallery .container {
    margin: 0 auto;
  }
  #gallery .container .swiper .swiper-wrapper {
    margin-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  #gallery .container {
    width: 90%;
  }
}
@media (width <= 320px) {
  #gallery .container p {
    width: 95%;
  }
}
@media (width >= 1921px) {
  #gallery .container {
    margin: auto;
    width: 1500px;
  }
}

#doctor {
  display: flex;
  align-items: flex-start;
  max-width: 1500px;
  width: 90%;
  gap: 100px;
  margin: 0 auto;
  padding-top: 0px !important;
  scroll-margin-top: 150px;
}
#doctor .img {
  width: 530px;
  flex-shrink: 0;
  position: sticky;
  top: 100px;
}
#doctor .img img {
  z-index: 2;
  position: relative;
}
#doctor .img:after {
  content: url("/common/img/user/symbol.svg");
  position: absolute;
  top: 0;
  left: 60%;
  z-index: 1;
}
#doctor .txt .title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 35px;
  flex: 1 0 0;
}
#doctor .txt .title h5 {
  color: var(--sub2-2, #9EACA4);
}
#doctor .txt .title span {
  display: flex;
  align-items: center;
  gap: 20px;
}
#doctor .txt .title span h1 {
  color: var(--pri2);
}
#doctor .txt .title span p {
  background-color: var(--pri1);
  color: white;
  padding: 5px 30px;
  font-weight: bold;
  border-radius: 999px;
}
#doctor .txt .title h4 {
  color: var(--pri2);
}
#doctor .txt .point {
  margin-top: 50px;
  display: flex;
  align-items: flex-start;
  gap: 2%;
  align-self: stretch;
  flex-wrap: wrap;
}
#doctor .txt .point li {
  flex-basis: 48%;
  color: var(--pri1);
}
#doctor .txt .profile {
  display: flex;
  align-items: flex-start;
  gap: 2%;
  align-self: stretch;
  margin-top: 35px;
}
#doctor .txt .profile ul {
  flex-basis: 48%;
}
#doctor .txt .profile ul span.body01 {
  margin-bottom: 15px;
  display: block;
  color: var(--sub2-5);
}
#doctor .txt .profile ul li {
  margin-bottom: 5px;
}
@media (width <= 1500px) {
  #doctor {
    align-items: flex-start;
    justify-content: center;
    gap: 50px;
    width: 90%;
  }
  #doctor .img {
    position: sticky;
    top: 100px;
    flex-basis: 40%;
  }
  #doctor .txt {
    flex-basis: 48%;
  }
  #doctor .txt .point li {
    flex-basis: 100%;
  }
  #doctor .txt .profile {
    flex-direction: column;
    gap: 30px;
  }
  #doctor .txt .profile ul {
    flex-basis: 100%;
  }
}
@media screen and (max-width: 767px) {
  #doctor {
    flex-direction: column;
    overflow: hidden;
  }
  #doctor .img {
    position: relative;
    top: 0px;
    width: 100%;
  }
  #doctor .txt {
    width: 100%;
  }
  #doctor .txt .point li {
    margin-bottom: 5px;
  }
  #doctor .txt .point li:last-of-type {
    margin-bottom: 0px;
  }
}

/*tab*/
.tabContent > li {
  animation: slideDown 1.5s;
  display: none;
}

#clinic {
  background-color: var(--sub3);
}
#clinic .tabWrap {
  max-width: 1500px;
  margin: 0 auto;
  width: 90%;
  display: flex;
  gap: 50px;
}
#clinic .tabWrap .tabList {
  width: 400px;
  flex-shrink: 0;
}
#clinic .tabWrap .tabList h3 {
  color: var(--sub3-1);
  margin-bottom: 50px;
}
#clinic .tabWrap .tabList > ul {
  display: flex;
  flex-wrap: wrap;
  cursor: pointer;
  gap: 3px;
}
#clinic .tabWrap .tabList > ul li {
  flex-basis: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 10px;
  color: #C8B89E;
  background-color: white;
}
#clinic .tabWrap .tabList > ul li.on {
  background-color: var(--sub3-1);
  border: 0px;
  color: white;
}
#clinic .tabWrap .tabList > ul li.on .icon {
  background-image: url("/common/img/user/main/icon01_on.svg");
}
#clinic .tabWrap .tabContent {
  position: relative;
  background-color: var(--white);
  width: 100%;
  height: 652px;
  padding: 100px;
  overflow-y: scroll;
}
#clinic .tabWrap .tabContent .item-wrap h4 {
  color: var(--sub3-1);
  margin-bottom: 40px;
}
#clinic .tabWrap .tabContent .item-wrap .item {
  margin-bottom: 50px;
}
#clinic .tabWrap .tabContent .item-wrap .item p:nth-child(1) {
  margin-bottom: 20px;
}
#clinic .tabWrap .tabContent .item-wrap .item p:nth-child(1) b {
  color: var(--sub3-2);
}
#clinic .tabWrap .tabContent .item-wrap .item span:nth-child(2) {
  background-color: var(--sub3);
  width: 100%;
  display: block;
  padding: 10px 30px;
  margin-bottom: 20px;
}
#clinic .tabWrap .tabContent .item-wrap .item:last-of-type {
  margin-bottom: 0px;
}
#clinic .tabWrap .tabContent .item-wrap .item > ul li {
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
}
#clinic .tabWrap .tabContent .item-wrap .item > ul li:before {
  content: "";
  width: 3px;
  height: 3px;
  display: block;
  background-color: var(--gray5);
}
#clinic .tabWrap .tabContent .item-wrap .item > ul li:last-of-type {
  margin-bottom: 0px;
}
@media screen and (max-width: 1023px) {
  #clinic .tabWrap {
    flex-direction: column;
  }
  #clinic .tabWrap .tabList {
    width: 100%;
  }
  #clinic .tabWrap .tabList > ul li {
    flex-basis: 32.7%;
  }
}
@media screen and (max-width: 767px) {
  #clinic .tabWrap .tabContent {
    padding: 50px;
  }
}

#equip {
  width: 100%;
}
#equip .container .title {
  text-align: center;
}
#equip .container .title h3 {
  color: var(--pri2);
  margin-bottom: 80px;
  margin-left: 56px;
}
#equip .container .swiper .swiper-wrapper .swiper-slide {
  margin-bottom: 50px;
  text-align: center;
  width: 400px;
}
#equip .container .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
}
#equip .container .swiper .swiper-wrapper .swiper-slide h6 {
  color: var(--pri2);
  margin-top: 24px;
  margin-bottom: 24px;
}
#equip .container .swiper .swiper-wrapper .swiper-slide p {
  text-align: center;
  color: var(--black-a50);
}
#equip .container .swiper .swiper-pagination {
  bottom: 0;
  top: auto;
  background-color: var(--gray2);
}
#equip .container .swiper .swiper-pagination .swiper-pagination-progressbar-fill {
  background: var(--sub2-2);
}
@media (width <= 1200px) {
  #equip .container {
    flex-direction: column;
    gap: 50px;
  }
  #equip .container .title {
    width: 100%;
  }
  #equip .container .title h3 {
    margin-left: -20px;
  }
  #equip .container .swiper {
    width: 90%;
    margin: 0 auto;
  }
}
@media (width <= 320px) {
  #equip .container .title {
    width: 90%;
  }
}
@media (width >= 1921px) {
  #equip .container {
    margin: auto;
    width: 1500px;
  }
}

#care {
  background-color: var(--sub2);
  text-align: center;
}
#care > h3 {
  color: var(--sub2-3);
  margin-bottom: 10px;
}
#care > p {
  color: var(--sub2-1);
}
#care .tabWrap {
  margin-top: 50px;
}
#care .tabWrap .tabList ul {
  max-width: 1500px;
  margin: 0 auto;
  width: 90%;
  display: flex;
  justify-content: space-between;
}
#care .tabWrap .tabList ul li {
  flex-basis: 25%;
  color: var(--sub2-1);
  border-bottom: 1px solid var(--sub2-1);
  cursor: pointer;
  padding: 10px 0;
}
#care .tabWrap .tabList ul li.on {
  color: var(--sub2-3);
  border-bottom: 3px solid var(--sub2-3);
}
#care .tabWrap .tabContent {
  max-width: 1500px;
  margin: 0 auto;
  width: 90%;
  background-color: var(--white);
  padding: 90px 80px;
  height: 640px;
  overflow-y: scroll;
  margin-top: 50px;
}
#care .tabWrap .tabContent .content .item-wrap {
  display: flex;
  gap: 100px;
  align-items: flex-start;
}
#care .tabWrap .tabContent .content .item-wrap .img {
  width: 482px;
  flex-shrink: 0;
  position: sticky;
  top: 0px;
}
#care .tabWrap .tabContent .content .item-wrap .item {
  text-align: left;
}
#care .tabWrap .tabContent .content .item-wrap .item h5 {
  margin-top: 100px;
  color: var(--sub2-3);
}
#care .tabWrap .tabContent .content .item-wrap .item p {
  margin-top: 20px;
  color: var(--black-a55);
}
#care .tabWrap .tabContent .content .item-wrap .item .tag {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
#care .tabWrap .tabContent .content .item-wrap .item .tag li {
  color: var(--sub2-2);
  border: 1px solid var(--sub2-2);
  padding: 5px 20px;
  border-radius: 999px;
}
#care .tabWrap .tabContent .content .item-wrap .item .list h5 {
  margin-bottom: 20px;
}
#care .tabWrap .tabContent .content .item-wrap .item .list li {
  color: var(--black-a55);
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
#care .tabWrap .tabContent .content .item-wrap .item .list li:before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 99px;
  background-color: var(--sub2-2);
  display: block;
  margin-top: 12px;
}
@media (max-width: 1500px) {
  #care .tabWrap .tabContent {
    padding: 50px;
  }
  #care .tabWrap .tabContent .content .item-wrap {
    gap: 50px;
  }
  #care .tabWrap .tabContent .content .item-wrap .img {
    width: 300px;
  }
  #care .tabWrap .tabContent .content .item-wrap .item h5 {
    margin-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  #care .tabWrap .tabContent .content .item-wrap {
    flex-direction: column;
    gap: 0px;
  }
  #care .tabWrap .tabContent .content .item-wrap .img {
    position: relative;
    width: 100%;
  }
  #care .tabWrap .tabContent .content .item-wrap .img img {
    width: 100%;
  }
  #care .tabWrap .tabContent .content .item-wrap .item .list li {
    gap: 8px;
  }
  #care .tabWrap .tabContent .content .item-wrap .item .list li:before {
    margin-top: 9px;
  }
}

#special {
  text-align: center;
}
#special > h3 {
  color: var(--pri1);
  margin-bottom: 80px;
}
#special .special-wrap {
  margin-top: 160px;
  max-width: 1500px;
  width: 90%;
  margin: 0 auto;
}
#special .special-wrap li {
  display: flex;
  align-items: center;
}
#special .special-wrap li img, #special .special-wrap li .txt {
  width: 50%;
}
#special .special-wrap li .txt {
  text-align: left;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 60px;
  padding-left: 160px;
}
#special .special-wrap li .txt h6:nth-child(1) {
  color: var(--pri1);
  letter-spacing: 0.3125rem;
  font-size: 0.9375rem;
}
#special .special-wrap li .txt p:nth-child(2) {
  color: var(--gray7);
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.09375rem;
}
#special .special-wrap li .txt h6:nth-child(3) {
  color: var(--pri1);
  font-size: 1.25rem;
  line-height: 140%;
  border: 1px solid var(--pri1);
  border-radius: 62.4375rem;
  padding: 0.625rem 1.875rem;
}
#special .special-wrap li:nth-child(1) .img {
  background-image: url(/common/img/user/main/special01.jpg);
  background-attachment: fixed;
  position: relative;
  background-position: center;
  background-size: cover;
  width: 50%;
  height: 600px;
}
@supports (-webkit-overflow-scrolling: touch) {
  #special .special-wrap li:nth-child(1) .img {
    background-attachment: scroll;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1366px) {
  #special .special-wrap li:nth-child(1) .img {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 1023px) {
  #special .special-wrap li:nth-child(1) .img {
    height: 500px;
  }
}
@media screen and (max-width: 767px) {
  #special .special-wrap li:nth-child(1) .img {
    width: 100%;
    height: 300px;
  }
}
#special .special-wrap li:nth-child(2) .img {
  background-image: url(/common/img/user/main/special02.jpg);
  background-attachment: fixed;
  position: relative;
  background-position: center;
  background-size: cover;
  width: 50%;
  height: 600px;
}
@supports (-webkit-overflow-scrolling: touch) {
  #special .special-wrap li:nth-child(2) .img {
    background-attachment: scroll;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1366px) {
  #special .special-wrap li:nth-child(2) .img {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 1023px) {
  #special .special-wrap li:nth-child(2) .img {
    height: 500px;
  }
}
@media screen and (max-width: 767px) {
  #special .special-wrap li:nth-child(2) .img {
    width: 100%;
    height: 300px;
  }
}
#special .special-wrap li:nth-child(3) .img {
  background-image: url(/common/img/user/main/special03.jpg);
  background-attachment: fixed;
  position: relative;
  background-position: center;
  background-size: cover;
  width: 50%;
  height: 600px;
}
@supports (-webkit-overflow-scrolling: touch) {
  #special .special-wrap li:nth-child(3) .img {
    background-attachment: scroll;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1366px) {
  #special .special-wrap li:nth-child(3) .img {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 1023px) {
  #special .special-wrap li:nth-child(3) .img {
    height: 500px;
  }
}
@media screen and (max-width: 767px) {
  #special .special-wrap li:nth-child(3) .img {
    width: 100%;
    height: 300px;
  }
}
@media (max-width: 1500px) {
  #special .special-wrap li .txt {
    padding-left: 80px;
  }
  #special .special-wrap li:nth-child(2) .txt {
    padding-right: 80px;
  }
  #special .special-wrap li:nth-child(2) .txt h6:nth-child(1) {
    font-size: 0.9rem;
  }
  #special .special-wrap li:nth-child(2) .txt p br {
    display: none;
  }
  #special .special-wrap li:nth-child(2) .txt h6:nth-child(3) {
    font-size: 1rem;
  }
}
@media screen and (max-width: 1023px) {
  #special {
    overflow: hidden;
  }
  #special .special-wrap {
    margin-top: 100px;
  }
  #special .special-wrap li .txt {
    padding-left: 60px;
    padding-right: 60px;
  }
  #special .special-wrap li .txt br {
    display: none;
  }
  #special .special-wrap li .txt p:nth-child(2) {
    font-size: 1.475rem;
  }
}
@media screen and (max-width: 767px) {
  #special .special-wrap {
    margin-top: 0px;
  }
  #special .special-wrap li {
    flex-direction: column;
    margin-bottom: 50px;
  }
  #special .special-wrap li .txt {
    margin-top: 50px;
    padding: 0;
    align-items: center;
    width: 100%;
    gap: 20px;
    text-align: center;
  }
  #special .special-wrap li .txt br {
    display: block;
  }
  #special .special-wrap li .txt p:nth-child(1) {
    font-size: 12px;
  }
  #special .special-wrap li:last-of-type {
    margin-bottom: 0px;
  }
  #special .special-wrap li:nth-child(2) .img {
    order: 1;
  }
  #special .special-wrap li:nth-child(2) .txt {
    order: 2;
    padding: 0px;
  }
  #special .special-wrap li:nth-child(2) .txt p br {
    display: block;
  }
}

/*community*/
.community {
  font-family: var(--nomal);
  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(--nomal);
    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(--nomal);
    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(--nomal);
  font-size: 72px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: -1.44px;
  font-family: var(--point);
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .community .title {
    font-family: var(--nomal);
    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(--nomal);
    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(--point);
  }
}
@media screen and (max-width: 767px) {
  .community .title {
    font-family: var(--point);
  }
}
.community .title-mini {
  text-align: center;
  font-family: var(--nomal);
  font-family: var(--nomal);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1023px) {
  .community .title-mini {
    font-family: var(--nomal);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 767px) {
  .community .title-mini {
    font-family: var(--nomal);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
.community input {
  font-family: var(--nomal);
  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(--nomal);
    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(--nomal);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
.community .step-tit {
  font-family: var(--nomal);
  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(--nomal);
    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(--nomal);
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.72px;
  }
}
.community .step-tit span {
  font-family: var(--nomal);
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.88px;
  font-family: var(--point);
  margin-right: 0.625rem;
}
@media screen and (max-width: 1023px) {
  .community .step-tit span {
    font-family: var(--nomal);
    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(--nomal);
    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(--point);
  }
}
@media screen and (max-width: 767px) {
  .community .step-tit span {
    font-family: var(--point);
  }
}
.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(--nomal);
  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(--nomal);
    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(--nomal);
    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(--nomal);
  border: 0;
  height: 100%;
}
#join .step01 ul li:nth-child(3) label span {
  font-family: var(--nomal);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1023px) {
  #join .step01 ul li:nth-child(3) label span {
    font-family: var(--nomal);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 767px) {
  #join .step01 ul li:nth-child(3) label span {
    font-family: var(--nomal);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
#join .step02 ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: none;
  justify-content: flex-start;
  align-items: baseline;
  gap: 10%;
}
#join .step02 ul li:nth-child(1):after {
  content: "*";
  color: var(--pri1);
  margin-bottom: 5px;
}
#join .step02 ul li:nth-child(1) {
  flex-basis: 20%;
  flex-grow: 1;
  font-family: var(--nomal);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1023px) {
  #join .step02 ul li:nth-child(1) {
    font-family: var(--nomal);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 767px) {
  #join .step02 ul li:nth-child(1) {
    font-family: var(--nomal);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
#join .step02 ul li:nth-child(2) {
  flex-basis: 70%;
  display: flex;
  flex-direction: colum;
  flex-wrap: wrap;
  align-content: none;
  justify-content: flex-start;
  align-items: center;
  gap: 5%;
}
#join .step02 ul li:nth-child(2) input {
  flex-basis: 75%;
}
#join .step02 ul li:nth-child(2) .btn {
  flex-basis: 20%;
  height: 100%;
  margin-bottom: 0 !important;
  font-family: var(--nomal);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1023px) {
  #join .step02 ul li:nth-child(2) .btn {
    font-family: var(--nomal);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 767px) {
  #join .step02 ul li:nth-child(2) .btn {
    font-family: var(--nomal);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
#join .step02 ul li:nth-child(2) label span {
  font-family: var(--nomal);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1023px) {
  #join .step02 ul li:nth-child(2) label span {
    font-family: var(--nomal);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 767px) {
  #join .step02 ul li:nth-child(2) label span {
    font-family: var(--nomal);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
#join .step02 ul li:nth-child(2) .email-notice {
  font-family: var(--nomal);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.48px;
  color: red;
  padding-top: 10px;
}
@media screen and (max-width: 1023px) {
  #join .step02 ul li:nth-child(2) .email-notice {
    font-family: var(--nomal);
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.4px;
  }
}
@media screen and (max-width: 767px) {
  #join .step02 ul li:nth-child(2) .email-notice {
    font-family: var(--nomal);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.4px;
  }
}
@media screen and (max-width: 500px) {
  #join .step02 ul {
    gap: 0.25rem;
  }
  #join .step02 ul li:nth-child(1) {
    flex-basis: 100%;
    flex-grow: 1;
  }
  #join .step02 ul li:nth-child(2) {
    flex-basis: 100%;
  }
  #join .step02 ul li:nth-child(2) .email-notice {
    order: 1;
    padding-top: 0;
    padding-bottom: 5px;
  }
  #join .step02 ul li:nth-child(2) input {
    flex-basis: 100%;
    order: 2;
  }
  #join .step02 ul li:nth-child(2) .btn {
    flex-basis: 100%;
    order: 3;
  }
  #join .step02 ul li:nth-child(2) label {
    order: 4;
  }
}

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

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

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

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

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

#pay-subtop {
  padding-top: 200px;
  padding-bottom: 150px;
  text-align: center;
}
#pay-subtop h3 {
  color: var(--pri1);
  margin-right: 29px;
}
#pay-subtop p {
  color: var(--black-a45);
  padding-top: 10px;
}

.pay {
  font-family: var(--nomal);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
  text-align: center;
  max-width: 1400px;
  width: 80%;
  margin: 0 auto;
  overflow-x: auto;
  margin-bottom: 150px;
}
@media screen and (max-width: 1023px) {
  .pay {
    font-family: var(--nomal);
    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(--nomal);
    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: 1310px;
  width: 90%;
  margin: 0 auto;
  margin-bottom: 9.375rem;
  /*게시판공통*/
  /*검색&글쓰기*/
  /*토탈(공통)*/
  /*탭(공통)*/
  /*더보기버튼(공통)*/
  /*페이지버튼(공통)*/
}
#board .board {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: normal;
  justify-content: center;
  align-items: space-between;
  gap: 0;
  border-top: 2px solid var(--pri2);
}
#board .board li {
  cursor: pointer;
  transition: all 0.5s ease;
}
#board .board .list-title {
  font-family: var(--nomal);
  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(--nomal);
    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(--nomal);
    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(--nomal);
  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(--nomal);
    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(--nomal);
    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(--nomal);
  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(--nomal);
    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(--nomal);
    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(--nomal);
  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(--nomal);
    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(--nomal);
    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(--nomal);
  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(--nomal);
    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(--nomal);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
#board .button-wrap .board-button:hover {
  background-color: var(--pri1);
  border: 1px solid var(--pri1);
  color: white;
  transition: all 0.5s ease;
}
#board .pagination {
  margin-top: 3.125rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: normal;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 900px) {
  #board .pagination {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: normal;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
}
#board .pagination .num_list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: normal;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 900px) {
  #board .pagination .num_list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: normal;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
  }
}
#board .pagination .num_list li a {
  text-align: center;
  font-family: var(--nomal);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  color: var(--gray9);
  border-radius: 0.3rem;
}
@media screen and (max-width: 1023px) {
  #board .pagination .num_list li a {
    font-family: var(--nomal);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 767px) {
  #board .pagination .num_list li a {
    font-family: var(--nomal);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
#board .pagination .num_list li a.on {
  color: white;
  background-color: var(--pri1);
}
#board .pagination .num_list li a.on:hover {
  color: white;
  transition: all 0.5s ease;
}
#board .pagination .num_list li a:hover {
  color: var(--pri1);
  font-weight: bold;
  transition: all 0.5s ease;
}
#board .pagination i {
  color: var(--gray6);
  transition: all 0.5s ease;
}
#board .pagination i:hover {
  color: var(--pri1);
  transition: all 0.5s ease;
}

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

/*view*/
.view .list-info {
  text-align: center;
  margin-bottom: 3.125rem;
}
.view .list-info .list-title {
  font-family: var(--nomal);
  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(--nomal);
    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(--nomal);
    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(--point);
  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(--point);
  }
}
@media screen and (max-width: 767px) {
  .view .list-info .list-title span {
    font-family: var(--point);
  }
}
@media screen and (max-width: 1023px) {
  .view .list-info .list-title span {
    font-family: var(--point);
    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(--point);
  }
}
@media screen and (max-width: 1023px) and (max-width: 767px) {
  .view .list-info .list-title span {
    font-family: var(--point);
  }
}
@media screen and (max-width: 767px) {
  .view .list-info .list-title span {
    font-family: var(--point);
    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(--point);
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .view .list-info .list-title span {
    font-family: var(--point);
  }
}
.view .content {
  position: relative;
  font-family: var(--nomal);
  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(--nomal);
    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(--nomal);
    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(--nomal);
  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(--nomal);
    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(--nomal);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
.view .content .content-button button:hover {
  color: var(--pri1);
  border: 1px solid var(--pri1);
  transition: all 0.5s ease;
}
.view .answer {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  background-color: var(--gray1);
  padding: 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: center;
  justify-content: normal;
  align-items: center;
  gap: 20px;
}
.view .answer p {
  font-family: var(--nomal);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1023px) {
  .view .answer p {
    font-family: var(--nomal);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 767px) {
  .view .answer p {
    font-family: var(--nomal);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
.view .answer .list-category {
  margin-right: auto;
  margin-left: auto;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
  border-radius: 999px;
  border: 1px solid var(--pri1);
  color: var(--pri1);
}
.view .answer .list-category.end {
  background-color: var(--pri1);
  color: var(--white);
}
.view .add-file {
  font-family: var(--nomal);
  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(--nomal);
    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(--nomal);
    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(--nomal);
  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(--nomal);
    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(--nomal);
    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(--nomal);
  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(--nomal);
    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(--nomal);
    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(--nomal);
  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(--nomal);
    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(--nomal);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
.write ul li:nth-child(2) textarea {
  width: 100% !important;
  height: 300px !important;
}
.write ul li:nth-child(2) label {
  width: 100%;
}
.write ul li:nth-child(2) label span {
  font-family: var(--nomal);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1023px) {
  .write ul li:nth-child(2) label span {
    font-family: var(--nomal);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 767px) {
  .write ul li:nth-child(2) label span {
    font-family: var(--nomal);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
.write ul li:nth-child(2) .input-s {
  width: 20%;
}
.write ul li:nth-child(2) .input-m {
  width: 50%;
}
.write ul li:nth-child(2) .input-l {
  width: 100%;
}
.write ul li:nth-child(2) button {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  border-radius: 999px;
  border: 1px solid var(--gray10);
  color: var(--gray10);
}
.write ul li:nth-child(2).release {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.write ul li:nth-child(2).release label {
  width: auto;
}
@media screen and (max-width: 767px) {
  .write ul {
    gap: 10px;
  }
  .write ul li:nth-child(1), .write ul li:nth-child(2) {
    flex-basis: 100%;
  }
  .write ul li:nth-child(2) .input-s,
  .write ul li:nth-child(2) .input-m,
  .write ul li:nth-child(2) .input-l {
    width: 100%;
  }
}
.write .personal-infor {
  margin-top: 6.25rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: normal;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}
.write .personal-infor h2 {
  font-family: var(--nomal);
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1023px) {
  .write .personal-infor h2 {
    font-family: var(--nomal);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 767px) {
  .write .personal-infor h2 {
    font-family: var(--nomal);
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -0.56px;
  }
}
.write .personal-infor p {
  font-family: var(--nomal);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
  padding: 1.25rem;
  background-color: var(--gray1);
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .write .personal-infor p {
    font-family: var(--nomal);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 767px) {
  .write .personal-infor p {
    font-family: var(--nomal);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
.write .personal-infor label span {
  font-family: var(--nomal);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1023px) {
  .write .personal-infor label span {
    font-family: var(--nomal);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 767px) {
  .write .personal-infor label span {
    font-family: var(--nomal);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}

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

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

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