@charset "UTF-8";
/*base*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@600&family=Noto+Serif+KR:wght@200;300;400;500;600;700;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: 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(--pri2);
}

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

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

@keyframes title {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}
@keyframes tit_mini {
  0% {
    letter-spacing: 0.5em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    letter-spacing: auto;
    opacity: 1;
  }
}
@keyframes focus {
  0% {
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    filter: blur(0px);
    opacity: 1;
  }
}
@keyframes cycleM {
  0% {
    transform: translateY(0) scale(1);
  }
  100% {
    transform: translateY(1.5rem) scale(0.95);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes scroll {
  0% {
    transform: translate(-50%, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    transform: translate(-50%, 1.4rem);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes bigger {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(5);
    opacity: 0;
  }
}
@keyframes bounce {
  to {
    transform: translateX(2rem);
    opacity: 0;
  }
}
@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(20%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-20%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes slideLeft {
  0% {
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
@keyframes slideRight {
  0% {
    transform: translateX(10%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
@keyframes reveal-line {
  0% {
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
[data-aos=reveal-line] {
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}

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

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

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

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

    }
    @include mobile{

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

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

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

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

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

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

:root {
  /*gray*/
  --gray1: #FAFAFA;
  --gray2: #F2F2F2;
  --gray3: #ECECEC;
  --gray4: #F0F0F0;
  --gray5: #CFCFCF;
  --gray6: #BEBEBE;
  --gray7: #B7B7B7;
  --gray8: #ABABAB;
  --gray9: #A1A1A1;
  --gray10: #5E5E5E;
  /*black*/
  --black: #000;
  --black-a95: rgba(0, 0, 0, 0.95);
  --black-a90: rgba(0, 0, 0, 0.90);
  --black-a85: rgba(0, 0, 0, 0.85);
  --black-a80: rgba(0, 0, 0, 0.80);
  --black-a75: rgba(0, 0, 0, 0.75);
  --black-a70: rgba(0, 0, 0, 0.70);
  --black-a65: rgba(0, 0, 0, 0.65);
  --black-a60: rgba(0, 0, 0, 0.60);
  --black-a55: rgba(0, 0, 0, 0.55);
  --black-a50: rgba(0, 0, 0, 0.50);
  --black-a45: rgba(0, 0, 0, 0.45);
  --black-a40: rgba(0, 0, 0, 0.40);
  --black-a35: rgba(0, 0, 0, 0.35);
  --black-a30: rgba(0, 0, 0, 0.30);
  --black-a25: rgba(0, 0, 0, 0.25);
  --black-a20: rgba(0, 0, 0, 0.20);
  --black-a15: rgba(0, 0, 0, 0.15);
  --black-a10: rgba(0, 0, 0, 0.10);
  --black-a5: rgba(0, 0, 0, 0.05);
  /*white*/
  --white: #fff;
  --white-a95: rgba(255, 255, 255, 0.95);
  --white-a90: rgba(255, 255, 255, 0.90);
  --white-a85: rgba(255, 255, 255, 0.85);
  --white-a80: rgba(255, 255, 255, 0.80);
  --white-a75: rgba(255, 255, 255, 0.75);
  --white-a70: rgba(255, 255, 255, 0.70);
  --white-a65: rgba(255, 255, 255, 0.65);
  --white-a60: rgba(255, 255, 255, 0.60);
  --white-a55: rgba(255, 255, 255, 0.55);
  --white-a50: rgba(255, 255, 255, 0.50);
  --white-a45: rgba(255, 255, 255, 0.45);
  --white-a40: rgba(255, 255, 255, 0.40);
  --white-a35: rgba(255, 255, 255, 0.35);
  --white-a30: rgba(255, 255, 255, 0.30);
  --white-a25: rgba(255, 255, 255, 0.25);
  --white-a20: rgba(255, 255, 255, 0.20);
  --white-a15: rgba(255, 255, 255, 0.15);
  --white-a10: rgba(255, 255, 255, 0.10);
  --white-a5: rgba(255, 255, 255, 0.05);
  /*pri 1*/
  --pri1: #14a168;
  /*pri 2*/
  --pri2: #17395C;
  /*pri 3*/
  --pri3: #FF7A19;
  /*sub*/
  --sub1: #F8FDFA;
  --sub1-1: #DCEEE3;
  --sub1-2: #D6EDE3;
  --sub1-3: #9EACA4;
  --sub1-4: #5C826C;
  --sub1-5: ;
  --sub1-6: ;
  --sub1-7: ;
  --sub1-8: ;
  --sub1-9: ;
  --sub1-10: ;
  /*sub*/
  --sub2: #FDFEFF;
  --sub2-1: #ECF5FB;
  --sub2-2: #E5EDF6;
  --sub2-3: #D4DAE1;
  --sub2-4: #AFBECF;
  --sub2-5: #657B94;
  --sub2-6: ;
  --sub2-7: ;
  --sub2-8: ;
  --sub2-9: ;
  --sub2-10: ;
  /*sub*/
  --sub3: #FFFEFD;
  --sub3-1: #FFFBF8;
  --sub3-2: #E2DBB5;
  --sub3-3: #D5BDAB;
  --sub3-4: #C5B2A4;
  --sub3-5: #8D8077;
  --sub3-6: ;
  --sub3-7: ;
  --sub3-8: ;
  --sub3-9: ;
  --sub3-10: ;
  /*second*/
  --second1: ;
  --second2: ;
  --second3: ;
  --second4: ;
  --second5: ;
  --second6: ;
  --second7: ;
  --second8: ;
  --second9: ;
  --second10: ;
  --second11: ;
  /*sns*/
  --kakao: #ffbb00;
  --naver: #58D30C;
  --daum: #618FFC;
  --youtube: #FD0532;
}

.pri1 {
  color: var(--pri1);
}

.pri2 {
  color: var(--pri2);
}

.pri3 {
  color: var(--pri3);
}

.sub1 {
  color: var(--sub1);
}

.sub2 {
  color: var(--sub2);
}

.sub3 {
  color: var(--sub3);
}

.bg-pri1 {
  background-color: var(--pri1);
}

.bg-pri2 {
  background-color: var(--pri2);
}

.bg-pri3 {
  background-color: var(--pri3);
}

.bg-sub1 {
  background-color: var(--sub1);
}

.bg-sub2 {
  background-color: var(--sub2);
}

.bg-sub3 {
  background-color: var(--sub3);
}

@font-face {
  font-family: "JalnanGothic";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_231029@1.1/JalnanGothic.woff") format("woff");
}
:root {
  --noto: "Noto Sans KR", sans-serif;
  --Montserrat: 'Montserrat';
  --: ;
}

/* 폰트셋팅*/
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(--noto);
  font-size: 3.75rem;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.3rem;
}
@media screen and (max-width: 767px) {
  h1 {
    font-size: 2.5rem;
    letter-spacing: -0.2rem;
    line-height: 130%;
  }
}

h2 {
  font-family: var(--noto);
  font-size: 3rem;
  font-style: normal;
  font-weight: 200;
  line-height: 130%; /* 3.9rem */
  letter-spacing: -0.21rem;
}
@media screen and (max-width: 1023px) {
  h2 {
    font-size: 2.5rem;
  }
}

h3 {
  font-family: var(--noto);
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 600;
  line-height: 130%; /* 2.4375rem */
  letter-spacing: -0.13125rem;
}

h4 {
  font-family: var(--noto);
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 300;
  line-height: 130%; /* 1.95rem */
  letter-spacing: -0.135rem;
}

h5 {
  font-family: var(--noto);
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 300;
  line-height: 130%; /* 1.625rem */
  letter-spacing: -0.0625rem;
}

h6 {
  font-family: var(--noto);
  font-size: 1.1875rem;
  font-style: normal;
  font-weight: 300;
  line-height: 130%; /* 1.54375rem */
  letter-spacing: -0.07125rem;
}

div, a, span, p, ul, ol, li, dd, dt, dl, table, button, select, input {
  font-family: var(--noto);
  font-size: 1.4375rem;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 2.5875rem */
  letter-spacing: -0.07188rem;
}

b {
  font-weight: 700;
}

.small {
  font-family: var(--noto);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 2.025rem */
  letter-spacing: -0.0675rem;
}

/*삭제금지*/
.btn01 {
  position: relative;
  z-index: 10;
  background-color: var(--pri2);
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
  padding: 0.5em 1em;
  width: 200px;
  border-radius: 8px;
  animation: bounce 1s infinite;
  margin: 0 auto;
  margin-top: 50px;
}
.btn01 span {
  color: white;
  font-family: var(--noto);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 2.025rem */
  letter-spacing: -0.0675rem;
}
.btn01:hover {
  animation-play-state: paused;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
/*common*/
footer {
  background-color: var(--sub2-5);
}
footer li, footer span, footer a {
  font-size: 0.9rem;
}
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;
}
footer .container .commu li a.admin {
  font-family: var(--Montserrat);
}
@media screen and (max-width: 1023px) {
  footer .container .commu li a.admin {
    font-family: var(--Montserrat);
  }
}
@media screen and (max-width: 767px) {
  footer .container .commu li a.admin {
    font-family: var(--Montserrat);
  }
}
@media screen and (max-width: 767px) {
  footer .container {
    gap: 15px;
    padding-bottom: 150px;
  }
  footer .container .info {
    flex-direction: column;
    gap: 0px;
  }
  footer .container hr {
    margin: 30px auto;
  }
  footer .container img {
    width: 60%;
  }
}

header {
  display: flex;
  align-items: center;
  justify-content: space-around;
  position: sticky;
  z-index: 1000;
  top: 0%;
  margin: 0 auto;
  width: 100%;
  background-color: white;
  transition: top 3s ease, opacity 3s ease;
}
header nav ul {
  display: flex;
}
header nav ul li {
  position: relative;
}
header nav ul li a {
  font-size: 16px;
}
header nav ul li .depth01 {
  padding: 30px;
  display: inline-block;
  cursor: pointer;
  position: relative;
}
header nav ul li .depth01:after {
  content: "";
  width: 0%;
  position: absolute;
  bottom: 0%;
  left: 50%;
  transition: all 0.5s ease;
  border: 0px solid var(--pri2);
}
header nav ul li .depth01.on {
  color: var(--pri2);
  transition: all 0.5s ease;
  font-weight: bold;
}
header nav ul li .depth01.on:after {
  width: 100% !important;
  border: 1px solid var(--pri2);
  transition: all 0.5s ease;
  left: 0%;
}
header nav ul li .depth02 {
  position: absolute;
  display: block;
  top: 100%;
  width: 200px;
  left: 50%;
  transform: translate(-50%, 0%);
  border: 1px solid var(--black-a5);
}
header nav ul li .depth02 li {
  padding: 10px;
  text-align: center;
  background-color: white;
  border-bottom: 1px solid var(--black-a5);
}
header nav ul li .depth02 li:last-of-type {
  border-bottom: 0px;
}
header nav ul li .depth02 li a {
  font-weight: 500;
  color: var(--black-a30);
  display: block;
  width: 100%;
  height: 100%;
}
header nav ul li .depth02 li:hover a {
  color: var(--pri2);
}
header .call {
  display: flex;
  align-items: center;
  background-color: #F29717;
  padding: 8px 20px 6px 20px;
  border-radius: 999px;
}
header .call p {
  color: #FFF;
  font-family: var(--Montserrat);
}
@media screen and (max-width: 1023px) {
  header .call p {
    font-family: var(--Montserrat);
  }
}
@media screen and (max-width: 767px) {
  header .call p {
    font-family: var(--Montserrat);
  }
}
header .call img {
  margin-right: 10px;
}
header .menu {
  display: none;
}
@media (width <= 1750px) {
  header {
    width: 100%;
  }
}
@media (width <= 1350px) {
  header nav ul li .depth01 {
    padding: 20px 15px;
    transition: all 0.5s ease;
    font-size: 14px;
  }
  header nav ul li .depth02 li a {
    font-size: 14px;
  }
  header .call p {
    font-size: 1rem;
  }
}
@media (width <= 1220px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    left: 0%;
    justify-content: space-between;
    height: 70px;
    border-bottom: 1px solid var(--black-a10);
  }
  header a.logo {
    margin-left: 5%;
    width: 50%;
  }
  header nav {
    display: none;
  }
  header nav.on {
    position: fixed;
    top: 70px;
    right: 0%;
    width: 100%;
    height: 100%;
    background-color: var(--pri2);
    z-index: 1000;
    overflow: visible;
    display: flex;
  }
  header nav.on > ul {
    flex-direction: column;
    padding: 20px;
    height: 100%;
    overflow-y: scroll;
    overflow-y: scroll;
    pointer-events: auto;
    flex-grow: 1;
  }
  header nav.on > ul li .depth01 {
    color: white;
    border-bottom: 1px solid var(--white-a25);
    width: 100%;
    font-weight: 700;
  }
  header nav.on > ul li .depth02 {
    position: relative;
    top: 0px;
    padding: 30px 16px;
    width: 100%;
    left: 0;
    transform: translate(0%, 0%);
    border: 0px;
  }
  header nav.on > ul li .depth02 li {
    padding: 10px;
    text-align: left;
    background-color: rgba(255, 255, 255, 0);
    border: 0px;
    cursor: pointer;
  }
  header nav.on > ul li .depth02 li:last-of-type {
    border-bottom: 0px;
  }
  header nav.on > ul li .depth02 li a {
    font-weight: 500;
    color: var(--white-a80);
    width: 100%;
  }
  header nav.on > ul li:last-of-type .depth02 {
    padding-bottom: 150px;
  }
  header .call {
    display: none;
  }
  header .menu {
    display: block;
    width: 70px;
    height: 70px;
    background-color: var(--pri1);
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  header .menu > div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 40px;
    height: 40px;
  }
  header .menu > div p {
    position: absolute;
    width: 100%;
    height: 2px;
    display: block;
    background: #fff;
    right: 0;
    transition: all 0.2s linear;
  }
  header .menu > div p.one {
    top: 9px;
  }
  header .menu > div p.two {
    top: 18px;
    width: 70%;
  }
  header .menu > div p.three {
    width: 100%;
    bottom: 10px;
  }
  header .menu.close > div p.one {
    top: 19px;
    transform: rotate(135deg);
  }
  header .menu.close > div p.two {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    right: -60px;
  }
  header .menu.close > div p.three {
    top: 20px;
    transform: rotate(-135deg);
  }
}

header.fixed {
  background-color: rgba(255, 255, 255, 0);
}
header.fixed nav ul li a {
  color: white;
}
header.fixed nav ul li .depth01:after {
  border: 0px solid var(--white);
}
header.fixed nav ul li .depth01.on {
  color: white;
}
header.fixed nav ul li .depth01.on:after {
  border: 1px solid var(--white);
}
header.fixed .logo {
  width: 230px;
}
header.fixed .call img {
  width: 22px;
  margin-bottom: 4px;
}
header.fixed .call p {
  font-size: 1.2rem;
}

.no-scroll {
  overflow: hidden !important;
}

.fix-hidden {
  top: -100%;
  transition: all 1s ease;
  opacity: 0;
  pointer-events: none;
}

.fix {
  top: 0px;
  opacity: 1;
  transition: all 0.5s ease;
  border-bottom: 1px solid var(--black-a10);
  pointer-events: auto;
}

.subheader.fix {
  background-color: var(--pri2) !important;
}
.subheader.fix nav ul li .depth01.on:after {
  border: 0px;
}

.mobile-subheader {
  background-color: white !important;
}

.quick {
  position: fixed;
  right: 0;
  bottom: 50%;
  transform: translateY(50%);
  z-index: 999;
}
.quick .quick_list {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.03);
  border-bottom-left-radius: 20px;
  border-top-left-radius: 20px;
  overflow: hidden;
  background-color: #fff;
}
.quick .quick_list li a {
  display: flex;
  flex-direction: column;
  padding: 10px 0;
  text-align: center;
  background: #fff;
  color: #595959;
  width: 100px;
  height: 80px;
  align-items: center;
  justify-content: center;
}
.quick .quick_list li a img {
  margin: auto;
  width: 20px;
  height: 20px;
}
.quick .quick_list li a span {
  font-size: 15px;
}
.quick .quick_list .top_wrap .top {
  font-family: var(--Montserrat);
}
@media screen and (max-width: 1023px) {
  .quick .quick_list .top_wrap .top {
    font-family: var(--Montserrat);
  }
}
@media screen and (max-width: 767px) {
  .quick .quick_list .top_wrap .top {
    font-family: var(--Montserrat);
  }
}
.quick .quick_list .top_wrap .top {
  font-size: 16px;
  color: var(--pri2);
}
.quick .quick_list li + li {
  border-top: 1px solid #dddddd;
}
@media screen and (max-width: 767px) {
  .quick {
    right: 0 !important;
    width: 100%;
    top: auto;
    bottom: 0;
    transform: translateY(0);
  }
  .quick .quick_list {
    width: 100%;
    display: flex;
    border-radius: 0;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.03);
  }
  .quick .quick_list li {
    width: 25%;
  }
  .quick .quick_list li a {
    width: auto;
  }
  .quick .quick_list li a span {
    font-size: 11px;
  }
  .quick .quick_list .top_wrap {
    display: none;
  }
  .quick .quick_list li + li {
    border-left: 1px solid #eee;
    border-top: 0;
  }
}

.online-button {
  background-color: var(--pri2);
  padding: 20px;
  display: flex;
  gap: 2px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  cursor: pointer;
  animation: bounce 1s ease infinite;
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 999;
}
.online-button i {
  display: inline-block;
  position: relative;
  background-image: url("/common/img/user/icon/connect.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 30px;
  height: 30px;
  transition: transform 0.3s, background-image 0.3s;
}
.online-button .icon_quick.x {
  background-image: url("/common/img/user/icon/close.svg");
}
.online-button p {
  color: white;
  font-size: 14PX;
}
.online-button .online-form {
  display: none;
  padding: 20px;
}
.online-button .online-form p {
  margin-bottom: 10px;
}
.online-button .online-form form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.online-button .online-form form select, .online-button .online-form form input, .online-button .online-form form a, .online-button .online-form form label {
  font-size: 14px;
}
.online-button .online-form form select,
.online-button .online-form form input[type=text],
.online-button .online-form form input[type=tel],
.online-button .online-form form input[type=submit] {
  border: 0;
  background-color: var(--gray1);
}
.online-button .online-form form select,
.online-button .online-form form input[type=text],
.online-button .online-form form input[type=tel] {
  height: 30px;
  padding: 0px 10px;
}
.online-button .online-form form label[for=online-check] {
  cursor: pointer;
  color: white;
}
.online-button .online-form form input[type=submit] {
  background-color: var(--pri1);
  color: white;
  cursor: pointer;
  border-radius: 10px;
  padding: 10px;
}
@media screen and (max-width: 767px) {
  .online-button .online-form {
    width: 100%;
    padding: 10px;
    font-size: 15px !important;
    margin-bottom: 10px;
  }
  .online-button .online-form p, .online-button .online-form select, .online-button .online-form input, .online-button .online-form label, .online-button .online-form a {
    font-size: 12px !important;
  }
}
@media screen and (max-width: 767px) {
  .online-button {
    position: fixed;
    bottom: 100px;
    z-index: 80;
  }
  .online-button p {
    font-size: 12px !important;
  }
}

/*pages*/
/*메인 타이틀*/
.maintitle {
  text-align: center;
}
.maintitle .en {
  font-family: Montserrat;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 1.625rem */
  letter-spacing: -0.05rem;
  color: var(--black-a10);
  margin-bottom: 30px;
}
.maintitle p:nth-child(3) {
  margin-top: 10px;
  font-family: var(--noto);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 2.025rem */
  letter-spacing: -0.0675rem;
  color: var(--black-a50);
}

/*메인슬라이드*/
#mainslide {
  text-align: center;
  position: relative;
}
#mainslide .swiper {
  width: 100%;
  height: 91vh;
  overflow: hidden;
}
#mainslide .swiper .swiper-slide {
  position: relative;
}
#mainslide .swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  transform: scale(1.2);
  transition: all 2s;
}
#mainslide .swiper .swiper-slide img:nth-child(1) {
  display: none !important;
}
#mainslide .swiper .swiper-slide.swiper-slide-active img {
  transform: scale(1);
  transition: all 2s;
}
#mainslide .slide-bar-wrap {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  background: transparent;
  position: absolute;
  bottom: 5%;
  left: 0;
  width: 100%;
  z-index: 20;
  cursor: pointer;
}
#mainslide .loading_bar {
  width: 200px;
  height: 4px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  overflow: hidden;
  pointer-events: auto;
}
#mainslide .loading_bar .bar {
  width: 0%;
  height: 100%;
  border-radius: 2px;
}
@media (width >= 1920px) {
  #mainslide .swiper .swiper-slide img:nth-child(1) {
    display: block !important;
  }
  #mainslide .swiper .swiper-slide img:nth-child(2) {
    display: none !important;
  }
}
@media screen and (max-width: 1023px) {
  #mainslide .swiper .swiper-slide img {
    height: 100%;
  }
}
@media screen and (max-width: 767px) {
  #mainslide .swiper {
    height: 90vh;
  }
  #mainslide .swiper .swiper-slide .txt-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    text-align: center;
  }
  #mainslide .swiper .swiper-slide .txt-wrap .title span {
    justify-content: center;
    gap: 5px;
  }
  #mainslide .swiper .swiper-slide .txt-wrap .title span h2 {
    color: white;
  }
  #mainslide .swiper .swiper-slide .txt-wrap p {
    color: var(--white-a80);
    width: 80%;
    margin: 0 auto;
  }
}

/*중점진료*/
#clinic {
  padding-top: 200px;
  padding-bottom: 200px;
}
#clinic .maintitle h2 {
  color: var(--pri2);
}
#clinic .maintitle p:nth-child(3) {
  color: var(--pri3);
}
#clinic .content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 1500px;
  width: 90%;
  margin: 0 auto;
  margin-top: 100px;
  justify-items: stretch;
  gap: 90px;
  justify-content: space-between;
}
#clinic .content li {
  transition: transform 0.9s ease-in-out;
  position: relative;
}
#clinic .content li a {
  text-align: center;
}
#clinic .content li a span {
  color: var(--black-a20);
  margin-bottom: 8px;
  font-family: Montserrat;
  font-size: 1.25rem;
  display: block;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 26px */
  letter-spacing: -0.8px;
}
#clinic .content li a .img-wrap {
  width: 100%;
  margin-top: 15px;
}
#clinic .content li:nth-child(2) {
  margin-top: 100px;
}
#clinic .content li:nth-child(4),
#clinic .content li:nth-child(6) {
  margin-top: -100px;
}
#clinic .content li:hover {
  transform: translateY(-5%);
}
#clinic .content li:hover .img-wrap {
  transition: box-shadow 0.3s ease-out;
  box-shadow: 5px 5px 20px var(--black-a30);
}
@media (width <= 1366px) {
  #clinic .content {
    gap: 80px;
  }
  #clinic .content li a span {
    font-size: 1rem;
  }
  #clinic .content li a .img-wrap {
    margin-top: 25px;
  }
}
@media screen and (max-width: 1023px) {
  #clinic .content {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
  #clinic .content li:nth-child(2),
  #clinic .content li:nth-child(4),
  #clinic .content li:nth-child(6) {
    margin-top: 0px;
  }
  #clinic .content li {
    transition: all 0.3s;
  }
}
@media screen and (max-width: 767px) {
  #clinic .content {
    gap: 20px;
  }
  #clinic .content li a span {
    margin-bottom: 0px;
  }
  #clinic .content li a .img-wrap {
    margin-top: 10px;
  }
  #clinic .content li:hover {
    transform: translateY(0%);
  }
  #clinic .content li:hover .img-wrap {
    box-shadow: 0px 0px 0px var(--black-a30);
  }
}
@media screen and (max-width: 767px) {
  #clinic {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

/*의료진소개*/
#doctor {
  padding-top: 200px;
  background-color: #fffdfc;
  overflow: hidden;
  position: relative;
}
#doctor .maintitle {
  position: relative;
}
#doctor .maintitle h2 b {
  color: var(--pri3);
}
#doctor .content {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  position: relative;
}
#doctor .content .main-doctor-img {
  margin-left: -50px;
  z-index: 5;
}
#doctor .content .main-doctor-img:first-of-type {
  margin-left: 0px;
}
#doctor .content:before {
  content: url("/common/img/user/logo/symbol.svg");
  opacity: 0.1;
  position: absolute;
  z-index: 0;
  right: -4%;
  top: -70%;
}
@media (width <= 1500px) {
  #doctor .maintitle {
    width: 95%;
    margin: 0 auto;
  }
  #doctor .content {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
  }
  #doctor .content .main-doctor-img {
    width: 25%;
    margin-left: -10px;
  }
}
@media screen and (max-width: 1023px) {
  #doctor .content {
    width: 90%;
  }
  #doctor .content:before {
    right: 20%;
    top: -280%;
    width: 290px;
  }
}
@media screen and (max-width: 767px) {
  #doctor {
    padding-top: 100px;
  }
  #doctor .content {
    width: 100%;
  }
  #doctor .content .main-doctor-img {
    margin-left: -5px;
  }
  #doctor .content:before {
    display: none;
  }
}

/*장비소개*/
#equip {
  padding-top: 200px;
  padding-bottom: 200px;
  overflow: hidden;
  width: 100%;
}
#equip .maintitle h2 b {
  color: var(--pri1);
}
#equip .swiper {
  margin-top: 80px;
  overflow: visible;
}
#equip .swiper .swiper-wrapper {
  align-items: center;
}
#equip .swiper .swiper-wrapper .swiper-slide {
  opacity: 0.5;
}
#equip .swiper .swiper-wrapper .swiper-slide .wrap {
  text-align: center;
  display: flex;
  gap: 24px;
  flex-direction: column;
  transition: transform 0.4s ease;
  transform: scale(0.8);
}
#equip .swiper .swiper-wrapper .swiper-slide .wrap > img {
  border: 1px solid var(--sub1-2);
}
#equip .swiper .swiper-wrapper .swiper-slide .wrap p:nth-child(2) {
  color: var(--pri1);
  font-weight: 600;
  opacity: 0.7;
  margin-top: 5px;
}
#equip .swiper .swiper-wrapper .swiper-slide .wrap p:nth-child(3) {
  color: var(--black-a50);
  opacity: 0;
}
#equip .swiper .swiper-wrapper .swiper-slide.swiper-slide-active {
  opacity: 1;
}
#equip .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .wrap {
  transform: scale(1);
}
#equip .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .wrap p:nth-child(2),
#equip .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .wrap p:nth-child(3) {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  #equip {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

/*배너*/
#Banner {
  height: 800px;
  background-image: url("/common/img/user/main/banner.jpg");
  background-attachment: fixed;
  background-size: cover;
  position: relative;
  width: 30%;
  margin: 0 auto;
  padding: 0 0;
}
#Banner .maintitle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}
#Banner .maintitle h2 {
  color: var(--white);
  margin-bottom: 30px;
}
#Banner .maintitle p {
  color: var(--white-a65);
}
@media screen and (max-width: 1023px) {
  #Banner {
    height: 800px;
  }
  #Banner .title {
    width: 90%;
  }
}
@media screen and (max-width: 767px) {
  #Banner {
    height: 800px;
  }
  #Banner .title {
    width: 90%;
  }
  #Banner .title h6 {
    font-size: 15px;
  }
  #Banner .title p {
    display: none;
  }
}

/*둘러보기*/
#gallery {
  margin-top: 200px;
  margin-bottom: 200px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
#gallery .maintitle p {
  color: var(--sub3-2);
}
#gallery .maintitle h2 {
  color: var(--pri3);
}
#gallery .content {
  margin-top: 80px;
  position: relative;
}
#gallery .content .slider {
  display: flex;
  margin-top: 30px;
  gap: 30px;
  margin-left: 0px;
  margin-right: 0px;
}
#gallery .content .slider li {
  flex-shrink: 0;
}
#gallery .content .slider li img {
  display: block;
  width: 392px;
}
@media screen and (max-width: 767px) {
  #gallery .content .slider li img {
    width: 250px;
  }
}
#gallery .content .slider:first-of-type {
  margin-top: 0px;
}
@media screen and (max-width: 767px) {
  #gallery {
    margin-top: 100px;
    margin-bottom: 100px;
  }
}

/*치료방법*/
#care {
  padding-top: 200px;
  padding-bottom: 200px;
  background-color: var(--sub1);
}
#care .maintitle p {
  color: var(--sub1-1);
}
#care .maintitle h2 {
  color: var(--pri1);
}
#care .content {
  max-width: 1500px;
  width: 90%;
  margin: 0 auto;
}
#care .content #careMenu {
  display: flex;
  justify-content: space-between;
  margin-top: 70px;
  align-items: center;
}
#care .content #careMenu li {
  font-family: var(--noto);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 2.025rem */
  letter-spacing: -0.0675rem;
  cursor: pointer;
  text-align: center;
  width: 16.666%;
  padding: 10px 0px;
}
#care .content #careMenu li.active {
  color: var(--pri1);
  font-weight: 500;
  background-color: white;
  outline: 3px solid var(--pri1);
  border-radius: 999px;
}
#care .content .swiper {
  margin-top: 70px;
}
#care .content .swiper .swiper-slide {
  display: flex;
}
#care .content .swiper .swiper-slide .text-wrap {
  padding: 100px;
  background-color: var(--sub2);
}
#care .content .swiper .swiper-slide .text-wrap h5 {
  color: var(--pri1);
  margin-bottom: 40px;
  font-weight: 500;
}
#care .content .swiper .swiper-slide .text-wrap p {
  color: var(--black-a60);
  font-family: var(--noto);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 2.025rem */
  letter-spacing: -0.0675rem;
}
#care .content .swiper .swiper-slide > img {
  width: 600px;
  flex-shrink: 0;
}
@media (width <= 1500px) {
  #care .content .swiper .swiper-slide > img {
    width: 50% !important;
  }
}
@media (width <= 1000px) {
  #care .content #careMenu {
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    align-content: flex-start;
  }
  #care .content #careMenu li {
    width: 33.333%;
  }
  #care .content .swiper .swiper-slide {
    flex-direction: column;
  }
  #care .content .swiper .swiper-slide .text-wrap h5 {
    margin-bottom: 20px;
  }
  #care .content .swiper .swiper-slide > img {
    width: 100% !important;
  }
}
@media screen and (max-width: 767px) {
  #care {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  #care .content .swiper .swiper-slide .text-wrap {
    padding: 40px;
  }
}

#info {
  max-width: 1500px;
  margin: 0 auto;
  width: 80%;
  padding-top: 200px;
  padding-bottom: 200px;
}
#info .maintitle {
  width: 100%;
  margin-bottom: 80px;
  text-align: left;
}
#info .maintitle h2 b {
  color: var(--pri2);
}
#info .content {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 80px;
}
#info .content .map {
  background-color: var(--gray2);
  width: 48%;
  height: 500px;
  position: sticky !important;
  top: 100px;
}
#info .content .info {
  width: 695px;
  width: 40%;
}
#info .content .info > div {
  width: 100%;
  padding-bottom: 80px;
  color: var(--black-a80);
}
#info .content .info > div li {
  font-family: var(--noto);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 2.025rem */
  letter-spacing: -0.0675rem;
}
#info .content .info > div li > div {
  font-family: var(--noto);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 2.025rem */
  letter-spacing: -0.0675rem;
}
#info .content .info > div li > div span {
  font-family: var(--noto);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 2.025rem */
  letter-spacing: -0.0675rem;
}
#info .content .info div > .info-title {
  display: flex;
  width: 100%;
  align-items: center;
  flex-direction: row;
  gap: 20px;
}
#info .content .info div > .info-title h4 {
  color: var(--black-a65);
  font-weight: 500;
}
#info .content .info div > .info-title {
  border-bottom: 1px solid var(--black-a20);
  margin-bottom: 30px;
  padding-bottom: 30px;
}
#info .content .info .address li b {
  color: var(--pri2);
}
#info .content .info .time li {
  display: flex;
  gap: 30px;
  margin-bottom: 10px;
}
#info .content .info .time li > div:nth-child(1) {
  display: flex;
  flex-basis: 120px;
  justify-content: space-between;
  flex-shrink: 0;
}
#info .content .info .time li:last-of-type {
  color: var(--pri2);
}
#info .content .info .parking li:nth-child(3) b {
  color: var(--pri3);
}
#info .content .info .parking li:nth-child(4) b {
  color: var(--pri1);
}
#info .content .info .parking li:nth-child(5) b {
  color: var(--pri2);
}
@media (width <= 1200px) {
  #info .content {
    flex-direction: column;
  }
  #info .content .map {
    width: 100%;
    height: 300px;
    position: relative !important;
    top: 0;
    order: 1;
  }
  #info .content .info {
    width: 100%;
    order: 2;
  }
  #info .content .info .address, #info .content .info .parking {
    width: 48%;
    float: left;
  }
  #info .content .info .address {
    margin-right: 4%;
  }
}
@media screen and (max-width: 767px) {
  #info .content .info > div:last-of-type {
    padding-bottom: 0px;
  }
  #info .content .info .address, #info .content .info .parking {
    width: 100%;
    float: none;
  }
}
@media (width <= 320px) {
  #info .content .info .time li {
    display: flex;
    gap: 0px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    border-bottom: 1px solid var(--black-a10);
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  #info .content .info .time li > div:nth-child(1) {
    flex-basis: 0;
  }
  #info .content .info .time li:last-of-type {
    border: 0px;
  }
}
@media screen and (max-width: 767px) {
  #info {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.sub-top {
  margin-top: -89px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 100px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 400px;
}
.sub-top .sub-top-title {
  max-width: 1280px;
  width: 90%;
  margin: 0 auto;
  color: white;
}
.sub-top .sub-top-title p {
  font-family: var(--Montserrat);
}
@media screen and (max-width: 1023px) {
  .sub-top .sub-top-title p {
    font-family: var(--Montserrat);
  }
}
@media screen and (max-width: 767px) {
  .sub-top .sub-top-title p {
    font-family: var(--Montserrat);
  }
}
.sub-top .sub-top-title p {
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 300;
}
@media (width <= 1220px) {
  .sub-top {
    margin-top: 70px;
  }
}
@media screen and (max-width: 767px) {
  .sub-top {
    height: 400px;
  }
}
.sub-top.danaeun {
  background-image: url("/common/img/user/sub/subtop/danaeun.jpg");
}
@media screen and (max-width: 767px) {
  .sub-top.danaeun {
    background-image: url("/common/img/user/sub/subtop/danaeun-m.jpg");
  }
}
.sub-top.spine {
  background-image: url("/common/img/user/sub/subtop/spine.jpg");
}
@media screen and (max-width: 767px) {
  .sub-top.spine {
    background-image: url("/common/img/user/sub/subtop/spine-m.jpg");
  }
}
.sub-top.joint {
  background-image: url("/common/img/user/sub/subtop/joint.jpg");
}
@media screen and (max-width: 767px) {
  .sub-top.joint {
    background-image: url("/common/img/user/sub/subtop/joint-m.jpg");
  }
}
.sub-top.kneejoint {
  background-image: url("/common/img/user/sub/subtop/kneejoint.jpg");
}
@media screen and (max-width: 767px) {
  .sub-top.kneejoint {
    background-image: url("/common/img/user/sub/subtop/kneejoint-m.jpg");
  }
}
.sub-top.spineclinic {
  background-image: url("/common/img/user/sub/subtop/spineclinic.jpg");
}
@media screen and (max-width: 767px) {
  .sub-top.spineclinic {
    background-image: url("/common/img/user/sub/subtop/spineclinic-m.jpg");
  }
}
.sub-top.jointclinic {
  background-image: url("/common/img/user/sub/subtop/jointclinic.jpg");
}
@media screen and (max-width: 767px) {
  .sub-top.jointclinic {
    background-image: url("/common/img/user/sub/subtop/jointclinic-m.jpg");
  }
}
.sub-top.immunity {
  background-image: url("/common/img/user/sub/subtop/immunity.jpg");
}
@media screen and (max-width: 767px) {
  .sub-top.immunity {
    background-image: url("/common/img/user/sub/subtop/immunity-m.jpg");
  }
}

.sub-tab {
  background-color: var(--pri1);
}
.sub-tab ul {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 0px;
}
.sub-tab ul li {
  flex: 1;
}
.sub-tab ul li a {
  font-family: var(--noto);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 2.025rem */
  letter-spacing: -0.0675rem;
  color: var(--white-a65);
  display: block;
  text-align: center;
  padding: 10px 0;
}
.sub-tab ul li.on {
  background-color: white;
}
.sub-tab ul li.on a {
  color: var(--black);
}
@media (width <= 1200px) {
  .sub-tab ul li a {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .sub-tab ul {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--black-a5);
  }
  .sub-tab ul li {
    flex: 0 0 50%;
  }
  .sub-tab ul li:last-child:nth-child(odd) {
    flex: 0 0 100%;
  }
}

.content .sub-img {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .content .sub-img {
    height: 250px;
  }
}

#explan {
  padding-top: 150px;
  padding-bottom: 150px;
  display: flex;
  max-width: 1280px;
  width: 90%;
  margin: 0 auto;
  gap: 80px;
  align-items: flex-start;
  justify-content: space-between;
}
#explan .img {
  flex-basis: 50%;
}
#explan .txt {
  flex-basis: 50%;
  margin-top: 80px;
}
#explan .txt h3 {
  color: var(--sub2-5);
  margin-bottom: 30px;
}
#explan .txt p {
  font-family: var(--noto);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 2.025rem */
  letter-spacing: -0.0675rem;
  color: var(--black-a55);
}
#explan .txt p b {
  color: var(--sub2-5);
}
@media screen and (max-width: 767px) {
  #explan {
    padding-top: 100px;
    padding-bottom: 100px;
    flex-direction: column;
    gap: 50px;
  }
  #explan .img {
    flex-basis: auto;
  }
  #explan .txt {
    margin-top: 0px;
  }
}

.list01 .title {
  text-align: center;
}
.list01 .content {
  margin-top: 80px;
}
.list01 .content ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
.list01 .content ul li {
  width: 300px;
  height: 300px;
  border-radius: 999px;
  padding: 0 30px;
  border: 1px solid var(--sub3-4);
}
.list01 .content ul li p {
  font-family: var(--noto);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 2.025rem */
  letter-spacing: -0.0675rem;
  text-align: center;
}
.list01 .content ul li p:nth-child(1) {
  margin-top: 80px;
  font-family: var(--Montserrat);
}
@media screen and (max-width: 1023px) {
  .list01 .content ul li p:nth-child(1) {
    font-family: var(--Montserrat);
  }
}
@media screen and (max-width: 767px) {
  .list01 .content ul li p:nth-child(1) {
    font-family: var(--Montserrat);
  }
}
.list01 .content ul li p:nth-child(1) {
  margin-bottom: 30px;
  color: var(--sub3-4);
}
.list01 .content ul li p:nth-child(2) {
  color: var(--black-a75);
}
.list01 .content ul.type04 {
  gap: 30px;
}
.list01 .content ul.type04 li {
  width: 270px;
  height: 270px;
}
.list01 .content ul.type04 li p:nth-child(1) {
  margin-top: 60px;
}
@media screen and (max-width: 1023px) {
  .list01 .content ul li {
    width: 250px;
    height: 250px;
  }
  .list01 .content ul li p:nth-child(1) {
    margin-top: 70px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .list01 .content {
    margin-top: 30px;
  }
  .list01 .content ul {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .list01 .content ul li {
    width: 100%;
    height: auto;
    border-radius: 0px;
    padding: 30px;
  }
  .list01 .content ul li p:nth-child(1) {
    margin-top: 0px;
    margin-bottom: 10px;
  }
  .list01 .content ul.type04 li {
    width: 100%;
    height: auto;
  }
  .list01 .content ul.type04 li p:nth-child(1) {
    margin-top: 0px;
  }
}

.list01-01 .title {
  text-align: center;
}
.list01-01 .content {
  margin-top: 80px;
}
.list01-01 .content ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.list01-01 .content ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 280px;
}
.list01-01 .content ul li img {
  margin-bottom: 30px;
}
.list01-01 .content ul li p {
  font-family: var(--noto);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 2.025rem */
  letter-spacing: -0.0675rem;
  text-align: center;
  color: var(--sub3-5);
  font-weight: bold;
  width: 80%;
}
.list01-01 .content ul.type05 {
  gap: 40px;
}
.list01-01 .content ul.type05 li {
  width: 300px;
}
@media screen and (max-width: 767px) {
  .list01-01 .content {
    margin-top: 30px;
  }
  .list01-01 .content ul li {
    width: 40%;
  }
}

.list02 .content {
  margin-top: 80px;
}
.list02 .content ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.list02 .content ul li {
  border: 1px solid var(--black-a15);
  padding: 50px;
  background-color: var(--white);
}
.list02 .content ul li p:nth-child(1) {
  margin-bottom: 20px;
  padding-bottom: 20px;
  display: flex;
  gap: 15px;
  border-bottom: 1px solid var(--black-a15);
  align-items: center;
}
.list02 .content ul li p:nth-child(1) span {
  display: inline-block;
  font-weight: bold;
}
.list02 .content ul li p:nth-child(1) span:nth-child(1) {
  background-color: var(--sub3-4);
  color: white;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.list02 .content ul li p:nth-child(1) span:nth-child(2) {
  color: var(--sub3-4);
}
.list02 .content ul li p:nth-child(2) {
  font-family: var(--noto);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 2.025rem */
  letter-spacing: -0.0675rem;
  color: var(--black-a75);
}
.list02 .content ul li p:nth-child(2) b {
  color: var(--sub3-4);
}
@media screen and (max-width: 1023px) {
  .list02 .content ul {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px) {
  .list02 .content {
    margin-top: 30px;
  }
  .list02 .content ul {
    gap: 20px;
  }
  .list02 .content ul li {
    padding: 30px;
  }
}

.list03 .content {
  margin-top: 80px;
}
.list03 .content img {
  margin-bottom: 30px;
}
.list03 .content ul li {
  margin-bottom: 30px;
}
.list03 .content ul li p:nth-child(1) {
  padding: 10px 40px;
  background-color: var(--sub3-4);
  color: white;
  font-weight: bold;
}
.list03 .content ul li p:nth-child(2) {
  font-family: var(--noto);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 2.025rem */
  letter-spacing: -0.0675rem;
  color: var(--black-a75);
  padding: 40px;
  background-color: var(--white);
}
@media screen and (max-width: 767px) {
  .list03 .content {
    margin-top: 30px;
  }
  .list03 .content img {
    height: 200px;
  }
}

.list03-01 .content {
  margin-top: 80px;
}
.list03-01 .content ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.list03-01 .content ul li p:nth-child(1) {
  padding: 10px 40px;
  background-color: var(--sub3-4);
  color: white;
  font-weight: bold;
}
.list03-01 .content ul li p:nth-child(2) {
  font-family: var(--noto);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 2.025rem */
  letter-spacing: -0.0675rem;
  color: var(--black-a75);
  padding: 40px;
  background-color: var(--white);
  min-height: 200px;
}
@media screen and (max-width: 1023px) {
  .list03-01 .content {
    margin-top: 30px;
  }
  .list03-01 .content ul {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .list03-01 .content ul li p:nth-child(2) {
    min-height: auto;
  }
}

.list04 .content {
  margin-top: 80px;
}
.list04 .content img {
  margin-bottom: 30px;
}
.list04 .content > ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
.list04 .content > ul li {
  border: 1px solid var(--black-a15);
  background-color: white;
}
.list04 .content > ul li p:nth-child(1) {
  padding: 20px 40px;
  background-color: var(--sub3-4);
  color: white;
  font-weight: bold;
}
.list04 .content > ul li p:nth-child(2) {
  padding: 40px;
  color: var(--black-a75);
  font-family: var(--noto);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 2.025rem */
  letter-spacing: -0.0675rem;
}
@media screen and (max-width: 1023px) {
  .list04 .content ul {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .list04 .content {
    margin-top: 30px;
  }
  .list04 .content img {
    height: 500px;
  }
  .list04 .content ul {
    gap: 10px;
    grid-template-columns: 1fr;
  }
  .list04 .content ul li p:nth-child(1) {
    padding: 10px 20px;
  }
  .list04 .content ul li p:nth-child(2) {
    padding: 20px;
  }
}

.list05 .content {
  margin-top: 80px;
}
.list05 .content img {
  margin-bottom: 30px;
}
.list05 .content p {
  color: var(--black-a65);
  padding: 30px;
  background-color: white;
  font-family: var(--noto);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 2.025rem */
  letter-spacing: -0.0675rem;
}
.list05 .content p b {
  color: var(--sub3-5);
}
@media screen and (max-width: 767px) {
  .list05 .content {
    margin-top: 30px;
  }
}

.list06 {
  display: flex;
  gap: 80px;
}
.list06 .title {
  flex-basis: 30%;
}
.list06 .content {
  flex-basis: 70%;
}
.list06 .content ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.list06 .content ul li {
  display: flex;
  background-color: white;
  border: 1px solid var(--black-a15);
}
.list06 .content ul li span {
  display: block;
  font-family: var(--noto);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 2.025rem */
  letter-spacing: -0.0675rem;
}
.list06 .content ul li span:nth-child(1) {
  background-color: var(--sub3-4);
  color: white;
  font-family: var(--Montserrat);
}
@media screen and (max-width: 1023px) {
  .list06 .content ul li span:nth-child(1) {
    font-family: var(--Montserrat);
  }
}
@media screen and (max-width: 767px) {
  .list06 .content ul li span:nth-child(1) {
    font-family: var(--Montserrat);
  }
}
.list06 .content ul li span:nth-child(1) {
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.list06 .content ul li span:nth-child(2) {
  color: var(--black-a75);
  padding: 20px;
}
@media screen and (max-width: 1023px) {
  .list06 {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .list06 {
    gap: 30px;
  }
  .list06 .content ul {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .list06 .content ul li span:nth-child(2) {
    padding: 13px;
  }
}

.list06-01 {
  display: flex;
  gap: 80px;
}
.list06-01 .title {
  flex-basis: 30%;
}
.list06-01 .content {
  flex-basis: 70%;
}
.list06-01 .content p {
  background-color: white;
  font-family: var(--noto);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 2.025rem */
  letter-spacing: -0.0675rem;
  padding: 40px;
  color: var(--black-a65);
}
@media screen and (max-width: 1023px) {
  .list06-01 {
    gap: 30px;
    flex-direction: column;
  }
}

.table01 .content {
  margin-top: 80px;
}
.table01 .content table {
  width: 100%;
}
.table01 .content table th, .table01 .content table td {
  font-family: var(--noto);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 2.025rem */
  letter-spacing: -0.0675rem;
  padding: 20px;
  text-align: center;
}
.table01 .content table thead {
  background-color: var(--sub3-4);
  color: white;
}
.table01 .content table thead tr th {
  border-left: 1px solid white;
}
.table01 .content table thead tr th:first-of-type {
  border-left: 0px;
}
.table01 .content table tbody {
  background-color: white;
}
.table01 .content table tbody tr td:nth-child(1) {
  background-color: var(--sub3-4);
  color: white;
  border-top: 1px solid white;
}
.table01 .content table tbody tr td:nth-child(2) {
  border-right: 1px solid var(--black-a15);
}
.table01 .content table tbody tr td:nth-child(2),
.table01 .content table tbody tr td:nth-child(3) {
  border-bottom: 1px solid var(--black-a15);
  color: var(--black-a75);
}
@media screen and (max-width: 767px) {
  .table01 .content {
    overflow-x: scroll;
    margin-top: 30px;
  }
  .table01 .content::-webkit-scrollbar {
    height: 2px;
  }
  .table01 .content table {
    width: 700px;
  }
  .table01 .content table th, .table01 .content table td {
    padding: 15px;
  }
}

.care_bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  height: 100%;
  width: 100%;
}

#style01 {
  padding-top: 150px;
  padding-bottom: 150px;
  background-color: var(--sub3-1);
}
#style01 .container {
  max-width: 1280px;
  width: 90%;
  margin: 0 auto;
}
#style01 .container .title h3 {
  color: var(--sub3-5);
}
#style01 .container .title p {
  color: var(--black-a50);
  font-family: var(--noto);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 2.025rem */
  letter-spacing: -0.0675rem;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  #style01 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  #style01 .container .title p br {
    display: none;
  }
}

#style02 {
  padding-top: 150px;
  padding-bottom: 150px;
}
#style02 .container {
  max-width: 1280px;
  width: 90%;
  margin: 0 auto;
}
#style02 .container .title h3 {
  color: var(--sub1-4);
}
#style02 .container .title p {
  color: var(--black-a50);
  font-family: var(--noto);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 2.025rem */
  letter-spacing: -0.0675rem;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  #style02 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  #style02 .container .title p br {
    display: none;
  }
}

#style02 .list01 .content ul li {
  border: 1px solid var(--sub1-3);
}

#style02 .list01 .content ul li p:nth-child(1) {
  color: var(--sub1-3);
}

#style02 .list01-01 .content ul li p {
  color: var(--sub1-4);
}

#style02 .list02 .content ul li p:nth-child(1) span:nth-child(1) {
  background-color: var(--sub1-4);
}

#style02 .list02 .content ul li p:nth-child(1) span:nth-child(2) {
  color: var(--sub1-4);
}

#style02 .list02 .content ul li p:nth-child(2) b {
  color: var(--sub1-4);
}

#style02 .list03-01 .content ul li {
  border: 1px solid var(--black-a15);
}

#style02 .list03-01 .content ul li p:nth-child(1) {
  background-color: var(--sub1-4);
}

#style02 .list04 .content ul li p:nth-child(1) {
  background-color: var(--sub1-3);
}

#style02 .list04 .content ul li p:nth-child(2) b {
  color: var(--sub1-4);
}

#style02 .list06-01 .content p {
  padding: 0px;
}

#style02 .list06-01 .content p b {
  color: var(--sub1-4);
}

#style02 .list05 .content p {
  padding: 0px;
}

#style02 .list05 .content p b {
  color: var(--sub1-4);
}

#style03 {
  padding-top: 150px;
  padding-bottom: 150px;
  background-color: var(--sub2-1);
  position: relative;
}
#style03 .container {
  max-width: 1280px;
  width: 90%;
  margin: 0 auto;
}
#style03 .container .title h3 {
  color: var(--sub2-5);
}
#style03 .container .title p {
  color: var(--black-a50);
  font-family: var(--noto);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 2.025rem */
  letter-spacing: -0.0675rem;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  #style03 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  #style03 .container .title p br {
    display: none;
  }
}

#style03 .list02 .content ul li p:nth-child(1) span:nth-child(1) {
  background-color: var(--sub2-4);
}

#style03 .list02 .content ul li p:nth-child(1) span:nth-child(2) {
  color: var(--sub2-4);
}

#style03 .list06-01 .content p b {
  color: var(--pri2);
}

#style03 .table01 .content table thead,
#style03 .table01 .content table tbody tr td:nth-child(1) {
  background-color: var(--sub2-4);
}

#style03 .list06 .content ul li span:nth-child(1) {
  background-color: var(--sub2-4);
}

#style04 {
  padding-top: 150px;
  padding-bottom: 150px;
  position: relative;
  overflow: hidden;
}
#style04 .container {
  max-width: 1280px;
  width: 90%;
  margin: 0 auto;
}
#style04 .container .title h3 {
  color: var(--sub3-5);
}
#style04 .container .title p {
  color: var(--black-a50);
  font-family: var(--noto);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 2.025rem */
  letter-spacing: -0.0675rem;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  #style04 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  #style04 .container .title p br {
    display: none;
  }
}

#style04 .list06-01 .title h3 {
  color: white;
}

#style04 .list06-01 .content p b {
  color: var(--sub3-5);
}

#point {
  padding-top: 300px;
  background-color: white;
}
#point .title {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  width: 90%;
  margin: 0 auto;
}
#point .title img {
  margin-top: 50px;
  width: 20%;
}
#point .title h1, #point .title h4 {
  text-align: center;
}
#point .title h1 b, #point .title h4 b {
  font-weight: 600;
}
#point .title h1 {
  margin-bottom: 30px;
}
#point .title h1 u {
  text-decoration: none;
  color: var(--pri3);
}
@media screen and (max-width: 1023px) {
  #point .title img {
    width: 50%;
  }
}
#point > ul {
  max-width: 1300px;
  width: 90%;
  margin: 0 auto;
  margin-top: 280px;
  display: flex;
  gap: 300px;
  flex-direction: column;
}
#point > ul li {
  display: flex;
  align-items: flex-start;
  position: relative;
  justify-content: space-between;
  gap: 50px;
}
#point > ul li .txt {
  flex-basis: 600px;
}
#point > ul li .txt P {
  color: var(--sub3-2);
  font-family: var(--Montserrat);
}
@media screen and (max-width: 1023px) {
  #point > ul li .txt P {
    font-family: var(--Montserrat);
  }
}
@media screen and (max-width: 767px) {
  #point > ul li .txt P {
    font-family: var(--Montserrat);
  }
}
#point > ul li .txt P {
  margin-bottom: 30px;
}
#point > ul li .txt h2 {
  margin-bottom: 50px;
  color: var(--pri3);
  line-height: 140%;
}
#point > ul li .txt h4 {
  line-height: 190%;
  font-weight: 500;
  color: var(--black-a50);
}
#point > ul li:nth-child(3) {
  display: block;
}
#point > ul li:nth-child(3) .txt {
  width: auto;
}
#point > ul li:nth-child(3) img {
  margin: 0 auto;
  padding-top: 170px;
}
@media screen and (max-width: 1023px) {
  #point {
    padding-top: 200px;
  }
  #point > ul {
    gap: 80px;
    margin-top: 120px;
  }
  #point > ul li {
    display: flex;
    position: relative;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }
  #point > ul li .img {
    width: 80%;
  }
  #point > ul li .img img {
    margin: 0 auto;
  }
  #point > ul li .txt {
    flex-basis: auto;
    width: 90%;
  }
  #point > ul li .txt p {
    margin-bottom: 10px;
  }
  #point > ul li .txt h2 {
    margin-bottom: 15px;
  }
  #point > ul li .txt h4 br {
    display: none;
  }
  #point > ul li:nth-child(3) .txt {
    width: 90%;
    margin: 0 auto;
  }
  #point > ul li:nth-child(3) img {
    padding-top: 100px;
  }
}
@media screen and (max-width: 767px) {
  #point {
    padding-top: 100px;
  }
}

/*라디오,방송출연*/
#radio {
  padding-top: 150px;
  padding-bottom: 150px;
}
#radio .container {
  text-align: center;
  width: 90%;
  margin: 0 auto;
}
#radio .container h6 {
  font-weight: bold;
}
#radio .container a {
  display: inline-block;
  margin-top: 60px;
  max-width: 600px;
}
@media screen and (max-width: 767px) {
  #radio .container h6 span:nth-child(1),
  #radio .container h6 span:nth-child(3) {
    display: none;
  }
}

/*의료진소개*/
#sub-doctor-wrap {
  text-align: center;
  padding-bottom: 150px;
  scroll-margin-top: 200px;
}
#sub-doctor-wrap h2 {
  font-weight: 300;
}
#sub-doctor-wrap h2 b {
  color: var(--pri3);
}
#sub-doctor-wrap #sub-doctor {
  display: flex;
  justify-content: center;
  flex-direction: row;
  gap: 20px;
  max-width: 1500px;
  width: 90%;
  margin: 0 auto;
  margin-top: 60px;
}
#sub-doctor-wrap #sub-doctor .doctor {
  flex-basis: 33.333%;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  background-color: #eef5f1;
}
#sub-doctor-wrap #sub-doctor .doctor img {
  margin: 0 auto;
  padding-top: 60px;
}
#sub-doctor-wrap #sub-doctor .doctor .txt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 30px 0px;
  background-color: var(--pri1);
  color: white;
}
#sub-doctor-wrap #sub-doctor .doctor::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
#sub-doctor-wrap #sub-doctor .doctor::before {
  content: "+";
  width: 100px;
  height: 100px;
  border-radius: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  background-color: var(--pri2);
  color: white;
  text-align: center;
  font-size: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 100;
  opacity: 0;
}
#sub-doctor-wrap #sub-doctor .doctor:hover::after {
  opacity: 1;
  transition: all 0.5s ease;
}
#sub-doctor-wrap #sub-doctor .doctor:hover::before {
  opacity: 1;
  transition: all 0.7s ease;
}
@media screen and (max-width: 1023px) {
  #sub-doctor-wrap #sub-doctor {
    justify-content: center;
    flex-wrap: wrap;
  }
  #sub-doctor-wrap #sub-doctor .doctor {
    flex-basis: 45%;
  }
  #sub-doctor-wrap #sub-doctor .doctor .txt {
    padding: 10px 0px;
  }
  #sub-doctor-wrap #sub-doctor .doctor img {
    padding-top: 15px;
  }
  #sub-doctor-wrap #sub-doctor .doctor::before {
    width: 80px;
    height: 80px;
  }
}

/*의료진소개-팝업*/
.Doctor_Dark {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3137254902);
  z-index: 1000;
  cursor: pointer;
}

.Doctor_Popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  max-height: 90vh;
  padding: 50px;
  background-color: var(--sub2);
  z-index: 1001;
  overflow: hidden;
}
.Doctor_Popup .title {
  text-align: center;
  margin-bottom: 30px;
}
.Doctor_Popup .title > h6 {
  color: var(--sub2-5);
}
.Doctor_Popup .title span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0px;
  margin-top: 10px;
}
.Doctor_Popup .title span > h3 {
  letter-spacing: 1.5rem;
  font-weight: 500;
}
.Doctor_Popup .title span p {
  color: var(--sub2-5);
  font-weight: 500;
  font-family: var(--noto);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 2.025rem */
  letter-spacing: -0.0675rem;
  font-weight: bold;
}
.Doctor_Popup .content {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 100px;
}
.Doctor_Popup .content > .Img {
  flex-basis: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.Doctor_Popup .content > .Img img {
  height: 100%;
}
.Doctor_Popup .content ul {
  flex-basis: 50%;
  margin-top: 50px;
  height: 50vh;
  overflow-y: auto;
}
.Doctor_Popup .content ul li {
  font-family: var(--noto);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 2.025rem */
  letter-spacing: -0.0675rem;
  color: var(--black-a75);
}
.Doctor_Popup .content ul b {
  color: var(--sub2-4);
  margin-bottom: 15px;
  display: inline-block;
}
.Doctor_Popup .content ul::-webkit-scrollbar-thumb {
  background-color: var(--pri2);
}
.Doctor_Popup .close {
  cursor: pointer;
  position: absolute;
  top: 5%;
  right: 4%;
}
@media (width <= 1350px) {
  .Doctor_Popup {
    width: 80%;
    gap: 1rem;
  }
  .Doctor_Popup .content .Img img {
    max-width: 100%;
  }
  .Doctor_Popup .close {
    left: 3%;
    top: 2%;
  }
}
@media screen and (max-width: 1023px) {
  .Doctor_Popup {
    width: 90%;
    height: 80vh;
    align-items: center;
    padding-top: 0px;
    padding: 50px;
    overflow-y: scroll;
    gap: 50px;
  }
  .Doctor_Popup .content {
    flex-direction: column;
    gap: 1rem;
  }
  .Doctor_Popup .content > .Img {
    justify-content: center;
    flex-basis: auto;
    width: 100%;
  }
  .Doctor_Popup .content > .Img img {
    width: 80%;
  }
  .Doctor_Popup .content ul {
    height: auto;
  }
  .Doctor_Popup .content > h1.en {
    left: 20%;
  }
}

/*둘러보기*/
#definition {
  padding-bottom: 150px;
  scroll-margin-top: 200px;
}
#definition .container {
  width: 80%;
  margin: 0 auto;
}
#definition .container .title {
  text-align: center;
}
#definition .container .title h4 {
  font-family: var(--Montserrat);
}
@media screen and (max-width: 1023px) {
  #definition .container .title h4 {
    font-family: var(--Montserrat);
  }
}
@media screen and (max-width: 767px) {
  #definition .container .title h4 {
    font-family: var(--Montserrat);
  }
}
#definition .container .title h4 {
  font-weight: 500;
  color: var(--sub2-5);
}
#definition .container .title p {
  margin-top: 1.875rem;
  color: var(--black-a65);
  font-family: var(--noto);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 2.025rem */
  letter-spacing: -0.0675rem;
}
#definition .container img {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  #definition .container img {
    height: 300px;
  }
}
#definition .container #Preview {
  width: 900px;
  height: 500px;
  position: relative;
  overflow: visible;
  margin: 0 auto;
}
#definition .container #Preview .swiper-slide {
  opacity: 0.5;
  transition: 0.75s ease;
  transform: scale(0.7);
  overflow: hidden;
}
#definition .container #Preview .swiper-slide p {
  position: absolute;
  bottom: 5%;
  left: 5%;
  width: 50%;
  color: var(--white);
}
#definition .container #Preview .swiper-slide img {
  width: 100%;
  height: 100%;
}
#definition .container #Preview .swiper-slide.swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}
#definition .container #Preview .swiper-slide.swiper-slide-next p {
  display: none;
}
#definition .container #Preview .controls {
  position: absolute;
  display: flex;
  justify-content: space-between;
  align-items: center;
  bottom: 0;
  right: 0;
  z-index: 5;
  overflow: hidden;
  background-color: var(--pri1);
}
#definition .container #Preview .controls .previewText {
  color: var(--white);
}
#definition .container #Preview .controls .swiper-button {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  margin: 0;
  width: 60px;
  height: 60px;
}
#definition .container #Preview .controls .swiper-button-next:after, #definition .container #Preview .controls .swiper-button-prev:after {
  font-size: 12px;
  color: var(--white);
}
#definition .container #Preview .controls .swiper-button-next {
  background-color: var(--pri2);
}
#definition .container #Preview .controls .swiper-button-next svg {
  display: none;
}
#definition .container #Preview .controls .swiper-button-prev {
  background-color: var(--pri1);
}
#definition .container #Preview .controls .swiper-button-prev svg {
  display: none;
}
@media screen and (max-width: 1023px) {
  #definition .container #Preview {
    width: 80%;
    height: 60vh;
  }
  #definition .container #Preview .swiper-slide img {
    height: 100%;
  }
}
@media screen and (max-width: 767px) {
  #definition .container #Preview {
    width: 90%;
    height: 300px;
  }
  #definition .container #Preview .swiper-slide {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
  }
  #definition .container #Preview .swiper-slide h6 {
    width: 80%;
    word-break: keep-all;
  }
}

/*장비소개*/
#equipment {
  background-color: var(--sub1-1);
  padding-top: 150px;
  padding-bottom: 150px;
}
#equipment .container {
  max-width: 1500px;
  margin: 0 auto;
  width: 90%;
}
#equipment .container .container__txt h2 {
  text-align: center;
  margin-bottom: 20px;
  color: var(--sub1-4);
  font-weight: 500;
}
#equipment .container .container__txt p {
  text-align: center;
  color: var(--black-a60);
}
#equipment .container .container__txt {
  margin-bottom: 50px;
}
#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);
  margin-bottom: 20px;
}
#equipment .container .container__content li p {
  height: 130px;
  overflow-y: auto;
}
@media screen and (max-width: 767px) {
  #equipment .container .container__content {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  #equipment .container .container__content li {
    padding: 15px;
  }
  #equipment .container .container__content li p {
    height: 60px;
    margin-bottom: 20px;
  }
  #equipment .container .container__content li h6:nth-child(1) {
    font-size: 14px;
    max-height: 50px;
    height: auto;
    margin-bottom: 10px;
  }
}

#contact {
  padding-top: 150px;
  padding-bottom: 150px;
  max-width: 1500px;
  margin: 0 auto;
  width: 90%;
}
#contact .map-api {
  border: 3px solid var(--pri1);
  width: 100%;
  height: 530px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 1023px) {
  #contact .map-api {
    height: 400px;
  }
}
#contact .info-wrap {
  margin-top: 1.875rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: none;
  justify-content: space-between;
  align-items: stretch;
  gap: 80px;
}
#contact .info-wrap ul {
  flex-basis: calc(33.333% - 80px);
}
#contact .info-wrap .info .tit, #contact .info-wrap .time-about .tit {
  color: var(--pri1);
  margin-bottom: 1.25rem;
}
#contact .info-wrap .info .tit i, #contact .info-wrap .time-about .tit i {
  margin-right: 1.25rem;
  font-size: 18px;
  float: left;
  line-height: 40px;
}
#contact .info-wrap .info .txt, #contact .info-wrap .time-about .txt {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: none;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 5%;
}
#contact .info-wrap .info .txt a, #contact .info-wrap .time-about .txt a {
  color: var(--black);
  padding-bottom: 0.625rem;
}
#contact .info-wrap .info .txt a:nth-child(1), #contact .info-wrap .time-about .txt a:nth-child(1) {
  flex-basis: 20%;
  font-weight: 600;
}
#contact .info-wrap .info .txt a:nth-child(2), #contact .info-wrap .time-about .txt a:nth-child(2) {
  flex-basis: 75%;
}
#contact .info-wrap .sns {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: none;
  justify-content: space-between;
  align-items: stretch;
  gap: 10px;
}
#contact .info-wrap .sns button {
  height: 250px;
  color: white;
  width: 50%;
}
#contact .info-wrap .sns .kakao {
  background-color: var(--kakao);
}
#contact .info-wrap .sns .kakao img {
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin-bottom: 0.625rem;
}
#contact .info-wrap .sns .call {
  background-color: var(--pri2);
}
#contact .info-wrap .sns .call i {
  display: block;
  font-size: 70px;
  margin-bottom: 0.625rem;
  width: 80px;
  height: 80px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1200px) {
  #contact .info-wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: none;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
  }
  #contact .info-wrap ul {
    flex-basis: calc(50% - 10px);
  }
  #contact .info-wrap .sns {
    flex-basis: 100%;
    gap: 20px;
  }
  #contact .info-wrap .sns button {
    height: 100px;
  }
  #contact .info-wrap .sns button img {
    width: 10%;
  }
  #contact .info-wrap .sns .call i {
    width: 30px;
    height: 30px;
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  #contact .info-wrap ul {
    flex-basis: 100%;
  }
  #contact .info-wrap .sns button img {
    width: 20%;
  }
  #contact .info-wrap .info .txt a:nth-child(1),
  #contact .info-wrap .time-about .txt a:nth-child(1) {
    flex-basis: 30%;
  }
}

.intro#info {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

/*community*/
.community {
  font-family: var(--noto);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1023px) {
  .community {
    font-family: var(--noto);
    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(--noto);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
.community {
  padding-top: 5rem;
  padding-bottom: 5rem;
  max-width: 500px;
  margin: 0 auto;
}
@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(--noto);
  font-size: 72px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: -1.44px;
}
@media screen and (max-width: 1023px) {
  .community .title {
    font-family: var(--noto);
    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(--noto);
    font-size: 60px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: -1.2px;
  }
}
.community .title {
  font-family: var(--Montserrat);
}
@media screen and (max-width: 1023px) {
  .community .title {
    font-family: var(--Montserrat);
  }
}
@media screen and (max-width: 767px) {
  .community .title {
    font-family: var(--Montserrat);
  }
}
.community .title {
  text-align: center;
}
.community .title-mini {
  text-align: center;
  font-family: var(--noto);
  font-family: var(--noto);
  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(--noto);
    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(--noto);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
.community {
  /*inputbox*/
}
.community input {
  font-family: var(--noto);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1023px) {
  .community input {
    font-family: var(--noto);
    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(--noto);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
.community input {
  padding: 1em;
  border: 0;
  background-color: var(--gray1);
}
.community {
  /*서브타이틀*/
}
.community .step-tit {
  font-family: var(--noto);
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.88px;
}
@media screen and (max-width: 1023px) {
  .community .step-tit {
    font-family: var(--noto);
    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(--noto);
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.72px;
  }
}
.community .step-tit {
  width: 100%;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--black-a15);
}
.community .step-tit span {
  font-family: var(--noto);
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.88px;
}
@media screen and (max-width: 1023px) {
  .community .step-tit span {
    font-family: var(--noto);
    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(--noto);
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.72px;
  }
}
.community .step-tit span {
  font-family: var(--Montserrat);
}
@media screen and (max-width: 1023px) {
  .community .step-tit span {
    font-family: var(--Montserrat);
  }
}
@media screen and (max-width: 767px) {
  .community .step-tit span {
    font-family: var(--Montserrat);
  }
}
.community .step-tit span {
  margin-right: 0.625rem;
}
.community {
  /*체크박스 공통*/
}
.community label {
  cursor: pointer;
}
.community label input[type=checkbox] {
  position: absolute;
  left: -9999px;
}
.community label input[type=checkbox]:checked + span {
  color: var(--pri1);
}
.community {
  /*버튼 공통*/
}
.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(--noto);
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1023px) {
  #join .step01 ul li:nth-child(1) {
    font-family: var(--noto);
    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(--noto);
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -0.56px;
  }
}
#join .step01 ul li:nth-child(1) {
  margin-bottom: 0.3125rem;
}
#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(--noto);
  border: 0;
  height: 100%;
}
#join .step01 ul li:nth-child(3) label span {
  font-family: var(--noto);
  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(--noto);
    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(--noto);
    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(--noto);
  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(--noto);
    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(--noto);
    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(--noto);
  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(--noto);
    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(--noto);
    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(--noto);
  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(--noto);
    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(--noto);
    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(--noto);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.48px;
}
@media screen and (max-width: 1023px) {
  #join .step02 ul li:nth-child(2) .email-notice {
    font-family: var(--noto);
    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(--noto);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.4px;
  }
}
#join .step02 ul li:nth-child(2) .email-notice {
  color: red;
  padding-top: 10px;
}
@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(--noto);
  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(--noto);
    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(--noto);
    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: 10000;
}

.modal-con {
  font-family: var(--noto);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1023px) {
  .modal-con {
    font-family: var(--noto);
    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(--noto);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
.modal-con {
  display: none;
  position: fixed;
  background-color: white;
  z-index: 15000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@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(--noto);
  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(--noto);
    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(--noto);
    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(--noto);
  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(--noto);
    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(--noto);
    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(--noto);
  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(--noto);
    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(--noto);
    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(--noto);
  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(--noto);
    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(--noto);
    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: 1023px) {
  .modal-con .popcont pre {
    font-family: var(--noto);
    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) {
  .modal-con .popcont pre {
    font-family: var(--noto);
    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) {
  .modal-con .popcont pre {
    font-family: var(--noto);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.4px;
  }
}
@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(--noto);
  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(--noto);
    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(--noto);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
.modal-con .button-wrap .check {
  background-color: var(--pri1);
  color: var(--white);
}
.modal-con .button-wrap .one {
  width: 100%;
  background-color: var(--pri1);
  color: var(--white);
}
.modal-con .button-wrap .buttonclose {
  border-top: 1px solid var(--black-a15);
}

.privacy {
  background-color: var(--pri1);
  color: var(--white);
  padding: 1.875rem;
  border-radius: 20px;
  position: fixed;
}
@media screen and (max-width: 767px) {
  .privacy {
    font-family: var(--noto);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.48px;
  }
}
@media screen and (max-width: 767px) and (max-width: 1023px) {
  .privacy {
    font-family: var(--noto);
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.4px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .privacy {
    font-family: var(--noto);
    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(--noto);
  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(--noto);
    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(--noto);
    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: 150px;
  padding-bottom: 150px;
  text-align: center;
}
#pay-subtop h3 {
  color: black;
}
#pay-subtop p {
  font-family: var(--noto);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 2.025rem */
  letter-spacing: -0.0675rem;
  padding-top: 10px;
  color: var(--black-a50);
}

.pay {
  font-family: var(--noto);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1023px) {
  .pay {
    font-family: var(--noto);
    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(--noto);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
.pay {
  text-align: center;
  max-width: 1400px;
  width: 80%;
  margin: 0 auto;
  overflow-x: auto;
  margin-bottom: 150px;
}
.pay table {
  width: 100%;
}
.pay table tr td, .pay table tr th {
  border: 1px solid var(--pri1);
  font-family: var(--noto);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 2.025rem */
  letter-spacing: -0.0675rem;
}
.pay table thead {
  background-color: var(--pri1);
  color: white;
  border: 1px solid var(--pri1);
}
.pay table thead td, .pay table thead th {
  border: 1px solid var(--white);
}
.pay table thead tr:nth-child(1) th:nth-child(6) {
  padding: 0px 10px;
}
.pay table thead tr:nth-child(2) th:nth-child(4),
.pay table thead tr:nth-child(2) th:nth-child(5) {
  padding: 0px 20px;
}
.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(--noto);
  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(--noto);
    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(--noto);
    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 {
  /*검색&글쓰기*/
}
#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(--noto);
  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(--noto);
    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(--noto);
    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);
}
#board .control .board-write-btn i {
  margin-right: 1em;
}
#board .control .board-write-btn {
  font-family: var(--noto);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1023px) {
  #board .control .board-write-btn {
    font-family: var(--noto);
    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(--noto);
    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 {
  /*토탈(공통)*/
}
#board .total {
  flex-basis: 100%;
  padding: 1em 0;
  font-family: var(--noto);
  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(--noto);
    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(--noto);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
#board {
  /*탭(공통)*/
}
#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 {
  /*더보기버튼(공통)*/
}
#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(--noto);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1023px) {
  #board .button-wrap .board-button {
    font-family: var(--noto);
    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(--noto);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
#board .button-wrap .board-button {
  margin-top: 3.125rem;
  width: 300px;
  height: 50px;
}
#board .button-wrap .board-button:hover {
  background-color: var(--pri1);
  border: 1px solid var(--pri1);
  color: white;
  transition: all 0.5s ease;
}
#board {
  /*페이지버튼(공통)*/
}
#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(--noto);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1023px) {
  #board .pagination .num_list li a {
    font-family: var(--noto);
    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(--noto);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
#board .pagination .num_list li a {
  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 p {
  font-family: var(--noto);
  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(--noto);
    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(--noto);
    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(--noto);
  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 {
    font-family: var(--noto);
    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(--noto);
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -1.04px;
  }
}
.view .list-info .list-title {
  margin-bottom: 1.25rem;
}
.view .list-info .list-title span {
  padding-right: 1.25rem;
  font-family: var(--Montserrat);
}
@media screen and (max-width: 1023px) {
  .view .list-info .list-title span {
    font-family: var(--Montserrat);
  }
}
@media screen and (max-width: 767px) {
  .view .list-info .list-title span {
    font-family: var(--Montserrat);
  }
}
.view .list-info .list-title span {
  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(--Montserrat);
    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(--Montserrat);
  }
}
@media screen and (max-width: 1023px) and (max-width: 767px) {
  .view .list-info .list-title span {
    font-family: var(--Montserrat);
  }
}
@media screen and (max-width: 767px) {
  .view .list-info .list-title span {
    font-family: var(--Montserrat);
    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(--Montserrat);
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .view .list-info .list-title span {
    font-family: var(--Montserrat);
  }
}
.view .content {
  position: relative;
  font-family: var(--noto);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1023px) {
  .view .content {
    font-family: var(--noto);
    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(--noto);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
.view .content {
  padding-bottom: 3.125rem;
  padding-top: 3.125rem;
  border-top: 1px solid var(--pri1);
}
.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(--noto);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1023px) {
  .view .content .content-button button {
    font-family: var(--noto);
    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(--noto);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
.view .content .content-button button {
  border-radius: 999px;
}
.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(--noto);
  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(--noto);
    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(--noto);
    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(--noto);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1023px) {
  .view .add-file {
    font-family: var(--noto);
    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(--noto);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
.view .add-file {
  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);
}

/*write*/
.write {
  /*체크박스 공통*/
}
.write label {
  cursor: pointer;
  font-family: var(--noto);
  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(--noto);
    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(--noto);
    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(--noto);
  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(--noto);
    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(--noto);
    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(--noto);
  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) input, .write ul li:nth-child(2) textarea {
    font-family: var(--noto);
    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(--noto);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
.write ul li:nth-child(2) input, .write ul li:nth-child(2) textarea {
  max-width: 100%;
}
.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(--noto);
  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(--noto);
    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(--noto);
    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(--noto);
  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(--noto);
    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(--noto);
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -0.56px;
  }
}
.write .personal-infor p {
  font-family: var(--noto);
  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 p {
    font-family: var(--noto);
    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(--noto);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
.write .personal-infor p {
  padding: 1.25rem;
  background-color: var(--gray1);
  width: 100%;
}
.write .personal-infor label span {
  font-family: var(--noto);
  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(--noto);
    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(--noto);
    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(--noto);
  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-content {
    font-family: var(--noto);
    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(--noto);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
.notice li .list-content {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.notice li .list-data {
  margin-top: 1.25rem;
  font-family: var(--noto);
  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(--noto);
    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(--noto);
    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(--Montserrat);
}
@media screen and (max-width: 1023px) {
  .event li .list-title span {
    font-family: var(--Montserrat);
  }
}
@media screen and (max-width: 767px) {
  .event li .list-title span {
    font-family: var(--Montserrat);
  }
}
.event li .list-title span {
  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(--Montserrat);
    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(--Montserrat);
  }
}
@media screen and (max-width: 1023px) and (max-width: 767px) {
  .event li .list-title span {
    font-family: var(--Montserrat);
  }
}
@media screen and (max-width: 767px) {
  .event li .list-title span {
    font-family: var(--Montserrat);
    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(--Montserrat);
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .event li .list-title span {
    font-family: var(--Montserrat);
  }
}
@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 */