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

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

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

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

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

* {
  box-sizing: border-box;
}

li, a {
  list-style: none;
}

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

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

input {
  caret-color: black;
}

textarea {
  caret-color: black;
}

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

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

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

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

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

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

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

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

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

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

    }
    @include mobile{

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

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

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

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

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

:root {
  /*gray*/
  --gray1: #FAFAFA;
  --gray2: #F2F2F2;
  --gray3: #ECECEC;
  --gray4: #F0F0F0;
  --gray5: #CFCFCF;
  --gray6: #BEBEBE;
  --gray7: #B7B7B7;
  --gray8: #ABABAB;
  --gray9: #A1A1A1;
  --gray10: #5E5E5E;
  /*black*/
  --black: #000;
  --black-a95: rgba(0, 0, 0, 0.95);
  --black-a90: rgba(0, 0, 0, 0.90);
  --black-a85: rgba(0, 0, 0, 0.85);
  --black-a80: rgba(0, 0, 0, 0.80);
  --black-a75: rgba(0, 0, 0, 0.75);
  --black-a70: rgba(0, 0, 0, 0.70);
  --black-a65: rgba(0, 0, 0, 0.65);
  --black-a60: rgba(0, 0, 0, 0.60);
  --black-a55: rgba(0, 0, 0, 0.55);
  --black-a50: rgba(0, 0, 0, 0.50);
  --black-a45: rgba(0, 0, 0, 0.45);
  --black-a40: rgba(0, 0, 0, 0.40);
  --black-a35: rgba(0, 0, 0, 0.35);
  --black-a30: rgba(0, 0, 0, 0.30);
  --black-a25: rgba(0, 0, 0, 0.25);
  --black-a20: rgba(0, 0, 0, 0.20);
  --black-a15: rgba(0, 0, 0, 0.15);
  --black-a10: rgba(0, 0, 0, 0.10);
  --black-a5: rgba(0, 0, 0, 0.05);
  /*white*/
  --white: #fff;
  --white-a95: rgba(255, 255, 255, 0.95);
  --white-a90: rgba(255, 255, 255, 0.90);
  --white-a85: rgba(255, 255, 255, 0.85);
  --white-a80: rgba(255, 255, 255, 0.80);
  --white-a75: rgba(255, 255, 255, 0.75);
  --white-a70: rgba(255, 255, 255, 0.70);
  --white-a65: rgba(255, 255, 255, 0.65);
  --white-a60: rgba(255, 255, 255, 0.60);
  --white-a55: rgba(255, 255, 255, 0.55);
  --white-a50: rgba(255, 255, 255, 0.50);
  --white-a45: rgba(255, 255, 255, 0.45);
  --white-a40: rgba(255, 255, 255, 0.40);
  --white-a35: rgba(255, 255, 255, 0.35);
  --white-a30: rgba(255, 255, 255, 0.30);
  --white-a25: rgba(255, 255, 255, 0.25);
  --white-a20: rgba(255, 255, 255, 0.20);
  --white-a15: rgba(255, 255, 255, 0.15);
  --white-a10: rgba(255, 255, 255, 0.10);
  --white-a5: rgba(255, 255, 255, 0.05);
  /*pri 1*/
  --pri1: #2D63B0;
  /*pri 2*/
  --pri2: #2F2F45;
  /*pri 3*/
  --pri3: #EB6D12;
  /*sub*/
  --sub1: #BDCFDB;
  --sub1-1: #F7F8FE;
  --sub1-2: #92DEEE;
  --sub1-3: ;
  --sub1-4: ;
  --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);
}

:root {
  --ko: "Pretendard", "Outfit", sans-serif;
  --arita: "Arita buri", sans-serif;
  --en: "Playfair Display", "Pretendard", sans-serif;
}

/* 폰트셋팅*/
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(--ko);
  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(--ko);
  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(--ko);
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  /* 2.4375rem */
  letter-spacing: -0.13125rem;
}

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

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

h6 {
  font-family: var(--ko);
  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(--ko);
  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(--ko);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  /* 2.025rem */
  letter-spacing: -0.0675rem;
}

/*삭제금지*/
/*common*/
.div {
  display: block;
  width: 100%;
  height: 3rem;
  background: url(/common/img/user/common/div.svg) repeat-x 0 0;
}

.type01 {
  padding: 6rem 5rem 8rem;
  color: #635F5F;
  background-color: var(--white);
}
.type01 p,
.type01 span {
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: -0.1rem;
  word-break: keep-all;
}
.type01 .inr {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-width: 93.75rem;
  margin: 0 auto;
}
.type01 .inr .left {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.type01 .info .contents {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
.type01 .info .contents > div {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1.875rem;
}
.type01 .link {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 1.87rem;
}
.type01 .link a {
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: -0.1rem;
}
.type01 .link .btn {
  display: flex;
  padding: 0.3125rem 1.25rem;
  border-radius: 62.4375rem;
  color: #A7A7A7;
  border: 1px solid #A7A7A7;
}
.type01 .copyright {
  letter-spacing: 0;
}
@media screen and (max-width: 1023px) {
  .type01 .inr {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4.3rem;
  }
  .type01 .inr .left {
    align-items: center;
  }
  .type01 .link {
    justify-content: center;
  }
  .type01 .info .contents {
    align-items: center;
    gap: 1.25rem;
  }
  .type01 .info .contents > div {
    justify-content: center;
    gap: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .type01 {
    padding: 6rem 1.25rem;
  }
}

.type02 {
  padding: 6rem 5rem 8rem;
  color: var(--black);
  background-color: var(--white);
}
.type02 .inr {
  display: flex;
  flex-direction: column;
  gap: 6rem;
  max-width: 93.75rem;
  margin: 0 auto;
}
.type02 .inr p,
.type02 .inr span {
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: -0.1rem;
  word-break: keep-all;
}
.type02 .inr .top {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 5rem;
}
.type02 .inr .left {
  width: 18.75rem;
}
.type02 .inr .center {
  width: calc(100% - 45rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.type02 .inr .center > div {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.type02 .inr .right {
  display: flex;
  width: 16rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1.25rem;
}
.type02 .inr .right ul {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}
.type02 .inr .right li {
  position: relative;
  display: flex;
  width: 100%;
  padding-bottom: 1.25rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  border-bottom: 1px solid #D9D9D9;
  transition: all 0.3s;
}
.type02 .inr .right li::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #002767;
  transition: all 0.3s;
}
.type02 .inr .right li a {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: -0.1rem;
  color: var(--black-a65);
  transition: all 0.3s;
}
.type02 .inr .right li:hover::before {
  width: 100%;
}
.type02 .inr .right li:hover a {
  font-weight: 500;
  color: var(--black);
}
.type02 .inr .copyright {
  text-align: center;
  letter-spacing: 0;
  color: var(--Black-black-a40, rgba(0, 0, 0, 0.4));
  font-size: 1rem;
}
@media screen and (max-width: 1023px) {
  .type02 .inr p,
  .type02 .inr span {
    text-align: center;
  }
  .type02 .inr .top {
    flex-direction: column;
  }
  .type02 .inr .left,
  .type02 .inr .center,
  .type02 .inr .right {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .type02 .inr .center > div {
    justify-content: center;
  }
  .type02 .inr .right ul {
    flex-direction: row;
    justify-content: center;
  }
  .type02 .inr .right ul li {
    width: initial;
  }
  .type02 .inr .right ul li a {
    text-align: center;
    padding: 0rem 0.625rem;
  }
}
@media screen and (max-width: 767px) {
  .type02 {
    padding: 6rem 1.25rem;
  }
}

.type03 {
  padding: 6rem 5rem 8rem;
  color: #ABABAB;
  background-color: #5D5D5D;
}
.type03 .inr {
  display: flex;
  flex-direction: column;
  max-width: 93.75rem;
  margin: 0 auto;
}
.type03 .inr .top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0 2rem;
  padding-bottom: 3.125rem;
  border-bottom: 1px solid #A1A1A1;
}
.type03 .inr .bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 3.125rem;
}
.type03 .inr .bottom p {
  font-size: 1.1rem;
}
.type03 .info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 35%;
}
.type03 .info p {
  font-size: clamp(1.25rem, 1.5vw, 1.25rem);
}
.type03 .info span {
  font-size: clamp(1.25rem, 1.5vw, 1.25rem);
}
.type03 .info .company,
.type03 .info .addr {
  color: var(--white);
}
.type03 .logo {
  display: flex;
  justify-content: center;
  width: 30%;
}
.type03 .link {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
  width: 35%;
}
.type03 .link li {
  font-size: clamp(1.25rem, 1.5vw, 1.25rem);
}
.type03 .link li a {
  font-size: clamp(1.25rem, 1.5vw, 1.25rem);
  cursor: pointer;
}
@media screen and (max-width: 1023px) {
  .type03 {
    padding: 6.25rem 3rem;
  }
  .type03 .inr .top {
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 3.75rem;
  }
  .type03 .inr .bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }
  .type03 .inr .bottom p {
    font-size: 1.125rem;
  }
  .type03 .info {
    width: 100%;
  }
  .type03 .logo {
    width: 100%;
  }
  .type03 .logo img {
    margin: 0 auto;
    width: auto;
    max-height: 6.75rem;
  }
  .type03 .link {
    width: 100%;
    align-items: center;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .type03 {
    padding: 6rem 1.25rem;
  }
}

.type04 {
  padding: 6rem 5rem 8rem;
  color: var(--white);
  background-color: #B2A092;
}
.type04 .inr {
  display: flex;
  flex-direction: column;
  max-width: 93.75rem;
  margin: 0 auto;
}
.type04 .inr .top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 3rem;
  border-bottom: 1px solid #fff;
}
.type04 .inr .bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 3.125rem;
}
.type04 .inr .bottom p {
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: -0.01rem;
}
.type04 .inr .title {
  font-family: var(--en);
  font-weight: 600;
  letter-spacing: 0;
}
@media screen and (max-width: 1023px) {
  .type04 .inr .title {
    font-family: var(--en);
  }
}
@media screen and (max-width: 767px) {
  .type04 .inr .title {
    font-family: var(--en);
  }
}
.type04 .inr p {
  font-size: 1.125rem;
  letter-spacing: -0.11rem;
  letter-spacing: 0;
}
.type04 .info {
  display: flex;
  flex-direction: column;
}
.type04 .info.right {
  align-items: flex-end;
  text-align: right;
  width: 28%;
  flex-basis: 28%;
}
.type04 .info.right ul li {
  display: flex;
  justify-content: flex-end;
}
.type04 .info.right .contents > p {
  display: flex;
  justify-content: flex-end;
  gap: 1.25rem;
  padding-bottom: 1.25rem;
}
.type04 .info.right .contents > p .label {
  display: flex;
  flex-shrink: 0;
  text-align: left;
}
.type04 .info.right .contents > p .value {
  display: flex;
  justify-content: flex-end;
  min-width: 10rem;
}
.type04 .info .contents {
  padding-top: 1.875rem;
}
.type04 .info .contents > div {
  display: flex;
  flex-wrap: wrap;
  gap: 0 3.125rem;
}
.type04 .info .contents > div > p {
  display: flex;
  gap: 1.875rem;
  padding-bottom: 1.25rem;
}
.type04 .info .contents .label {
  color: var(--white-a50);
}
.type04 .info p {
  font-size: 1.125rem;
}
.type04 .info span {
  font-size: 1.125rem;
}
.type04 .link {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3.125rem;
}
.type04 .link a {
  font-weight: 300;
  font-size: 1.125rem;
  letter-spacing: -0.1rem;
}
@media screen and (max-width: 1023px) {
  .type04 .inr .bottom {
    flex-direction: column-reverse;
    align-items: center;
  }
  .type04 .inr .bottom p {
    text-align: center;
  }
  .type04 .inr .copyright {
    padding-top: 2.5rem;
  }
  .type04 .info .contents > div:nth-child(2) {
    flex-direction: column;
  }
  .type04 .info .contents > div > p {
    font-size: 1.6rem;
  }
  .type04 .link li {
    line-height: 1;
    text-align: center;
  }
  .type04 .link li a {
    font-size: 1.3rem;
    letter-spacing: -0.12rem;
  }
}
@media screen and (max-width: 767px) {
  .type04 {
    padding: 6rem 1.25rem;
  }
  .type04 .inr .title {
    font-size: 1.5rem;
  }
  .type04 .inr .top {
    flex-direction: column;
    justify-content: center;
    gap: 1.875rem;
  }
  .type04 .info {
    align-items: center;
  }
  .type04 .info span {
    text-align: center;
    font-size: 1.3rem;
    letter-spacing: -0.12rem;
  }
  .type04 .info .contents {
    width: 100%;
  }
  .type04 .info .contents > div {
    gap: 0 2rem;
    justify-content: center;
  }
  .type04 .info .contents > div:nth-child(2) {
    flex-direction: row;
  }
  .type04 .info .contents > div > p {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 1rem;
    font-weight: 600;
  }
  .type04 .info .contents > div > p.company, .type04 .info .contents > div > p.addr {
    width: 100%;
    justify-content: center;
    text-align: center;
    letter-spacing: -0.08rem;
  }
  .type04 .info.right {
    align-items: center;
    text-align: center;
    width: 100%;
    flex-basis: 100%;
  }
  .type04 .info.right .contents {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0 1.875rem;
  }
  .type04 .info.right .contents > p {
    justify-content: flex-start;
  }
  .type04 .info.right .contents > p .value {
    min-width: auto;
  }
  .type04 .link {
    gap: 1.25rem;
  }
}

.type05 {
  padding: 6rem 5rem 8rem;
  color: var(--white);
  background: linear-gradient(90deg, #A36B1C 0%, #01395E 100%);
}
.type05 .inr {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 0 2rem;
  max-width: 93.75rem;
  margin: 0 auto;
  padding-top: 4rem;
  border-top: 1px solid #fff;
}
.type05 .inr p,
.type05 .inr span {
  font-size: 1.375rem;
  font-weight: 300;
  letter-spacing: -0.1rem;
  word-break: keep-all;
}
.type05 .inr .right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-basis: 32%;
  min-width: 23rem;
}
.type05 .info .contents {
  display: flex;
  flex-direction: column;
  gap: 1.75rem 0;
}
.type05 .info .contents > div {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1.75rem 2.8rem;
}
.type05 .link {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.75rem 2.8rem;
  padding-bottom: 1.75rem;
}
.type05 .link a {
  font-weight: 300;
}
.type05 .copyright {
  text-align: right;
}
@media screen and (max-width: 1023px) {
  .type05 .inr {
    flex-direction: column;
    gap: 5rem 0;
  }
  .type05 .inr .right {
    flex-basis: 100%;
    min-width: 100%;
    align-items: center;
  }
  .type05 .info {
    align-items: center;
  }
  .type05 .info .contents {
    align-items: center;
  }
  .type05 .info .contents > div {
    justify-content: center;
  }
  .type05 .link {
    justify-content: center;
  }
  .type05 .link a {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 767px) {
  .type05 {
    padding: 6rem 1.25rem;
  }
  .type05 .inr p,
  .type05 .inr span {
    text-align: center;
  }
  .type05 .info .contents > div {
    text-align: center;
    gap: 1.75rem 1rem;
  }
}

.type06 {
  padding: 6rem 5rem 8rem;
  color: #69737B;
  background-color: #132430;
}
.type06 .line {
  display: block;
  width: 100%;
  max-width: 93.75rem;
  margin: 0 auto;
  height: 1px;
  background-color: #304350;
}
.type06 p,
.type06 span {
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: -0.1rem;
  word-break: keep-all;
}
.type06 .inr {
  padding-top: 5rem;
  max-width: 93.75rem;
  margin: 0 auto;
}
.type06 .inr .bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-direction: row-reverse;
  padding-top: 5rem;
}
.type06 .info .contents {
  display: flex;
  flex-direction: column;
  gap: 1.875rem 0;
}
.type06 .info .contents > div {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1.875rem 3.125rem;
}
.type06 .info .company {
  font-weight: 500;
  color: #A1A8AE;
}
.type06 .link {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}
.type06 .link a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  padding: 0.25rem 0.75rem;
  font-size: 0.9375rem;
  border-radius: 0.0625rem;
  border: 1px solid #304350;
  background: #132430;
  cursor: pointer;
  transition: all 0.3s;
}
.type06 .link a:hover {
  color: var(--white);
  border-color: #fff;
}
.type06 .copyright {
  letter-spacing: 0;
}
@media screen and (max-width: 1023px) {
  .type06 {
    padding: 6rem 0;
  }
  .type06 .inr {
    padding: 5rem 5rem 0;
  }
  .type06 .inr .line {
    max-width: 100%;
  }
  .type06 .inr .bottom {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem 0;
    padding-top: 3.75rem;
  }
  .type06 .info .contents {
    align-items: center;
  }
  .type06 .info .contents > div {
    justify-content: center;
    text-align: center;
    gap: 1rem 2rem;
  }
  .type06 .link {
    justify-content: center;
  }
  .type06 .copyright {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .type06 .inr {
    padding: 6rem 1.25rem;
  }
  .type06 .inr p,
  .type06 .inr span {
    font-size: 1.375rem;
    font-weight: 300;
    letter-spacing: -0.1rem;
  }
}

.type07 {
  padding: 6rem 5rem 8rem;
  padding-top: 10rem;
  padding-bottom: 10rem;
  color: #C1C1C1;
  background: #0B0B0B;
}
.type07 .inr {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6.62rem;
  max-width: 93.75rem;
  margin: 0 auto;
  padding-right: 10rem;
}
.type07 .inr p,
.type07 .inr span {
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: -0.1rem;
  word-break: keep-all;
}
.type07 .info .contents {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.type07 .info .contents > div {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 2.6rem;
}
.type07 .info .contents .company {
  font-weight: 500;
}
.type07 .info .contents .label {
  color: #6F6F6F;
}
.type07 .link {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.type07 .link a {
  display: flex;
  padding: 0.125rem 0.625rem;
  justify-content: center;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: normal;
  letter-spacing: -0.02188rem;
  border-radius: 0.125rem;
  border: 1px solid #ffffff;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
}
.type07 .link a:hover {
  color: #16efff;
  border-color: #16efff;
}
.type07 .copyright {
  color: #8F8F8F;
  letter-spacing: 0;
}
.type07 .scroll-top {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  padding: 2.3125rem;
  flex-direction: column;
  align-items: flex-end;
  text-transform: uppercase;
  color: var(--white);
  font-size: 1.5rem;
  border-radius: 0.25rem;
  background: #00BAC8;
  cursor: pointer;
  transition: all 0.3s;
}
.type07 .scroll-top:hover {
  background: #16efff;
}
@media screen and (max-width: 767px) {
  .type07 {
    padding: 6rem 1.25rem;
    padding-top: 5rem;
  }
  .type07 .inr {
    gap: 4rem;
    padding-right: 0;
  }
  .type07 .inr p,
  .type07 .inr span {
    font-size: 1.375rem;
    font-weight: 300;
    letter-spacing: -0.1rem;
  }
  .type07 .inr .top {
    padding-right: 9rem;
  }
  .type07 .link {
    justify-content: center;
  }
  .type07 .link a {
    font-size: 1.125rem;
    font-weight: 300;
    letter-spacing: -0.1rem;
  }
  .type07 .scroll-top {
    padding: 2rem;
  }
}
@media screen and (max-width: 360px) {
  .type07 .inr .top {
    padding-right: 0;
  }
  .type07 .inr p,
  .type07 .inr span {
    text-align: center;
  }
  .type07 .info .contents > div {
    justify-content: center;
  }
  .type07 .scroll-top {
    display: none;
  }
}

.type08 {
  padding: 7.5rem 0;
  color: var(--white);
  background-color: var(--black);
}
.type08 .inr {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
}
.type08 .inr p,
.type08 .inr span {
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: -0.1rem;
  word-break: keep-all;
}
.type08 .inr .line {
  width: 100%;
  height: 0.0625rem;
  margin: 5rem 0;
  background-color: var(--white);
}
.type08 .inr .top {
  max-width: 93.75rem;
  margin: 0 auto;
}
.type08 .inr .bottom {
  max-width: 93.75rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.type08 .info .contents {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.625rem 1.25rem;
}
.type08 .info .contents p {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
.type08 .info .contents span {
  display: flex;
  flex-shrink: 0;
}
.type08 .info .label {
  padding-right: 0.625rem;
  color: var(--white-a45);
}
.type08 .link {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.type08 .link a {
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: -0.1rem;
  text-transform: uppercase;
}
.type08 .link .admin a {
  font-weight: 600;
  letter-spacing: 0.3rem;
}
.type08 .copyright {
  letter-spacing: 0;
}
@media screen and (max-width: 1023px) {
  .type08 .inr .top {
    max-width: 100%;
    margin: 0;
  }
  .type08 .inr .top img {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .type08 {
    padding: 6rem 1.25rem;
  }
  .type08 .inr p,
  .type08 .inr span {
    font-size: 1.375rem;
    font-weight: 300;
    letter-spacing: -0.1rem;
    text-align: center;
  }
  .type08 .info .contents {
    gap: 1.25rem;
  }
  .type08 .info .contents p {
    flex-wrap: wrap;
    justify-content: center;
  }
  .type08 .info .contents span {
    flex-shrink: initial;
  }
  .type08 .link {
    padding-top: 1.25rem;
  }
  .type08 .link a {
    font-size: 1.375rem;
    font-weight: 300;
    letter-spacing: -0.1rem;
  }
}

.type09 {
  padding: 6rem 5rem 8rem;
  padding-bottom: 0;
  color: #7791BA;
  background-color: #13489E;
}
.type09 .inr {
  max-width: 93.75rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 5rem;
  padding: 5rem;
  border-top-left-radius: 2.5rem;
  border-top-right-radius: 2.5rem;
  background-color: #002F7C;
}
.type09 .inr p,
.type09 .inr span {
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: -0.1rem;
  word-break: keep-all;
}
.type09 .inr .top {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}
.type09 .info .contents {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}
.type09 .info .company {
  color: var(--white);
  font-weight: 400;
}
.type09 .link {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.type09 .link a {
  display: flex;
  padding: 0rem 0.75rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 0.125rem;
  border: 1px solid #00235B;
  background: #002767;
  color: #94A0C8;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: -0.01875rem;
  transition: all 0.3s;
}
.type09 .link a:hover {
  border-color: #000916;
  background: #00173b;
}
.type09 .copyright {
  text-align: center;
  letter-spacing: 0;
}
@media screen and (max-width: 1023px) {
  .type09 {
    padding: 8rem 0 0;
  }
}
@media screen and (max-width: 767px) {
  .type09 .inr {
    padding: 7rem 1.25rem;
  }
  .type09 .inr p,
  .type09 .inr span {
    font-size: 1.375rem;
    font-weight: 300;
    letter-spacing: -0.1rem;
  }
  .type09 .inr .copyright {
    font-size: 1.1rem;
  }
  .type09 .link {
    justify-content: center;
  }
  .type09 .link a {
    font-size: 1.375rem;
    font-weight: 300;
    letter-spacing: -0.1rem;
  }
}

.type10 {
  padding: 6rem 5rem 8rem;
  color: var(--white);
  background-color: #435F89;
}
.type10 .inr {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
  max-width: 93.75rem;
  margin: 0 auto;
}
.type10 .inr p,
.type10 .inr span {
  font-size: 1.375rem;
  font-weight: 300;
  letter-spacing: -0.1rem;
  word-break: keep-all;
}
.type10 .inr .top {
  display: flex;
  gap: 2rem;
  flex-direction: column;
  align-items: center;
}
.type10 .link {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}
.type10 .link a {
  font-size: 1.375rem;
  font-weight: 300;
  letter-spacing: -0.1rem;
}
.type10 .info .contents {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .type10 {
    padding: 6rem 1.25rem;
  }
  .type10 .inr p,
  .type10 .inr span {
    text-align: center;
    font-size: 1.375rem;
    font-weight: 300;
    letter-spacing: -0.1rem;
  }
  .type10 .link {
    justify-content: center;
  }
}

.type11 {
  padding: 6rem 5rem 8rem;
  padding-top: 11rem;
  padding-bottom: 11rem;
  color: #7884A3;
  background-color: #001C3F;
}
.type11 .inr {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
  gap: 5rem;
  max-width: 93.75rem;
  margin: 0 auto;
}
.type11 .inr p,
.type11 .inr span {
  font-size: 1.375rem;
  font-weight: 300;
  letter-spacing: -0.1rem;
  word-break: keep-all;
}
.type11 .inr .top {
  display: flex;
  gap: 3.125rem;
  flex-direction: column;
  align-items: center;
}
.type11 .inr .copyright {
  letter-spacing: 0;
}
.type11 .link {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.31rem;
}
.type11 .link a {
  display: flex;
  padding: 0.25rem 0.75rem;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: -0.02344rem;
  border: 1px solid #273760;
  background: #0E1935;
  transition: all 0.3s;
}
.type11 .link a:hover {
  border-color: #375092;
  background: #040914;
}
.type11 .info .contents {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .type11 {
    padding: 6rem 1.25rem;
  }
  .type11 .inr p,
  .type11 .inr span {
    text-align: center;
    font-size: 1.375rem;
    font-weight: 300;
    letter-spacing: -0.1rem;
  }
  .type11 .link {
    justify-content: center;
  }
}

header {
  position: fixed;
  top: 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 3.06rem 5rem;
  z-index: 100;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeDown 0.8s ease forwards;
  flex-wrap: wrap-reverse;
  gap: 1rem 3rem;
}
header .logo {
  font-size: 1.775rem;
  font-weight: 700;
  letter-spacing: -0.075rem;
}
header .logo a {
  font-size: 1.775rem;
  font-weight: 700;
  letter-spacing: -0.075rem;
  color: #fff;
}
header nav {
  margin: 0 auto;
}
header nav ul {
  display: flex;
  align-items: center;
  gap: 3.25rem;
  height: 100%;
}
header nav li.active a span {
  color: #92DEEE;
}
header nav li.active a span::after {
  transform: scale(1);
}
header nav li.active.special::after {
  background: #92DEEE;
  color: #fff;
}
header nav a {
  flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: -0.05rem;
  color: #fff;
  transition: color 0.3s;
}
header nav a span {
  position: relative;
  font-size: 1.25rem;
  transition: transform 0.3s;
}
header nav a span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 1px;
  background-color: var(--pri1);
  transform: scale(0);
  transition: transform 0.3s;
}
header nav a:hover {
  color: var(--pri1);
}
header nav a:hover span::after {
  transform: scale(1);
}
header nav .special {
  display: flex;
  align-items: center;
  gap: 0.38rem;
}
header nav .special::after {
  position: relative;
  content: "special";
  font-family: var(--en);
  display: flex;
  height: 1.31rem;
  padding: 0.25rem 0.625rem 0.35rem 0.625rem;
  justify-content: center;
  align-items: center;
  font-size: 0.8125rem;
  letter-spacing: 0;
  border-radius: 6.25rem 6.25rem 6.25rem 0;
  background: #2D63B0;
  color: #fff;
}
@media screen and (max-width: 1023px) {
  header nav .special::after {
    font-family: var(--en);
  }
}
@media screen and (max-width: 767px) {
  header nav .special::after {
    font-family: var(--en);
  }
}
header .util {
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
  align-content: center;
  gap: 0 0.75rem;
  flex-wrap: wrap;
}
header .util a {
  display: flex;
  align-items: center;
}
header .util .icon {
  display: inline-block;
  width: 1.875rem;
  height: 1.875rem;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
header .util .tel {
  gap: 0.4rem;
  letter-spacing: 0;
}
header .util .tel .txt {
  color: #fff;
  margin-top: -0.3rem;
  font-family: var(--en);
}
@media screen and (max-width: 1023px) {
  header .util .tel .txt {
    font-family: var(--en);
  }
}
@media screen and (max-width: 767px) {
  header .util .tel .txt {
    font-family: var(--en);
  }
}
header .util .tel .icon {
  background-image: url(/common/img/user/common/icon_tel.svg);
}
header .util .location .icon {
  background-image: url(/common/img/user/common/icon_location.svg);
}
header .util .councel .icon {
  background-image: url(/common/img/user/common/icon_councel.svg);
}
header.active nav li.active a span {
  color: #fff;
}
header.active nav li.active a span::after {
  background-color: #fff;
}
header.default {
  background: none;
}
header.default .logo {
  color: #CACACA;
}
header.default .logo a {
  color: #CACACA;
}
header.default nav a {
  color: #202020;
}
header.default .util .tel .txt {
  color: #202020;
}
header.default .util .tel .icon {
  background-image: url(/common/img/user/common/icon_tel_on.svg);
}
header.default .util .location .icon {
  background-image: url(/common/img/user/common/icon_location_on.svg);
}
header.default .util .councel .icon {
  background-image: url(/common/img/user/common/icon_councel_on.svg);
}
header.on {
  padding: 1.2rem 5rem 1rem;
  background-color: var(--pri1);
}
header.on .logo {
  color: #fff;
}
header.on .logo a {
  color: #fff;
}
header.on nav li a {
  color: #fff;
}
header.on nav li a span::after {
  background-color: #92DEEE;
}
header.on nav li a:hover {
  color: #92DEEE;
}
header.on nav li.active a span {
  color: #92DEEE;
}
header.on nav li.active a span::after {
  background-color: #92DEEE;
}
header.on nav .special::after {
  background: #fff;
  color: var(--pri1);
  transition: all 0.3s;
}
header.on .util .tel .txt {
  color: #fff;
}
header.on .util .tel .icon {
  background-image: url(/common/img/user/common/icon_tel.svg);
}
header.on .util .location .icon {
  background-image: url(/common/img/user/common/icon_location.svg);
}
header.on .util .councel .icon {
  background-image: url(/common/img/user/common/icon_councel.svg);
}
@media screen and (max-width: 1560px) {
  header {
    padding: 2.5rem 2rem;
  }
  header nav ul {
    gap: 2rem;
  }
  header.on {
    padding: 1.2rem 2rem 1rem;
  }
}
@media screen and (max-width: 1360px) {
  header nav {
    margin: initial;
  }
  header nav ul {
    gap: 1.6rem;
  }
  header .util {
    margin-left: auto;
  }
}
@media screen and (max-width: 1030px) {
  header nav {
    margin: initial;
  }
  header nav ul {
    gap: 1rem;
  }
}
@media screen and (max-width: 860px) {
  header {
    flex-wrap: wrap;
  }
  header .logo {
    order: 1;
  }
  header nav {
    order: 3;
    display: flex;
    justify-content: center;
    width: 100%;
  }
  header nav ul {
    width: 100%;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  header .util {
    order: 2;
    margin: initial;
  }
}
@media screen and (max-width: 767px) {
  header {
    gap: 1.5rem 3rem;
    padding: 3rem 0 2.5rem 1.2rem;
  }
  header.on {
    padding: 2rem 0 1.3rem 1.2rem;
  }
  header.on nav::after {
    opacity: 1;
  }
  header nav {
    position: relative;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  header nav::after {
    content: "";
    opacity: 0;
    position: fixed;
    bottom: 0;
    right: 0;
    display: block;
    width: 6rem;
    height: 4rem;
    background: linear-gradient(90deg, rgba(45, 99, 176, 0) 0%, #2D63B0 100%);
    transition: all 0.3s;
  }
  header nav ul {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.5rem;
    min-width: -moz-max-content;
    min-width: max-content;
    padding: 0 2.8rem 0 0;
  }
  header nav ul li {
    flex: 0 0 auto;
  }
  header nav ul li a span {
    font-size: 1.5rem;
  }
  header nav::-webkit-scrollbar {
    display: none;
  }
  header .util {
    order: 2;
    margin: initial;
    padding-right: 1.2rem;
    gap: 0 0.6rem;
  }
  header .util .tel .txt {
    display: none;
  }
  header .util .icon {
    width: 2.5rem;
    height: 2.5rem;
  }
}
@media screen and (max-width: 360px) {
  header .util .location {
    display: none;
  }
}

#scrollRail {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.375rem;
  z-index: 9999;
  pointer-events: none;
}
#scrollRail #scrollProgress {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #3b82f6, #06b6d4);
  transition: width 0.2s linear;
}
@media screen and (max-width: 767px) {
  #scrollRail {
    height: 0.25rem;
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*pages*/
.header {
  padding: 12.5rem 0 7.5rem;
}
.header .title {
  padding-bottom: 1.8rem;
  text-align: center;
  color: #202020;
  font-family: var(--arita);
  font-size: 3.375rem;
  font-weight: 600;
  line-height: 128%;
  letter-spacing: -0.15188rem;
}
.header .title span {
  color: #202020;
  font-family: var(--arita);
  font-size: 3.375rem;
  font-weight: 600;
  line-height: 128%;
  letter-spacing: -0.15188rem;
}
.header .title b {
  line-height: inherit;
  font-weight: inherit;
  font-size: inherit;
  color: inherit;
  color: var(--pri1);
}
.header .title b span {
  color: inherit;
}
.header .desc {
  color: #555;
  text-align: center;
  font-size: 2rem;
  font-weight: 300;
  line-height: 128%;
  letter-spacing: -0.05rem;
}
.header .desc span {
  line-height: inherit;
  font-weight: inherit;
  font-size: inherit;
  color: inherit;
}
@media screen and (max-width: 767px) {
  .header {
    padding: 6rem 2rem 4.5rem;
  }
  .header .title {
    font-size: 2.7rem;
  }
  .header .title span {
    font-size: inherit;
  }
  .header .desc {
    line-height: 1.25;
  }
  .header .desc span {
    line-height: 1.25;
    font-size: 1.7rem;
  }
}

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

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

.cursor {
  position: fixed;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  transform: translate(-50%, -50%) rotate(45deg) scale(1);
  opacity: 0;
  border-radius: 6.25rem;
  background-color: #202020;
  z-index: 10;
  transition: transform 0.1s ease;
}
.cursor img {
  width: 1.5rem;
  height: 1.5rem;
}

[data-aos=custom-blur-scale] {
  opacity: 0;
  filter: blur(10px);
  transform: scale(0.6);
  transition-property: filter, opacity, transform !important;
}

[data-aos=custom-blur-scale].aos-animate {
  opacity: 1;
  filter: blur(0px);
  transform: scale(1);
}

#mainVisualWrap {
  opacity: 0;
  transform: translateY(30px);
}
#mainVisualWrap.active {
  animation: fadeUp 0.6s ease forwards;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#mainVisual {
  position: relative;
  height: 67.5rem;
  /* 이미지 슬라이드 */
  /* 스크롤다운 */
  /* 모바일 호버 X */
}
#mainVisual.on .mainSwiper {
  width: 100%;
  height: 100%;
  bottom: 0;
  border-radius: 0;
  transition: width 0.4s, height 0.4s 0.4s;
  transition-timing-function: ease-in-out;
}
#mainVisual.on .mainSwiper .text-wrap {
  bottom: 29rem;
  left: 10rem;
}
#mainVisual.on .mainSwiper .text-wrap .tit {
  color: #fff;
}
#mainVisual.on .mainSwiper .text-wrap .desc {
  color: #fff;
}
#mainVisual.on .scroll {
  opacity: 0;
}
#mainVisual.on .pager {
  opacity: 1;
  bottom: 24rem;
}
#mainVisual.stop .mainSwiper {
  transition: all 0s;
  transition-timing-function: ease-in-out;
}
#mainVisual .mainSwiper {
  position: absolute;
  bottom: 10rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 120px);
  height: 20rem;
  border-radius: 0;
  transition: width 0.4s 0.4s, height 0.4s, border-radius 0.2s;
}
#mainVisual .mainSwiper:before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  z-index: 5;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.4s;
  background: rgba(0, 0, 0, 0.4);
}
#mainVisual .main_img {
  position: relative;
  width: 100%;
}
#mainVisual .main_img li {
  position: absolute;
  left: 0;
  width: 100% !important;
  height: 100%;
  background: center no-repeat;
  background-size: cover;
  opacity: 0 !important;
}
#mainVisual .main_img li.swiper-slide-active {
  opacity: 1 !important;
}
#mainVisual .main_img li.img01 {
  background-image: url(/common/img/user/main/mainslide/mainslide01.jpg);
}
#mainVisual .main_img li.img02 {
  background-image: url(/common/img/user/main/mainslide/mainslide02.jpg);
}
#mainVisual .main_img li .text-wrap {
  position: absolute;
  bottom: 24rem;
  left: 4rem;
  z-index: 10;
  transition: all 0.4s linear;
}
#mainVisual .main_img li .text-wrap .mo {
  display: none;
}
#mainVisual .main_img li .text-wrap .tit {
  display: inline-block;
  position: relative;
  color: #000;
  font-family: var(--arita);
  font-size: 3.75rem;
  font-weight: 600;
  line-height: 128%;
  letter-spacing: -0.16875rem;
  padding-bottom: 1.81rem;
}
#mainVisual .main_img li .text-wrap .desc {
  color: #000;
  font-size: 2rem;
  font-weight: 400;
  line-height: 168%;
  letter-spacing: -0.05625rem;
}
#mainVisual .scroll {
  position: absolute;
  left: 50%;
  bottom: 44px;
  z-index: 10;
  transform: translateX(-50%) skew(-0.1deg);
  font-size: 1.2rem;
  color: #fff;
  font-family: var(--en);
  letter-spacing: 0.01rem;
}
@media screen and (max-width: 1023px) {
  #mainVisual .scroll {
    font-family: var(--en);
  }
}
@media screen and (max-width: 767px) {
  #mainVisual .scroll {
    font-family: var(--en);
  }
}
#mainVisual .scroll span {
  display: block;
  position: relative;
  width: 1px;
  height: 75px;
  margin: 0 auto 15px;
  background: rgba(255, 255, 255, 0.3);
}
#mainVisual .scroll span:before {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 100px;
  background: #fff;
  animation: scr_down 2s infinite;
}
@keyframes scr_down {
  0% {
    top: 10px;
    opacity: 1;
  }
  100% {
    top: 90%;
    opacity: 0;
  }
}
#mainVisual .pager {
  opacity: 0;
  position: absolute;
  left: 10.2rem;
  bottom: 13rem;
  z-index: 10;
  width: auto;
  transition: all 0.6s;
}
#mainVisual .pager .swiper-pagination-bullet {
  margin: 0 0.3rem !important;
  background-color: #fff;
}
@media (hover: hover) {
  #mainVisual.on .txt a:hover span {
    background: var(--primary);
  }
}
@media screen and (max-width: 1023px) {
  #mainVisual .mainSwiper {
    width: calc(100% - 4rem);
    height: 40%;
    bottom: 0;
  }
  #mainVisual .main_img li .text-wrap {
    left: 3rem;
    bottom: 32rem;
  }
  #mainVisual .main_img li .text-wrap .tit {
    font-size: 3.2rem;
  }
  #mainVisual .main_img li .text-wrap .desc {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  #mainVisual .mainSwiper {
    width: 100%;
  }
  #mainVisual .main_img li .text-wrap {
    left: initial;
    text-align: center;
    width: 100%;
    padding: 0 2rem;
  }
  #mainVisual .main_img li .text-wrap .mo {
    display: block;
  }
  #mainVisual .main_img li .text-wrap .tit {
    font-size: 3rem;
  }
  #mainVisual .main_img li .text-wrap .desc {
    font-size: 1.5rem;
  }
  #mainVisual .pager {
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
  }
  #mainVisual.on .mainSwiper .text-wrap {
    left: initial;
    bottom: 25rem;
  }
  #mainVisual.on .pager {
    bottom: 20rem;
  }
}

#clinic {
  max-width: 1400px;
  margin: 0 auto;
  background-color: #fff;
}
#clinic .marquee-wrap {
  position: relative;
  margin-top: 7.5rem;
}
#clinic .marquee-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5rem;
  height: 100%;
  z-index: 2;
  background: url(/common/img/user/main/marquee_left.png) no-repeat left center;
}
#clinic .marquee-wrap::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 5rem;
  height: 100%;
  z-index: 2;
  background: url(/common/img/user/main/marquee_right.png) no-repeat -30px center;
}
#clinic .marqueeSwiper {
  overflow: hidden;
  margin-bottom: 0.625rem;
}
#clinic .marqueeSwiper .swiper-wrapper {
  display: flex;
  gap: 0 0.4rem;
}
#clinic .marqueeSwiper .swiper-slide {
  width: auto;
  white-space: nowrap;
  display: inline-block;
  padding: 0.625rem 1.5rem;
  color: #8E8E8E;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 128%;
  letter-spacing: -0.03125rem;
  border-radius: 6.25rem;
  cursor: pointer;
  border: 1px solid #EEE;
}
#clinic .marqueeSwiper .swiper-slide:nth-child(odd) {
  background: #F8F8F8;
}
#clinic .marqueeSwiper .swiper-slide:hover {
  border-color: var(--pri2);
  color: var(--pri2);
}
@media screen and (max-width: 767px) {
  #clinic .marqueeSwiper .swiper-slide {
    font-size: 1.45rem;
  }
}
#clinic .marqueeSwiper[dir=rtl] .swiper-slide {
  direction: ltr;
  unicode-bidi: plaintext;
}
#clinic .marqueeSwiper[dir=rtl] .swiper-slide:nth-child(odd) {
  background: #fff;
}
#clinic .marqueeSwiper[dir=rtl] .swiper-slide:nth-child(even) {
  background: #F8F8F8;
}
#clinic .contents {
  box-sizing: border-box;
}
#clinic .contents ul {
  position: relative;
  display: grid;
  grid-template-columns: 48% auto;
  grid-template-rows: repeat(3, 1fr);
  align-items: start;
  padding: 1.87rem 0;
  row-gap: 3.75rem;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
  height: 100%;
  box-sizing: border-box;
}
#clinic .contents ul::after {
  position: absolute;
  top: 0;
  left: 48%;
  display: block;
  content: "";
  width: 1px;
  height: 100%;
  background-color: #eee;
}
#clinic .contents .list {
  box-sizing: border-box;
}
#clinic .contents .list.main {
  display: grid;
  position: relative;
  grid-row: span 3;
  width: 100%;
  grid-template-rows: auto auto;
  gap: 2.5rem;
  padding: 0 4.4rem 0 0;
}
#clinic .contents .list .img-wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
  max-height: 26rem;
  box-sizing: border-box;
  overflow: hidden;
  transition: border-color 0.4s ease;
  border-radius: 1.25rem;
}
#clinic .contents .list .img-wrap .swiper-slide {
  width: 100% !important;
  overflow: hidden;
  cursor: none;
}
#clinic .contents .list .img-wrap .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
#clinic .contents .list .img-wrap .swiper-pagination {
  left: initial;
  right: 0;
  bottom: 1.1rem;
  transform: translateX(0);
}
#clinic .contents .list .img-wrap .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #fff;
}
#clinic .contents .list .img-wrap .swiper-pagination .swiper-pagination-bullet {
  background-color: #fff;
  margin: 0 2px !important;
}
#clinic .contents .list .text-wrap {
  cursor: pointer;
}
#clinic .contents .list .text-wrap .label {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.25rem;
  padding-bottom: 0.81rem;
}
#clinic .contents .list .text-wrap .label p {
  display: flex;
  padding: 0.09rem 0.375rem;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  border-radius: 0.125rem;
  color: #2D63B0;
  border: 1px solid #2D63B0;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02188rem;
}
#clinic .contents .list .text-wrap .tit {
  display: inline-block;
  position: relative;
  color: #000;
  font-size: 2rem;
  font-weight: 500;
  line-height: 128%;
  letter-spacing: -0.05rem;
  transition: color 0.3s ease;
}
#clinic .contents .list .text-wrap .tit::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 1px;
  background-color: #2D63B0;
  transform: scale(0);
  transition: transform 0.3s;
}
#clinic .contents .list .text-wrap .ask {
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem 0;
  color: #555;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 128%;
  letter-spacing: -0.0375rem;
}
#clinic .contents .list .text-wrap .ask p {
  color: #555;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 128%;
  letter-spacing: -0.0375rem;
}
#clinic .contents .list.right {
  width: auto;
  height: 13rem;
  display: flex;
  flex-wrap: nowrap;
  gap: 2rem;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
}
#clinic .contents .list.right .img-wrap {
  width: 80%;
  height: 100%;
  border-radius: 1rem;
}
#clinic .contents .list.right .text-wrap {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  margin-right: auto;
  padding-top: 0;
  width: 90%;
}
#clinic .contents .list.right .text-wrap .ask {
  padding-top: 1rem;
}
@media screen and (max-width: 1240px) {
  #clinic .marquee-wrap ::before {
    width: 6rem;
  }
  #clinic .marquee-wrap ::after {
    width: 6rem;
  }
  #clinic .contents {
    padding: 0 2rem;
  }
  #clinic .contents ul {
    grid-template-rows: repeat(2, auto);
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
  #clinic .contents ul::after {
    display: none;
  }
  #clinic .contents ul .list.main {
    height: auto;
    grid-row: auto;
    padding: 0;
  }
  #clinic .contents ul .list.main .text-wrap .ask p:nth-child(2), #clinic .contents ul .list.main .text-wrap .ask p:nth-child(3) {
    display: none;
  }
  #clinic .contents ul .list.right {
    display: grid;
    gap: 2.5rem;
    height: auto;
    width: 100%;
  }
  #clinic .contents ul .list.right .img-wrap {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: initial;
    box-sizing: border-box;
    overflow: hidden;
    transition: border-color 0.4s ease;
    border-radius: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  #clinic .header {
    padding: 6rem 0 3.5rem;
  }
  #clinic .header .desc {
    padding: 0 2rem;
  }
  #clinic .marquee-wrap {
    margin-top: 3.5rem;
  }
  #clinic .marquee-wrap::before {
    background-position: -2rem center;
  }
  #clinic .marquee-wrap::after {
    background-position: -2rem center;
  }
  #clinic .contents ul {
    grid-template-columns: 1fr;
    row-gap: 4.5rem;
  }
  #clinic .contents ul .list {
    height: auto;
    display: flex !important;
    flex-direction: column !important;
  }
  #clinic .contents ul .list .text-wrap .label p {
    font-size: 1.1rem;
    line-height: 1.25;
  }
  #clinic .contents ul .list.main {
    min-height: 26rem;
  }
  #clinic .contents ul .list.main::after {
    display: none;
  }
  #clinic .contents ul .list.main .text-wrap .ask p:nth-child(2), #clinic .contents ul .list.main .text-wrap .ask p:nth-child(3) {
    display: block !important;
  }
  #clinic .contents ul .list.right {
    gap: 2rem;
    min-height: 26rem;
    justify-content: flex-start;
    align-items: initial;
  }
  #clinic .contents ul .list.right .img-wrap {
    border-radius: 1rem;
  }
}

#nst {
  background-color: #fff;
}
#nst .contents {
  padding: 0 1.5625rem;
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
#nst .contents > div {
  width: 50%;
  height: 53.75rem;
}
#nst .contents .left {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--pri2);
  border-radius: 1.25rem;
}
#nst .contents .left .label li {
  position: relative;
  display: flex;
  cursor: pointer;
  color: #646483;
  font-family: var(--arita);
  font-size: 2.875rem;
  font-weight: 600;
  line-height: 180%;
  transition: all 0.3s;
}
#nst .contents .left .label li img {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: auto;
  border-radius: 0.375rem;
  overflow: hidden;
  transition: all 0.3s;
  opacity: 0;
}
#nst .contents .left .label li::before {
  position: absolute;
  top: 50%;
  left: -5rem;
  transform: translateY(-50%);
  display: inline-block;
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 6.25rem;
  background-color: #fff;
  opacity: 0;
  transition: all 0.3s;
}
#nst .contents .left .label li.active {
  color: #fff;
}
#nst .contents .left .label li.active img {
  left: -6rem;
  opacity: 1;
  width: 5.125rem;
}
#nst .contents .left .label li.active::before {
  left: -8rem;
  opacity: 1;
}
#nst .contents .right .description {
  display: flex;
  height: 100%;
  border-radius: 1.25rem;
  overflow: hidden;
  background-color: #EEE;
  cursor: none;
}
#nst .contents .right .description li {
  display: none;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  padding: 6.25rem 6.25rem 6.875rem;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 0.3s;
  animation: bgZoom 4s ease forwards;
}
#nst .contents .right .description li p {
  color: #fff;
  font-size: 2rem;
  font-weight: 400;
  line-height: 168%;
  letter-spacing: -0.05rem;
  opacity: 0;
  animation: slideTop 0.6s ease forwards;
  animation-delay: 0.2s;
}
#nst .contents .right .description li.active {
  display: flex;
}
#nst .contents .right .description li:nth-child(1) {
  background-image: url(/common/img/user/main/process_non01.jpg);
}
#nst .contents .right .description li:nth-child(2) {
  background-image: url(/common/img/user/main/process_non03.jpg);
}
#nst .contents .right .description li:nth-child(3) {
  background-image: url(/common/img/user/main/process_non05.jpg);
}
#nst .contents .right .description li:nth-child(4) {
  background-image: url(/common/img/user/main/process_non02.jpg);
}
#nst .contents .right .description li:nth-child(5) {
  background-image: url(/common/img/user/main/process_non04.jpg);
}
#nst .contents .right .description li:nth-child(6) {
  background-image: url(/common/img/user/main/process_non06.jpg);
}
@keyframes bgZoom {
  0% {
    background-size: 100% 100%;
  }
  100% {
    background-size: 103% 103%;
  }
}
@keyframes slideTop {
  0% {
    opacity: 0;
    transform: translateY(20%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
@media screen and (max-width: 1240px) {
  #nst .contents > div {
    height: 43.75rem;
  }
  #nst .contents .left {
    padding-left: 4rem;
  }
  #nst .contents .left .label li {
    font-size: 2.4rem;
  }
  #nst .contents .right .description li {
    padding: 3.25rem 3.25rem 3.875rem;
  }
  #nst .contents .right .description li p {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  #nst .contents {
    flex-direction: column;
  }
  #nst .contents > div {
    width: 100%;
  }
  #nst .contents .left {
    min-height: 12rem;
    height: initial;
    padding: 2rem 1rem;
  }
  #nst .contents .left .label {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 2rem;
  }
  #nst .contents .left .label li {
    font-size: 1.6rem;
  }
  #nst .contents .left .label li img {
    top: -2rem;
    left: 0;
    transform: translateX(-50%);
  }
  #nst .contents .left .label li::before {
    top: -0.8rem;
    left: 50%;
    transform: translateY(-50%);
  }
  #nst .contents .left .label li.active img {
    display: none;
  }
  #nst .contents .left .label li.active::before {
    top: -0.3rem;
    left: 50%;
    transform: translateY(-50%);
    opacity: 1;
  }
  #nst .contents .right {
    height: 30rem;
  }
  #nst .contents .right .description {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 61.76%, rgba(32, 32, 32, 0.42) 100%);
    background-blend-mode: darken;
  }
  #nst .contents .right .description li {
    padding: 2rem 3rem 3rem;
  }
  #nst .contents .right .description li p {
    font-size: 1.8rem;
    font-weight: 600;
  }
}

#process {
  padding-bottom: 12.5rem;
  background-color: #fff;
}
#process .processSwiper {
  position: relative;
  padding: 0 5rem 9.37rem 5rem;
}
#process .processSwiper .swiper-slide {
  position: relative;
  width: 42.5rem;
  height: 45rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3.375rem 4.375rem 5.9rem;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  #process .processSwiper .swiper-slide {
    height: 40rem;
    padding: 3.375rem 2.5rem 3.5rem;
  }
}
#process .processSwiper .swiper-slide::before {
  display: block;
  content: "";
  width: 22.3125rem;
  height: 22.3125rem;
  border-radius: 22.3125rem;
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  left: -6rem;
  top: -10rem;
}
#process .processSwiper .swiper-slide.first {
  background-color: #F7F8FE;
}
#process .processSwiper .swiper-slide.second {
  background-color: var(--pri2);
}
#process .processSwiper .swiper-slide.second p,
#process .processSwiper .swiper-slide.second .desc {
  color: #A5EEFE;
}
#process .processSwiper .swiper-slide.second p li,
#process .processSwiper .swiper-slide.second .desc li {
  color: #A5EEFE;
}
#process .processSwiper .swiper-slide.second::before {
  background: rgba(34, 34, 51, 0.25);
}
#process .processSwiper .swiper-slide.third {
  background-color: #BDCFDB;
}
#process .processSwiper .swiper-slide.third p,
#process .processSwiper .swiper-slide.third .desc {
  color: #fff;
}
#process .processSwiper .swiper-slide.third p li,
#process .processSwiper .swiper-slide.third .desc li {
  color: #fff;
}
#process .processSwiper .swiper-slide.third::before {
  background: #B4C8D5;
}
#process .processSwiper .swiper-slide.four {
  background-color: #92DEEE;
}
#process .processSwiper .swiper-slide.four p,
#process .processSwiper .swiper-slide.four .desc {
  color: #fff;
}
#process .processSwiper .swiper-slide.four p li,
#process .processSwiper .swiper-slide.four .desc li {
  color: #fff;
}
#process .processSwiper .swiper-slide.four::before {
  background: #89DAEC;
}
#process .processSwiper .swiper-slide .step {
  position: relative;
  color: var(--pri2);
  font-family: var(--arita);
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  #process .processSwiper .swiper-slide .step {
    font-size: 2rem;
  }
}
#process .processSwiper .swiper-slide .tit {
  padding: 8.75rem 0 2rem;
  color: var(--pri2);
  font-family: var(--arita);
  font-size: 2.65rem;
  font-weight: 600;
  line-height: 128%;
  letter-spacing: -0.115rem;
}
@media screen and (max-width: 767px) {
  #process .processSwiper .swiper-slide .tit {
    font-size: 2.2rem;
  }
}
#process .processSwiper .swiper-slide .arrow {
  position: absolute;
  top: 21rem;
  left: 4.5rem;
}
@media screen and (max-width: 767px) {
  #process .processSwiper .swiper-slide .arrow {
    top: 18rem;
    left: 3.8rem;
  }
}
#process .processSwiper .swiper-slide .icon {
  position: absolute;
  right: 4.5rem;
  top: 5rem;
}
@media screen and (max-width: 767px) {
  #process .processSwiper .swiper-slide .icon {
    width: 5rem;
    top: 3.2rem;
    right: 3rem;
  }
}
#process .processSwiper .swiper-slide .desc {
  padding-top: 7.5rem;
}
#process .processSwiper .swiper-slide .desc li {
  display: flex;
  padding-bottom: 1rem;
  color: var(--pri2);
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: -0.08rem;
}
#process .processSwiper .swiper-slide .desc li::before {
  content: "·";
  display: inline-block;
  padding-right: 1rem;
  font-weight: 900;
}
#process .processSwiper .control {
  min-width: 12rem;
  height: 46px;
  position: absolute;
  left: 50%;
  bottom: 0.5rem;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.0625rem;
  z-index: 3;
}
#process .processSwiper .control .btn {
  width: 46px;
  height: 46px;
  background-color: #F2F2F2;
  border-radius: 6.25rem;
  transition: all 0.3s;
}
#process .processSwiper .control .btn::after {
  font-size: 1rem;
  color: #202020;
}
#process .processSwiper .control .btn:hover {
  background-color: #000;
}
#process .processSwiper .control .btn:hover::after {
  color: #fff;
}
#process .processSwiper .control .swiper-pagination {
  display: flex;
  align-items: center;
  position: relative;
  top: initial;
  bottom: initial;
  width: initial;
  height: 46px;
  line-height: 0.3;
  padding: 1rem 1.5rem;
  border-radius: 6.25rem;
  background: #F1F1F1;
}
#process .processSwiper .control .swiper-pagination .swiper-pagination-bullet {
  margin: 0 0.16rem !important;
}
#process .processSwiper .control .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #000;
}
#process .processSwiper .control .swiper-button-next {
  left: initial;
  right: 0;
}
#process .processSwiper .control .swiper-button-prev {
  left: 0;
  right: initial;
}
@media screen and (max-width: 1023px) {
  #process .processSwiper .control .btn {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  #process .processSwiper {
    padding: 0 1.2rem 9.37rem 1.2rem;
  }
}

/* OO의 특별함 */
#overview {
  display: flex;
  position: relative;
  background-image: url(/common/img/user/main/bg_overview.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #000;
  transition: background-image 0.5s ease-in-out;
}
#overview .wrap {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0 7.25rem;
  width: 100%;
  overflow: visible;
}
#overview .header {
  position: sticky;
  top: 0;
  z-index: 11;
  width: 45%;
  padding: 0;
  height: -moz-fit-content;
  height: fit-content;
  padding-top: 11rem;
  padding-bottom: 6rem;
  transition: top 0.3s;
}
#overview .header .title {
  text-align: left;
  color: #fff;
}
#overview .header .title b {
  color: var(--pri1);
}
#overview .header .title b span {
  color: var(--pri1);
}
#overview .header .title p {
  color: #fff;
}
#overview .header .title p span {
  color: #fff;
}
#overview .header .title span {
  color: #fff;
}
#overview .header .desc {
  text-align: left;
  color: #fff;
}
#overview .contents {
  width: 45%;
  color: #fff;
}
#overview .overview-list {
  padding: 5.63rem 0 8rem;
}
#overview .overview-list li {
  display: flex;
  flex-direction: row;
  gap: 3rem;
  padding: 5.625rem 8rem 6.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
#overview .overview-list li:last-child {
  border-bottom: 0;
}
#overview .overview-list li .label {
  display: inline-block;
  width: 7rem;
  font-family: var(--en);
  color: #FFF;
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 160%;
}
@media screen and (max-width: 1023px) {
  #overview .overview-list li .label {
    font-family: var(--en);
  }
}
@media screen and (max-width: 767px) {
  #overview .overview-list li .label {
    font-family: var(--en);
  }
}
#overview .overview-list li .text-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.62rem;
  width: 100%;
}
#overview .overview-list li .text-wrap .tit {
  color: #FFF;
  font-size: 2rem;
  font-weight: 500;
  line-height: 128%;
  letter-spacing: -0.08rem;
}
#overview .overview-list li .text-wrap .tit b {
  color: #4E89DE;
}
#overview .overview-list li .text-wrap .desc {
  color: #FFF;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 168%;
  letter-spacing: -0.06rem;
}
@media screen and (max-width: 1480px) {
  #overview .wrap {
    padding: 0 3rem;
  }
}
@media screen and (max-width: 1240px) {
  #overview .wrap {
    flex-direction: column;
    justify-content: flex-start;
    padding: 0 2rem;
  }
  #overview .header {
    position: relative;
    width: 100%;
    padding-bottom: 0;
  }
  #overview .header .title {
    text-align: center;
  }
  #overview .header .desc {
    text-align: center;
  }
  #overview .contents {
    width: 100%;
  }
  #overview .overview-list {
    padding: 0 0 8rem;
  }
  #overview .overview-list li {
    padding: 5.625rem 1.25rem 6.25rem;
  }
}
@media screen and (max-width: 767px) {
  #overview {
    background-position: 15% center;
  }
  #overview .overview-list li {
    flex-direction: column;
    padding: 6.625rem 1.15rem 8rem;
  }
}

/* 의료진소개 */
#doctor {
  height: 53.75rem;
  margin: 1.5625rem;
  background-color: #F7F8FE;
  border-radius: 1.25rem;
  overflow: hidden;
}
#doctor .inr {
  max-width: 1400px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#doctor .header {
  padding: 12.5rem 0 6rem 34rem;
}
#doctor .header .title {
  text-align: left;
}
#doctor .header .desc {
  text-align: left;
}
#doctor .header .desc .point {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background-color: #fff;
  border-radius: 6.25rem;
  color: #555;
  font-size: 2rem;
  font-weight: 300;
  line-height: 128%;
  letter-spacing: -0.05rem;
}
#doctor .contents {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 0 3.75rem;
}
#doctor .contents .doctor-img {
  position: absolute;
  bottom: 0;
  left: -3rem;
  width: 31.25rem;
}
#doctor .contents .history-wrap {
  display: flex;
  flex-direction: row;
  gap: 10rem;
  width: 56.25rem;
  height: 18.25rem;
  overflow-y: scroll;
  position: absolute;
  left: 34rem;
  bottom: 5.625rem;
}
#doctor .contents .history-wrap .label {
  display: inline-flex;
  padding: 0.1875rem 1.375rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  border-radius: 2.1875rem;
  background: #A0B4CF;
  color: #FFF;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.03125rem;
}
#doctor .contents .history-wrap ul {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 2.6rem;
}
#doctor .contents .history-wrap ul li {
  color: #202020;
  font-size: 1rem;
  font-weight: 200;
  line-height: 1;
  letter-spacing: -0.025rem;
}
#doctor .contents .history-wrap ul li::before {
  display: inline-flex;
  content: "·";
  padding: 0.625rem;
  font-weight: 600;
  color: #A3BAC8;
}
@media screen and (max-width: 767px) {
  #doctor .contents .history-wrap ul li {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 1240px) {
  #doctor .header {
    padding: 12.5rem 0 6rem 0;
    z-index: 2;
  }
  #doctor .header .title {
    text-align: center;
  }
  #doctor .header .desc {
    text-align: center;
  }
  #doctor .contents .doctor-img {
    width: 28rem;
  }
  #doctor .contents .history-wrap {
    gap: 4rem;
    width: auto;
    left: 22rem;
    bottom: 5.625rem;
    padding-right: 6rem;
  }
}
@media screen and (max-width: 860px) {
  #doctor .header {
    padding: 8rem 2rem 0;
  }
  #doctor .contents .doctor-img {
    width: 22rem;
  }
  #doctor .contents .history-wrap {
    flex-direction: column;
    width: 52%;
    height: 100%;
    left: initial;
    right: 1rem;
    top: 6rem;
    padding-right: 1rem;
    padding-bottom: 8rem;
  }
}

#equip {
  height: 53.75rem;
  display: flex;
  flex-direction: row;
  gap: 1.875rem;
  margin: 1.5625rem;
}
#equip .header {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 34%;
  padding: 0 5rem 6.5rem 5rem;
  z-index: 2;
  color: #fff;
  background-color: #BDCFDB;
  border-radius: 1.25rem;
}
#equip .header .sticky {
  position: sticky;
  top: 0;
  padding-top: 8rem;
}
#equip .header .title {
  text-align: left;
  color: #fff;
}
#equip .header .desc {
  text-align: left;
  color: #fff;
}
#equip .header span {
  color: #fff;
}
@media screen and (max-width: 767px) {
  #equip .header .title,
  #equip .header .desc {
    text-align: center;
  }
}
#equip .contents {
  position: relative;
  width: 66%;
  background-color: #F5F9FB;
  border-radius: 1.25rem;
  overflow: hidden;
}
#equip .swiper-gallery {
  position: relative;
  height: 34rem;
  width: 100%;
}
#equip .swiper-gallery .swiper-slide {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 5rem;
  padding-top: 5.62rem;
  padding-bottom: 3.19rem;
}
#equip .swiper-gallery .swiper-slide img {
  width: 24.375rem;
  height: auto;
  display: block;
}
#equip .swiper-gallery .swiper-slide .text-wrap .label {
  display: inline-flex;
  padding: 0 1.25rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  border-radius: 0.25rem;
  background: #FFF;
  color: #9F9F9F;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: 188%;
  letter-spacing: -0.03125rem;
}
#equip .swiper-gallery .swiper-slide .text-wrap .tit {
  padding-top: 1.44rem;
  padding-bottom: 2.44rem;
  color: #2F2F45;
  font-size: 2.875rem;
  font-weight: 500;
  line-height: 128%;
  letter-spacing: -0.115rem;
}
#equip .swiper-gallery .swiper-slide .text-wrap .check {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
#equip .swiper-gallery .swiper-slide .text-wrap .check li {
  display: flex;
  flex-direction: row;
  align-items: center;
  color: #626262;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 200%;
  letter-spacing: -0.06rem;
}
#equip .swiper-gallery .swiper-slide .text-wrap .check li::before {
  content: "";
  display: flex;
  width: 1.5rem;
  height: 1.5rem;
  background-image: url(/common/img/user/main/icon-checkbox.svg);
  background-repeat: no-repeat;
  background-position: center center;
  margin-right: 0.5rem;
}
#equip .swiper-thumb {
  position: relative;
  box-sizing: border-box;
  width: auto;
  overflow: hidden;
  margin: 0.625rem 6.875rem;
  padding-bottom: 4rem;
}
#equip .swiper-thumb .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 10.625rem;
  border-radius: 0.375rem;
  background-color: #fff;
  transition: border-color 0.3s;
  border: 1px solid transparent;
}
#equip .swiper-thumb .swiper-slide .image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 14.0625rem;
  height: 100%;
  padding: 0.5rem;
}
#equip .swiper-thumb .swiper-slide .image img {
  width: auto;
  height: 100%;
}
#equip .swiper-thumb .swiper-slide-thumb-active {
  border-color: var(--pri1);
}
#equip .control {
  position: relative;
  bottom: 3.2rem;
  width: 100%;
  height: 3rem;
  padding: 0.625rem 6.875rem;
  box-sizing: border-box;
}
#equip .control .equip-next,
#equip .control .equip-prev {
  top: -210%;
  color: #202020;
  z-index: 100;
}
#equip .control .equip-next::after,
#equip .control .equip-prev::after {
  font-size: 1.4rem;
}
#equip .control .equip-next {
  right: 4rem;
}
#equip .control .equip-prev {
  left: 4rem;
}
#equip .control .equip-pager {
  display: flex;
  justify-content: flex-end;
  position: relative;
  top: 1rem;
  right: 0;
  font-family: var(--en);
  color: #9F9F9F;
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 160%;
}
@media screen and (max-width: 1023px) {
  #equip .control .equip-pager {
    font-family: var(--en);
  }
}
@media screen and (max-width: 767px) {
  #equip .control .equip-pager {
    font-family: var(--en);
  }
}
#equip .control .equip-pager span {
  display: inline-block;
  min-width: 2rem;
  font-family: var(--en);
  color: #9F9F9F;
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 160%;
}
@media screen and (max-width: 1023px) {
  #equip .control .equip-pager span {
    font-family: var(--en);
  }
}
@media screen and (max-width: 767px) {
  #equip .control .equip-pager span {
    font-family: var(--en);
  }
}
#equip .control .equip-pager span.swiper-pagination-current {
  color: #202020;
}
#equip .control .equip-progress-wrap {
  position: relative;
  width: 100%;
  height: 0.0625rem;
  background: #DEDEDE;
  border-radius: 6.25rem;
}
#equip .control .equip-progress-wrap .equip-progress {
  position: absolute;
  top: -0.04rem;
  border-radius: 6.25rem;
  background-color: var(--pri1);
  width: 0%;
  height: 0.1875rem;
  transition: width 0.3s;
}
@media screen and (max-width: 1240px) {
  #equip {
    flex-direction: column;
    height: 100%;
  }
  #equip .header {
    width: 100%;
  }
  #equip .contents {
    width: 100%;
    padding: 0 3rem;
  }
  #equip .contents .swiper-gallery {
    height: 100%;
  }
}
@media screen and (max-width: 767px) {
  #equip .contents {
    padding: 0 1.25rem;
  }
  #equip .swiper-gallery .swiper-slide {
    padding-top: 3rem;
    flex-direction: column;
    gap: 3rem;
  }
  #equip .swiper-gallery .swiper-slide img {
    height: 22rem;
  }
  #equip .swiper-gallery .swiper-slide .text-wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #equip .swiper-thumb {
    margin: 0;
  }
  #equip .swiper-thumb .swiper-slide {
    height: auto;
  }
  #equip .swiper-thumb .swiper-slide .image {
    width: 100%;
    padding: 0;
    border-radius: 0.15rem;
  }
  #equip .swiper-thumb .swiper-slide.swiper-slide-thumb-active {
    border: 1px solid var(--pri1);
  }
  #equip .control {
    padding: 0.625rem 0;
  }
  #equip .control .equip-next,
  #equip .control .equip-prev {
    display: none;
  }
}

#hospital .header .title p {
  display: inline-flex;
  color: #202020;
  font-family: var(--arita);
  font-size: 3.375rem;
  font-weight: 600;
  line-height: 128%;
  letter-spacing: -0.15188rem;
}
#hospital .header .title .unit {
  display: inline-block;
  padding: 0 0.6rem;
}
#hospital .header .title .point {
  color: #EB6D12;
}
#hospital .header .title .point span {
  color: inherit;
}
#hospital .contents {
  max-width: 87.5rem;
  margin: 0 auto;
  padding-bottom: 11.25rem;
}
@media screen and (max-width: 1400px) {
  #hospital .contents {
    max-width: 100%;
    padding: 0 3rem 11.25rem;
  }
}
@media screen and (max-width: 767px) {
  #hospital .contents {
    padding: 0 1.25rem 8rem;
  }
}
#hospital .map {
  width: 100%;
  height: 42.5rem;
  border-radius: 1.25rem;
}
#hospital .map .roughmap_maker_label .roughmap_lebel_text {
  margin-top: -2.4rem;
  padding: 8px 8px 7px 7px;
  line-height: 1.25;
  font-size: 2.4rem;
  color: var(--pri1);
}
#hospital .map .roughmap_maker_label .roughmap_lebel_text::before {
  display: inline-block;
  content: "OO";
  color: var(--pri1);
  padding-right: 1rem;
}
@media screen and (max-width: 767px) {
  #hospital .map {
    height: 30rem;
  }
}

#facility {
  overflow: hidden;
}
#facility .facilitySwiper {
  padding-bottom: 10rem;
  overflow: visible;
}
#facility .facilitySwiper .swiper-wrapper {
  display: flex;
  align-items: flex-end;
  overflow: visible;
}
#facility .facilitySwiper .swiper-slide {
  width: 62.25rem;
  /* 고정 */
  transform: scale(0.5);
  /* 작게 표시 */
  transform-origin: bottom center;
  transition: transform 0.35s ease;
  margin: 0 -6.5rem;
  z-index: 1;
}
#facility .facilitySwiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.25rem;
}
#facility .facilitySwiper .swiper-slide.swiper-slide-active {
  transform: scale(1);
  z-index: 2;
}
#facility .facilitySwiper .control {
  min-width: 13%;
  height: 46px;
  position: absolute;
  left: 50%;
  bottom: 0.5rem;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.0625rem;
  z-index: 3;
}
#facility .facilitySwiper .control .btn {
  width: 46px;
  height: 46px;
  background-color: #F2F2F2;
  border-radius: 6.25rem;
  transition: all 0.3s;
}
#facility .facilitySwiper .control .btn::after {
  font-size: 1rem;
  color: #202020;
}
#facility .facilitySwiper .control .btn:hover {
  background-color: #000;
}
#facility .facilitySwiper .control .btn:hover::after {
  color: #fff;
}
#facility .facilitySwiper .control .swiper-pagination {
  position: relative;
  top: initial;
  bottom: initial;
  width: initial;
  height: 46px;
  line-height: 0.3;
  padding: 1rem 1.5rem;
  border-radius: 6.25rem;
  background: #F1F1F1;
}
#facility .facilitySwiper .control .swiper-pagination .swiper-pagination-bullet {
  margin: 0 0.15rem !important;
}
#facility .facilitySwiper .control .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #000;
}
#facility .facilitySwiper .control .swiper-button-next {
  left: initial;
  right: 0;
}
#facility .facilitySwiper .control .swiper-button-prev {
  left: 0;
  right: initial;
}
@media screen and (max-width: 1023px) {
  #facility .facilitySwiper .swiper-wrapper {
    align-items: center;
  }
  #facility .facilitySwiper .swiper-slide {
    width: 85%;
    margin: 0 -2rem;
    transform: scale(0.7);
  }
  #facility .facilitySwiper .swiper-slide.swiper-slide-active {
    transform: scale(1);
  }
  #facility .facilitySwiper .control .swiper-button-next,
  #facility .facilitySwiper .control .swiper-button-prev {
    display: none;
  }
  #facility .facilitySwiper .control .swiper-pagination {
    display: flex;
    align-items: center;
  }
}
@media screen and (max-width: 380px) {
  #facility .facilitySwiper .swiper-slide {
    width: 75%;
    transform: scale(0.55);
    border-radius: 0.5rem;
  }
}

footer {
  background-color: #27272C;
}
footer .inr {
  max-width: 87.5rem;
  margin: 0 auto;
  transition: all 0.3s;
}
@media screen and (max-width: 87.5rem) {
  footer .inr {
    padding: 0 3rem;
  }
}
@media screen and (max-width: 767px) {
  footer .inr {
    padding: 0 1.25rem;
  }
}
footer .treat-info {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  padding: 11.25rem 0 8.75rem;
}
footer .treat-info .header {
  padding: 3rem 0 0 0;
  width: 30%;
  color: #fff;
  display: flex;
  flex-direction: column;
}
footer .treat-info .header .label {
  font-family: var(--arita);
  font-size: 2rem;
  font-weight: 600;
  line-height: 168%;
  letter-spacing: -0.09rem;
}
footer .treat-info .header .tel {
  padding-top: 1.62rem;
  font-family: var(--en);
  font-size: 3.375rem;
  font-weight: 400;
  line-height: 128%;
  letter-spacing: -0.08438rem;
}
@media screen and (max-width: 1023px) {
  footer .treat-info .header .tel {
    font-family: var(--en);
  }
}
@media screen and (max-width: 767px) {
  footer .treat-info .header .tel {
    font-family: var(--en);
  }
}
footer .treat-info .contents {
  width: 70%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 1.88rem;
}
footer .treat-info .teat-info-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 33%;
  padding: 4.07rem 1.2rem;
  border-radius: 0.25rem;
  background: #313337;
  color: #FFF;
  text-align: center;
}
footer .treat-info .teat-info-item .icon {
  text-align: center;
  padding-bottom: 1rem;
}
footer .treat-info .teat-info-item .icon img {
  width: auto;
  height: 4.125rem;
}
footer .treat-info .teat-info-item .tit {
  padding-bottom: 1.62rem;
  font-size: 2rem;
  font-weight: 400;
  line-height: 128%;
  letter-spacing: -0.05rem;
}
footer .treat-info .teat-info-item .desc {
  padding-bottom: 1.88rem;
}
footer .treat-info .teat-info-item .desc .time {
  color: #BABABA;
  font-family: var(--en);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 168%;
  letter-spacing: -0.0375rem;
}
footer .treat-info .teat-info-item .desc .time span {
  color: #fff;
}
footer .treat-info .teat-info-item .notice-item {
  height: 3.75rem;
}
footer .treat-info .teat-info-item .notice-item li {
  color: #BABABA;
  font-family: var(--en);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 168%;
  letter-spacing: -0.02813rem;
}
@media screen and (max-width: 1240px) {
  footer .treat-info {
    flex-direction: column;
    gap: 3rem;
  }
  footer .treat-info .header {
    width: 100%;
  }
  footer .treat-info .header .tel br {
    display: none;
  }
  footer .treat-info .contents {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  footer .treat-info {
    padding-top: 6rem;
  }
  footer .treat-info .header {
    text-align: center;
  }
  footer .treat-info .header .tel {
    padding-top: 0;
  }
  footer .treat-info .contents {
    flex-direction: column;
  }
  footer .treat-info .teat-info-item {
    width: 100%;
    flex: 1 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
    gap: 1rem;
  }
  footer .treat-info .teat-info-item .icon,
  footer .treat-info .teat-info-item .tit {
    width: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0;
  }
  footer .treat-info .teat-info-item .tit {
    justify-content: flex-start;
  }
  footer .treat-info .teat-info-item .desc {
    width: 100%;
    font-family: var(--arita);
    font-weight: 600;
  }
  footer .treat-info .teat-info-item .desc .time {
    font-weight: inherit;
    font-family: inherit;
    font-size: 2rem;
  }
  footer .treat-info .teat-info-item .desc .time span {
    font-weight: inherit;
    font-family: inherit;
    font-size: inherit;
  }
  footer .treat-info .teat-info-item .notice-item {
    width: 100%;
    height: auto;
  }
  footer .treat-info .teat-info-item .notice-item li {
    font-size: 1.6rem;
  }
}
footer .counsel-form {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-bottom: 10.87rem;
}
footer .counsel-form .header {
  padding: 0;
  text-align: left;
}
footer .counsel-form .header .title {
  text-align: left;
  color: #FFF;
  font-family: var(--arita);
  font-size: 3.375rem;
  font-weight: 600;
  line-height: 168%;
  letter-spacing: -0.15188rem;
}
footer .counsel-form .header .desc {
  text-align: left;
  color: #A9A9A9;
  font-size: 2rem;
  font-weight: 200;
  line-height: 128%;
  letter-spacing: -0.05rem;
}
footer .counsel-form .contents {
  width: 39rem;
}
footer .counsel-form .form form {
  display: flex;
  flex-direction: column;
  gap: 0.63rem;
}
footer .counsel-form .form form select,
footer .counsel-form .form form input[type=text],
footer .counsel-form .form form input[type=tel] {
  display: flex;
  width: 100%;
  height: 4.375rem;
  padding: 0 1.875rem;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
  border: 0;
  border-radius: 0.25rem;
  background: #FFF;
}
footer .counsel-form .form form select::-moz-placeholder, footer .counsel-form .form form input[type=text]::-moz-placeholder, footer .counsel-form .form form input[type=tel]::-moz-placeholder {
  color: #C8C8C8;
  font-size: 1.25rem;
  font-weight: 300;
  opacity: 1;
}
footer .counsel-form .form form select::placeholder,
footer .counsel-form .form form input[type=text]::placeholder,
footer .counsel-form .form form input[type=tel]::placeholder {
  color: #C8C8C8;
  font-size: 1.25rem;
  font-weight: 300;
  opacity: 1;
}
footer .counsel-form .form form select::-webkit-input-placeholder,
footer .counsel-form .form form input[type=text]::-webkit-input-placeholder,
footer .counsel-form .form form input[type=tel]::-webkit-input-placeholder {
  /* Chrome, Safari, Opera */
  color: #C8C8C8;
}
footer .counsel-form .form form select::-moz-placeholder,
footer .counsel-form .form form input[type=text]::-moz-placeholder,
footer .counsel-form .form form input[type=tel]::-moz-placeholder {
  /* Firefox 19+ */
  color: #C8C8C8;
}
footer .counsel-form .form form select :-ms-input-placeholder,
footer .counsel-form .form form input[type=text] :-ms-input-placeholder,
footer .counsel-form .form form input[type=tel] :-ms-input-placeholder {
  /* IE 10+ */
  color: #C8C8C8;
}
footer .counsel-form .form form select:-moz-placeholder,
footer .counsel-form .form form input[type=text]:-moz-placeholder,
footer .counsel-form .form form input[type=tel]:-moz-placeholder {
  /* Firefox 18- */
  color: #C8C8C8;
}
footer .counsel-form .form form .selectbox {
  position: relative;
}
footer .counsel-form .form form .selectbox select {
  appearance: none;
  /* 브라우저 기본 화살표 제거 */
  -webkit-appearance: none;
  -moz-appearance: none;
}
footer .counsel-form .form form .selectbox::after {
  display: inline-block;
  content: "▾";
  position: absolute;
  right: 1.6rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 1.6rem;
  color: #202020;
}
footer .counsel-form .form form .chk-online-agree {
  display: flex;
  text-align: right;
  align-items: center;
  justify-content: flex-end;
  color: #A9A9A9;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 4.375rem;
  letter-spacing: -0.03125rem;
}
footer .counsel-form .form form .chk-online-agree input {
  width: 1.3125rem;
  height: 1.3125rem;
  margin: 0.2rem 0.5rem 0 0;
}
footer .counsel-form .form form .chk-online-agree a {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 400;
}
footer .counsel-form .form form input[type=submit] {
  display: flex;
  width: 38.3125rem;
  height: 5.625rem;
  margin-top: 2rem;
  padding: 0 15.0625rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
  border-radius: 0.25rem;
  background: var(--pri1);
  color: #FFF;
  font-size: 2rem;
  font-weight: 600;
  line-height: 4.375rem;
  letter-spacing: -0.05rem;
  border: 0;
  cursor: pointer;
  transition: all 0.3s;
}
footer .counsel-form .form form input[type=submit]:hover {
  background-color: var(--pri2);
}
@media screen and (max-width: 767px) {
  footer .counsel-form .form form input[type=submit] {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  footer .counsel-form {
    flex-direction: column;
    padding-bottom: 0;
  }
  footer .counsel-form .header {
    padding-bottom: 3rem;
  }
  footer .counsel-form .header .title {
    text-align: center;
  }
  footer .counsel-form .header .desc {
    text-align: center;
  }
  footer .counsel-form .contents {
    margin: 0 auto;
    width: 100%;
  }
}
footer .footer-info {
  padding: 7.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
footer .footer-info p,
footer .footer-info span,
footer .footer-info a {
  color: #A9A9A9;
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: -0.02813rem;
}
footer .footer-info a {
  cursor: pointer;
}
footer .footer-info .info {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
footer .footer-info .info .left > div {
  display: flex;
  gap: 3.12rem;
  padding-bottom: 1.88rem;
}
footer .footer-info .info .right .link {
  display: flex;
  flex-direction: row;
}
footer .footer-info .info .right .link li::after {
  content: "·";
  display: inline-block;
  padding: 0 1.25rem;
  color: #fff;
}
footer .footer-info .info .right .link li:last-child a {
  color: #fff;
  font-weight: 500;
}
footer .footer-info .info .right .link li:last-child::after {
  display: none;
}
@media screen and (max-width: 1023px) {
  footer .footer-info .info {
    flex-direction: column;
    align-items: center;
  }
  footer .footer-info .info .left > div {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem 1rem;
  }
  footer .footer-info .copyright {
    padding-top: 4rem;
    text-align: center;
  }
}

html.popup-open,
body.popup-open {
  position: fixed;
  width: 100%;
}

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

.popup {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  transition: all 0.5s ease-in-out;
  z-index: 999;
}
.popup.show {
  display: block;
}
.popup.show > .inr {
  display: block;
  animation: slideUp 0.4s ease-out forwards;
}
.popup.hide {
  display: none;
}
.popup.hide > .inr {
  animation: slideDown 0.4s ease-in forwards;
}
.popup > .inr {
  width: 80%;
  height: 96%;
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 100%);
  z-index: 1000;
  background: #fff;
  border-radius: 0;
  box-sizing: border-box;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.popup .close {
  position: sticky;
  right: 3.75rem;
  top: 3rem;
  margin-left: auto;
  width: 3.875rem;
  height: 3.875rem;
  z-index: 100;
  background: url(/common/img/user/sub/icon_popup_close.svg) no-repeat center center;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border-radius: 0;
  border: 1px solid transparent;
}
.popup .close:hover {
  border-radius: 0.75rem;
  border-color: #202020;
}
.popup .popup-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 75rem;
  margin: 0 auto;
  margin-top: -6.8rem;
  padding-top: 12.75rem;
  padding-bottom: 1.83rem;
}
.popup .popup-header p {
  color: #000;
  font-family: var(--arita);
  font-size: 2.875rem;
  font-weight: 500;
  line-height: 128%;
  letter-spacing: -0.12938rem;
}
.popup .popup-header p.label {
  display: flex;
  padding: 0 0.75rem;
  justify-content: center;
  align-items: center;
  border-radius: 0.125rem;
  background: #2D63B0;
  color: #FFF;
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 128%;
  letter-spacing: -0.06188rem;
  font-family: var(--ko);
}
.popup .popup-header p.title {
  padding: 1.25rem 0 1.62rem;
}
@media screen and (max-width: 767px) {
  .popup .popup-header p.title {
    text-align: center;
  }
}
.popup .popup-header p.desc {
  font-family: var(--ko);
  color: #555;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 168%;
  letter-spacing: -0.03125rem;
}
.popup .popup-header p b {
  color: var(--pri1);
}
.popup .popup-contents > .tit {
  color: var(--pri1-2);
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 168%;
  letter-spacing: -0.05625rem;
}
@keyframes slideUp {
  0% {
    transform: translate(-50%, 20%);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, 0%);
    opacity: 1;
  }
}
@keyframes slideDown {
  0% {
    transform: translate(-50%, 0%);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, 20%);
    opacity: 0;
  }
}
@media screen and (max-width: 1640px) {
  .popup > .inr {
    width: 96%;
  }
}
@media screen and (max-width: 1340px) {
  .popup .popup-header {
    align-items: center;
    justify-content: center;
    margin-top: 0;
    padding-top: 4rem;
  }
  .popup .popup-header .desc {
    text-align: center;
    padding: 0 2rem;
  }
}
@media screen and (max-width: 767px) {
  .popup .popup-header {
    padding: 0 2rem;
  }
  .popup .popup-header p.desc {
    font-size: 1.4rem;
  }
  .popup .close {
    top: 1rem;
    right: 1rem;
    background-size: contain;
  }
  .popup.ns .popup-header {
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
  }
  .popup.ns .popup-header p.desc {
    text-align: left;
    padding: 0;
  }
}

/* tab */
.tab {
  padding-bottom: 5.63rem;
}
.tab .tab-header {
  position: relative;
  z-index: 1;
  max-width: 75rem;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  overflow-x: auto;
  white-space: nowrap;
  gap: 0.63rem;
  padding-bottom: 3.75rem;
}
.tab .tab-header li {
  display: flex;
  padding: 0.25rem 1.875rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  border-radius: 0.25rem;
  border: 1px solid #2D63B0;
  background: #FFF;
}
.tab .tab-header li a {
  display: block;
  width: 100%;
  height: 100%;
  color: #2D63B0;
  text-align: center;
  font-size: 2rem;
  font-weight: 300;
  line-height: 128%;
  letter-spacing: -0.05rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.tab .tab-header li.active {
  background: #2D63B0;
}
.tab .tab-header li.active a {
  color: var(--white);
}
.tab .tab-contents > div {
  display: none;
}
.tab .tab-contents > div .title-img {
  position: absolute;
  top: 0;
  right: 6rem;
  opacity: 1;
  width: auto;
  height: 25.25rem;
}
.tab .tab-contents > div.active {
  display: block;
}
@media screen and (max-width: 1340px) {
  .tab .tab-header {
    justify-content: center;
  }
  .tab .tab-contents > div .title-img {
    position: relative;
    height: 18rem;
    top: 0;
    right: initial;
    margin: -3.8rem auto 0;
  }
}
@media screen and (max-width: 767px) {
  .tab .tab-header {
    flex-direction: column;
    padding: 0 2rem 4rem;
  }
}

/* 증상 */
.symptoms {
  padding: 6.25rem 0;
  background: #EFF7FF;
}
.symptoms > .inr {
  max-width: 75rem;
  margin: 0 auto;
}
.symptoms .tit {
  padding-bottom: 3.12rem;
  color: #202020;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.05rem;
}
.symptoms .tit b {
  color: var(--pri1);
}
.symptoms .contents {
  display: flex;
  width: 75rem;
  padding: 3.75rem 4.5rem 4.375rem;
  align-items: flex-start;
  align-content: flex-start;
  gap: 1.875rem 2.5rem;
  flex-wrap: wrap;
  background-color: #FFF;
}
.symptoms .check-list {
  display: flex;
  flex-direction: row;
  text-align: left;
  gap: 2.2rem;
  flex-wrap: wrap;
}
.symptoms .check-list li {
  display: flex;
  gap: 0.5rem;
  padding: 0.625rem 0;
  justify-content: center;
  align-items: center;
  border-bottom: 1px dashed #000;
  color: #000;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 128%;
  letter-spacing: -0.05625rem;
}
.symptoms .check-list li::before {
  content: "";
  display: flex;
  width: 1.5rem;
  height: 1.5rem;
  background: url(/common/img/user/main/icon_check_list.svg) no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .symptoms .check-list li::before {
    margin-top: 0.2rem;
  }
}
.symptoms.help .tit {
  padding-bottom: 1.25rem;
}
.symptoms.help .note {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 3.125rem;
  color: var(--pri1);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: -0.03125rem;
}
.symptoms.help .note > img {
  width: auto;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 1340px) {
  .symptoms {
    padding: 4.25rem 2rem;
  }
  .symptoms .contents {
    width: 100%;
    padding: 2rem 2rem 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .symptoms .check-list {
    gap: 1.2rem;
    align-items: flex-start;
  }
  .symptoms .check-list li {
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1.2rem;
    width: 100%;
    max-height: 6rem;
    font-size: 1.5rem;
  }
  .symptoms.help {
    padding: 6rem 2rem;
    text-align: left;
  }
  .symptoms.help .contents {
    padding: 3rem 3rem 4rem;
  }
  .symptoms.help .note img {
    width: 1.4rem;
  }
}

/* 질환 */
.disease {
  max-width: 75rem;
  margin: 0 auto;
}
.disease .header {
  display: flex;
  padding: 6.25rem 0 5.625rem 0;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 0;
}
.disease .header .tit {
  font-family: var(--ko);
  color: #202020;
  font-size: 2rem;
  font-weight: 500;
  line-height: 128%;
  letter-spacing: -0.05rem;
}
.disease .header .tit b {
  color: var(--pri1);
}
.disease .header .desc {
  padding-top: 3.125rem;
  text-align: left;
  color: #555;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 168%;
  letter-spacing: -0.03125rem;
}
.disease .contents ul {
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  gap: 3.75rem 2.5rem;
  flex-wrap: wrap;
}
.disease .contents ul li {
  display: flex;
  flex: 1 1 calc(50% - 1.25rem);
  height: auto;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}
.disease .contents ul li .tit {
  display: flex;
  gap: 1rem;
  color: #202020;
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 128%;
  letter-spacing: -0.04063rem;
}
.disease .contents ul li .tit::before {
  content: "·";
  display: flex;
  color: #202020;
  font-size: 1.625rem;
  font-weight: 500;
}
.disease .contents ul li .txt {
  color: #555;
  font-size: 1.25rem;
  font-weight: 200;
  line-height: 148%;
  letter-spacing: -0.03125rem;
}
@media screen and (max-width: 1340px) {
  .disease .header {
    padding: 6.25rem 2.5rem 5.625rem;
  }
  .disease .contents {
    padding: 0 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .disease .header {
    gap: 0;
    padding: 6.25rem 2.5rem 3rem;
  }
  .disease .header .desc {
    font-size: 1.6rem;
  }
  .disease .contents ul li {
    flex: 100%;
  }
  .disease .contents ul li .txt {
    font-size: 1.56rem;
  }
}

/* 비수술 특징 */
.feature {
  padding: 4rem 0 7rem;
}
.feature ul {
  display: flex;
  flex-wrap: wrap;
  max-width: 75rem;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 75rem;
  margin: 0 auto;
  border: 1px solid #E6E6E6;
}
.feature ul li {
  display: flex;
  flex-direction: column;
  width: calc(25% - 1px);
  gap: 7.25rem;
  padding: 2.5rem 2.3125rem;
  align-items: flex-start;
  align-self: stretch;
  border-right: 1px solid #E6E6E6;
}
.feature ul li:last-child {
  border-right: 0;
}
.feature ul li .icon {
  display: flex;
  width: 3.75rem;
  height: 3.75rem;
  padding: 0.5rem;
  background: #EFF7FF;
  justify-content: center;
  align-items: center;
}
.feature ul li .icon img {
  width: auto;
  height: auto;
}
.feature ul li .text-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.feature ul li .text-wrap .tit {
  text-align: left;
  font-size: 1.625rem;
}
.feature ul li .text-wrap .tit strong,
.feature ul li .text-wrap .tit b {
  font-size: inherit;
  font-weight: 600;
  color: var(--pri1);
}
.feature ul li .text-wrap .desc {
  color: #555;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 128%;
  letter-spacing: -0.05625rem;
}
@media screen and (max-width: 1340px) {
  .feature {
    padding: 4rem 2rem 7rem;
  }
}
@media screen and (max-width: 1023px) {
  .feature ul li {
    padding: 2.5rem 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .feature ul li {
    width: calc(50% - 1px);
    gap: 4rem;
    border-right: 1px solid #E6E6E6;
    padding: 1.5rem;
  }
  .feature ul li:nth-child(2) {
    border-right: 0;
  }
  .feature ul li:nth-child(1), .feature ul li:nth-child(2) {
    border-bottom: 1px solid #E6E6E6;
  }
  .feature ul li .icon {
    width: 5rem;
    height: 5rem;
    padding: 1.2rem;
  }
  .feature ul li .text-wrap .tit {
    padding-bottom: 1rem;
    font-size: 2.2rem;
  }
  .feature ul li .text-wrap .desc {
    line-height: 1.45;
    font-size: 1.4rem;
  }
}

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

#join .step01 ul li:nth-child(1) {
  font-family: var(--ko);
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 170%;
  letter-spacing: -0.6px;
  margin-bottom: 0.3125rem;
}
@media screen and (max-width: 1023px) {
  #join .step01 ul li:nth-child(1) {
    font-family: var(--ko);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 767px) {
  #join .step01 ul li:nth-child(1) {
    font-family: var(--ko);
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -0.56px;
  }
}
#join .step01 ul li:nth-child(2) {
  width: 100%;
  height: 150px;
  border: 1px solid var(--black-a15);
  overflow: visible;
}
#join .step01 ul li:nth-child(2) textarea {
  width: 100%;
  font-family: var(--ko);
  border: 0;
  height: 100%;
}
#join .step01 ul li:nth-child(3) label span {
  font-family: var(--ko);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1023px) {
  #join .step01 ul li:nth-child(3) label span {
    font-family: var(--ko);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 767px) {
  #join .step01 ul li:nth-child(3) label span {
    font-family: var(--ko);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
#join .step02 ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: none;
  justify-content: flex-start;
  align-items: baseline;
  gap: 10%;
}
#join .step02 ul li:nth-child(1):after {
  content: "*";
  color: var(--pri1);
  margin-bottom: 5px;
}
#join .step02 ul li:nth-child(1) {
  flex-basis: 20%;
  flex-grow: 1;
  font-family: var(--ko);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1023px) {
  #join .step02 ul li:nth-child(1) {
    font-family: var(--ko);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 767px) {
  #join .step02 ul li:nth-child(1) {
    font-family: var(--ko);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
#join .step02 ul li:nth-child(2) {
  flex-basis: 70%;
  display: flex;
  flex-direction: colum;
  flex-wrap: wrap;
  align-content: none;
  justify-content: flex-start;
  align-items: center;
  gap: 5%;
}
#join .step02 ul li:nth-child(2) input {
  flex-basis: 75%;
}
#join .step02 ul li:nth-child(2) .btn {
  flex-basis: 20%;
  height: 100%;
  margin-bottom: 0 !important;
  font-family: var(--ko);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1023px) {
  #join .step02 ul li:nth-child(2) .btn {
    font-family: var(--ko);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 767px) {
  #join .step02 ul li:nth-child(2) .btn {
    font-family: var(--ko);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
#join .step02 ul li:nth-child(2) label span {
  font-family: var(--ko);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1023px) {
  #join .step02 ul li:nth-child(2) label span {
    font-family: var(--ko);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 767px) {
  #join .step02 ul li:nth-child(2) label span {
    font-family: var(--ko);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
#join .step02 ul li:nth-child(2) .email-notice {
  font-family: var(--ko);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.48px;
  color: red;
  padding-top: 10px;
}
@media screen and (max-width: 1023px) {
  #join .step02 ul li:nth-child(2) .email-notice {
    font-family: var(--ko);
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.4px;
  }
}
@media screen and (max-width: 767px) {
  #join .step02 ul li:nth-child(2) .email-notice {
    font-family: var(--ko);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.4px;
  }
}
@media screen and (max-width: 500px) {
  #join .step02 ul {
    gap: 0.25rem;
  }
  #join .step02 ul li:nth-child(1) {
    flex-basis: 100%;
    flex-grow: 1;
  }
  #join .step02 ul li:nth-child(2) {
    flex-basis: 100%;
  }
  #join .step02 ul li:nth-child(2) .email-notice {
    order: 1;
    padding-top: 0;
    padding-bottom: 5px;
  }
  #join .step02 ul li:nth-child(2) input {
    flex-basis: 100%;
    order: 2;
  }
  #join .step02 ul li:nth-child(2) .btn {
    flex-basis: 100%;
    order: 3;
  }
  #join .step02 ul li:nth-child(2) label {
    order: 4;
  }
}

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

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

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

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

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

#board {
  max-width: 1310px;
  width: 90%;
  margin: 0 auto;
  margin-bottom: 9.375rem;
  /*게시판공통*/
  /*검색&글쓰기*/
  /*토탈(공통)*/
  /*탭(공통)*/
  /*더보기버튼(공통)*/
  /*페이지버튼(공통)*/
}
#board .board {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: normal;
  justify-content: center;
  align-items: space-between;
  gap: 0;
  border-top: 2px solid var(--pri2);
}
#board .board li {
  cursor: pointer;
  transition: all 0.5s ease;
}
#board .board .list-title {
  font-family: var(--ko);
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1023px) {
  #board .board .list-title {
    font-family: var(--ko);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 767px) {
  #board .board .list-title {
    font-family: var(--ko);
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -0.56px;
  }
}
#board .board .list-thumb {
  display: flex;
  align-content: center;
  overflow: hidden;
}
#board .board .list-thumb img {
  width: 100%;
  transition: all 0.5s ease;
}
#board .board li:hover .list-thumb img {
  transform: scale(1.1);
  transition: all 0.5s ease;
}
#board .board .list-name, #board .board .list-data {
  color: var(--black-a45);
}
#board .control {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: normal;
  justify-content: space-between;
  align-items: normal;
  gap: 0;
  margin-bottom: 0.625rem;
}
#board .control .search {
  background-color: var(--gray1);
  padding: 1em;
  border-radius: 20em;
  position: relative;
}
#board .control .search input {
  border: 0;
  background-color: rgba(0, 0, 0, 0);
  padding-left: 20px;
  width: 300px;
  font-family: var(--ko);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1023px) {
  #board .control .search input {
    font-family: var(--ko);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 767px) {
  #board .control .search input {
    font-family: var(--ko);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
#board .control .search .search-button {
  border: 0;
  padding: 0.5em 1em;
  position: absolute;
  top: 50%;
  right: 0%;
  transform: translate(-50%, -50%);
}
#board .control .search .search-button i {
  color: var(--gray8);
}
#board .control .board-write-btn {
  padding: 0.5em 1em;
  color: var(--black-a50);
  font-family: var(--ko);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
#board .control .board-write-btn i {
  margin-right: 1em;
}
@media screen and (max-width: 1023px) {
  #board .control .board-write-btn {
    font-family: var(--ko);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 767px) {
  #board .control .board-write-btn {
    font-family: var(--ko);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
#board .control .board-write-btn:hover {
  color: black;
  transition: all 0.5s ease;
}
@media screen and (max-width: 767px) {
  #board .control {
    flex-direction: column;
    gap: 20px;
  }
  #board .control .board-write-btn {
    margin-left: auto;
  }
}
#board .total {
  flex-basis: 100%;
  padding: 1em 0;
  font-family: var(--ko);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1023px) {
  #board .total {
    font-family: var(--ko);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 767px) {
  #board .total {
    font-family: var(--ko);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
#board .tab {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 6.25rem;
}
#board .tab li {
  padding: 2em 5em;
  flex-basis: 25%;
  cursor: pointer;
  text-align: center;
  border-right: 1px solid var(--gray5);
  border-bottom: 1px solid var(--gray5);
  border-top: 1px solid var(--gray5);
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1200px) {
  #board .tab li {
    padding: 1em;
    border-right: 0;
    border-top: 0;
  }
}
#board .tab li:nth-child(1) {
  border-left: 1px solid var(--gray5);
}
@media screen and (max-width: 1200px) {
  #board .tab li:nth-child(1) {
    border-left: 0px;
  }
}
#board .tab li.on {
  border: 2px solid var(--pri1);
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 1200px) {
  #board .tab li.on {
    box-shadow: none;
    border-right: 0;
    border-left: 0;
    border-top: 0;
    border-bottom: 2px solid var(--pri1);
    color: var(--pri1);
  }
}
#board .button-wrap {
  display: flex;
  gap: 50px;
  justify-content: center;
}
#board .button-wrap .board-button {
  border: 1px solid var(--black-a50);
  color: var(--black-a65);
  cursor: pointer;
  display: block;
  border-radius: 2em;
  font-family: var(--ko);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
  margin-top: 3.125rem;
  width: 300px;
  height: 50px;
}
@media screen and (max-width: 1023px) {
  #board .button-wrap .board-button {
    font-family: var(--ko);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 767px) {
  #board .button-wrap .board-button {
    font-family: var(--ko);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
#board .button-wrap .board-button:hover {
  background-color: var(--pri1);
  border: 1px solid var(--pri1);
  color: white;
  transition: all 0.5s ease;
}
#board .pagination {
  margin-top: 3.125rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: normal;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 900px) {
  #board .pagination {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: normal;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
}
#board .pagination .num_list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: normal;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 900px) {
  #board .pagination .num_list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: normal;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
  }
}
#board .pagination .num_list li a {
  text-align: center;
  font-family: var(--ko);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  color: var(--gray9);
  border-radius: 0.3rem;
}
@media screen and (max-width: 1023px) {
  #board .pagination .num_list li a {
    font-family: var(--ko);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 767px) {
  #board .pagination .num_list li a {
    font-family: var(--ko);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
#board .pagination .num_list li a.on {
  color: white;
  background-color: var(--pri1);
}
#board .pagination .num_list li a.on:hover {
  color: white;
  transition: all 0.5s ease;
}
#board .pagination .num_list li a:hover {
  color: var(--pri1);
  font-weight: bold;
  transition: all 0.5s ease;
}
#board .pagination i {
  color: var(--gray6);
  transition: all 0.5s ease;
}
#board .pagination i:hover {
  color: var(--pri1);
  transition: all 0.5s ease;
}

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

/*view*/
.view .list-info {
  text-align: center;
  margin-bottom: 3.125rem;
}
.view .list-info .list-title {
  font-family: var(--ko);
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -1.12px;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 1023px) {
  .view .list-info .list-title {
    font-family: var(--ko);
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -1.04px;
  }
}
@media screen and (max-width: 767px) {
  .view .list-info .list-title {
    font-family: var(--ko);
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -1.04px;
  }
}
.view .list-info .list-title span {
  padding-right: 1.25rem;
  font-family: var(--en);
  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(--en);
  }
}
@media screen and (max-width: 767px) {
  .view .list-info .list-title span {
    font-family: var(--en);
  }
}
@media screen and (max-width: 1023px) {
  .view .list-info .list-title span {
    font-family: var(--en);
    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(--en);
  }
}
@media screen and (max-width: 1023px) and (max-width: 767px) {
  .view .list-info .list-title span {
    font-family: var(--en);
  }
}
@media screen and (max-width: 767px) {
  .view .list-info .list-title span {
    font-family: var(--en);
    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(--en);
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .view .list-info .list-title span {
    font-family: var(--en);
  }
}
.view .content {
  position: relative;
  font-family: var(--ko);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
  padding-bottom: 3.125rem;
  padding-top: 3.125rem;
  border-top: 1px solid var(--pri1);
}
@media screen and (max-width: 1023px) {
  .view .content {
    font-family: var(--ko);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 767px) {
  .view .content {
    font-family: var(--ko);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
.view .content .content-button {
  position: absolute;
  top: 10px;
  right: 10px;
}
.view .content .content-button button {
  border: 1px solid var(--black-a25);
  color: var(--black-a50);
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  font-family: var(--ko);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
  border-radius: 999px;
}
@media screen and (max-width: 1023px) {
  .view .content .content-button button {
    font-family: var(--ko);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 767px) {
  .view .content .content-button button {
    font-family: var(--ko);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
.view .content .content-button button:hover {
  color: var(--pri1);
  border: 1px solid var(--pri1);
  transition: all 0.5s ease;
}
.view .answer {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  background-color: var(--gray1);
  padding: 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: center;
  justify-content: normal;
  align-items: center;
  gap: 20px;
}
.view .answer p {
  font-family: var(--ko);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1023px) {
  .view .answer p {
    font-family: var(--ko);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 767px) {
  .view .answer p {
    font-family: var(--ko);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
.view .answer .list-category {
  margin-right: auto;
  margin-left: auto;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
  border-radius: 999px;
  border: 1px solid var(--pri1);
  color: var(--pri1);
}
.view .answer .list-category.end {
  background-color: var(--pri1);
  color: var(--white);
}
.view .add-file {
  font-family: var(--ko);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  border-top: 1px solid var(--black-a15);
  border-bottom: 1px solid var(--black-a15);
}
@media screen and (max-width: 1023px) {
  .view .add-file {
    font-family: var(--ko);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 767px) {
  .view .add-file {
    font-family: var(--ko);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}

/*write*/
.write {
  /*체크박스 공통*/
}
.write label {
  cursor: pointer;
  font-family: var(--ko);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1023px) {
  .write label {
    font-family: var(--ko);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 767px) {
  .write label {
    font-family: var(--ko);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
.write label input[type=checkbox] {
  position: absolute;
  left: -9999px;
}
.write label input[type=checkbox]:checked + span {
  color: var(--pri1);
}
.write ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: normal;
  justify-content: flex-start;
  align-items: baseline;
  gap: 30px;
  margin-bottom: 1.875rem;
}
.write ul li:nth-child(1) {
  flex-basis: 10%;
  font-family: var(--ko);
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1023px) {
  .write ul li:nth-child(1) {
    font-family: var(--ko);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 767px) {
  .write ul li:nth-child(1) {
    font-family: var(--ko);
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -0.56px;
  }
}
.write ul li:nth-child(1):after {
  content: "*";
  color: var(--pri1);
  margin-bottom: 5px;
}
.write ul li:nth-child(2) {
  flex-basis: calc(90% - 30px);
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: normal;
  justify-content: flex-start;
  align-items: baseline;
  gap: 0px;
}
.write ul li:nth-child(2) input, .write ul li:nth-child(2) textarea {
  padding: 1.25rem;
  border: 0;
  background-color: var(--gray1);
  font-family: var(--ko);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
  max-width: 100%;
}
@media screen and (max-width: 1023px) {
  .write ul li:nth-child(2) input, .write ul li:nth-child(2) textarea {
    font-family: var(--ko);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 767px) {
  .write ul li:nth-child(2) input, .write ul li:nth-child(2) textarea {
    font-family: var(--ko);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
.write ul li:nth-child(2) textarea {
  width: 100% !important;
  height: 300px !important;
}
.write ul li:nth-child(2) label {
  width: 100%;
}
.write ul li:nth-child(2) label span {
  font-family: var(--ko);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1023px) {
  .write ul li:nth-child(2) label span {
    font-family: var(--ko);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 767px) {
  .write ul li:nth-child(2) label span {
    font-family: var(--ko);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
.write ul li:nth-child(2) .input-s {
  width: 20%;
}
.write ul li:nth-child(2) .input-m {
  width: 50%;
}
.write ul li:nth-child(2) .input-l {
  width: 100%;
}
.write ul li:nth-child(2) button {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  border-radius: 999px;
  border: 1px solid var(--gray10);
  color: var(--gray10);
}
.write ul li:nth-child(2).release {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.write ul li:nth-child(2).release label {
  width: auto;
}
@media screen and (max-width: 767px) {
  .write ul {
    gap: 10px;
  }
  .write ul li:nth-child(1), .write ul li:nth-child(2) {
    flex-basis: 100%;
  }
  .write ul li:nth-child(2) .input-s,
  .write ul li:nth-child(2) .input-m,
  .write ul li:nth-child(2) .input-l {
    width: 100%;
  }
}
.write .personal-infor {
  margin-top: 6.25rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: normal;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}
.write .personal-infor h2 {
  font-family: var(--ko);
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1023px) {
  .write .personal-infor h2 {
    font-family: var(--ko);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 767px) {
  .write .personal-infor h2 {
    font-family: var(--ko);
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -0.56px;
  }
}
.write .personal-infor p {
  font-family: var(--ko);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
  padding: 1.25rem;
  background-color: var(--gray1);
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .write .personal-infor p {
    font-family: var(--ko);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 767px) {
  .write .personal-infor p {
    font-family: var(--ko);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
.write .personal-infor label span {
  font-family: var(--ko);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1023px) {
  .write .personal-infor label span {
    font-family: var(--ko);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 767px) {
  .write .personal-infor label span {
    font-family: var(--ko);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}

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

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

/*event게시판*/
.event {
  justify-content: space-between !important;
}
.event li {
  flex-basis: calc(50% - 20px);
  margin-bottom: 2.5rem;
}
.event li .list-thumb {
  height: 300px;
  justify-content: center;
}
.event li .list-title {
  text-align: center;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
.event li .list-title span {
  padding-right: 1.25rem;
  font-family: var(--en);
  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(--en);
  }
}
@media screen and (max-width: 767px) {
  .event li .list-title span {
    font-family: var(--en);
  }
}
@media screen and (max-width: 1023px) {
  .event li .list-title span {
    font-family: var(--en);
    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(--en);
  }
}
@media screen and (max-width: 1023px) and (max-width: 767px) {
  .event li .list-title span {
    font-family: var(--en);
  }
}
@media screen and (max-width: 767px) {
  .event li .list-title span {
    font-family: var(--en);
    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(--en);
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .event li .list-title span {
    font-family: var(--en);
  }
}
@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 */