@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --main-color: #b8d200;
  --balck-color: #181818;
}

html.has-scroll-smooth {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}

body {
  font-family: "SUIT", sans-serif;
  font-size: 16px;
  font-weight: 400;
  background-color: #181818;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

input,
select,
button,
textarea {
  font-family: "SUIT", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}

input::placeholder,
textarea::placeholder {
  color: #4e4e4e;
}

.inner {
  width: 1580px;
  margin: 0 auto;
}

.disable-hover {
  pointer-events: none;
}

.mb_img {
  display: none;
}

.mb_br {
  display: none;
}

/* ----- header ----- */
#header {
  position: fixed;
  top: 0;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.01);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: 0.3s;
  z-index: 9;
}

#header.unScroll {
  top: 70px;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

#header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
}

#header.sub .inner {
  border-bottom: 2px solid #fff;
  transition: 0.3s;
}

#header.on .inner {
  border-bottom: none;
}

#header.unScroll .inner {
  padding: 0 0 32px;
}

#header .logo_wrap a {
  width: 82px;
  height: 44px;
}

#header .logo_wrap a:hover {
  animation: logoAni 0.75s linear;
}

@keyframes logoAni {
  10% {
    transform: translateX(3px) rotate(2deg);
  }
  20% {
    transform: translateX(-3px) rotate(-2deg);
  }
  30% {
    transform: translateX(3px) rotate(2deg);
  }
  40% {
    transform: translateX(-3px) rotate(-2deg);
  }
  50% {
    transform: translateX(2px) rotate(1deg);
  }
  60% {
    transform: translateX(-2px) rotate(-1deg);
  }
  70% {
    transform: translateX(2px) rotate(1deg);
  }
  80% {
    transform: translateX(-2px) rotate(-1deg);
  }
  90% {
    transform: translateX(1px) rotate(0);
  }
  100% {
    transform: translateX(-1px) rotate(0);
  }
}

#header .menu_button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  width: 60px;
  height: 60px;
}

#header .menu_button span {
  display: inline-block;
  height: 4px;
  background-color: #fff;
  transition: 0.3s;
}

#header .menu_button span:first-child {
  width: 59px;
  margin-bottom: 16px;
}

#header .menu_button span:last-child {
  width: 36px;
}

#header .menu_button:not(.on):hover span:last-child {
  width: 59px;
}

#header .menu_button.on span {
  width: 59px;
  height: 4px;
  margin-bottom: 0px;
}

#header .menu_button.on span:first-child {
  transform: translateY(4px) rotate(135deg);
}

#header .menu_button.on span:last-child {
  transform: rotate(-135deg);
}

/* ----- nav ----- */
#menu {
  position: fixed;
  top: -100%;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: url("../asset/img/img_menu_bg.png") no-repeat center / cover
    #181818;
  opacity: 0;
  overflow: hidden;
  transition: 0.5s;
  z-index: 8;
}

#menu.on {
  top: 0;
  opacity: 1;
}

#menu .menu_list_wrap {
  width: 100%;
  padding: 0 350px;
}

#menu .menu_list_wrap .menu_list {
  display: flex;
  align-items: center;
  font-family: "Raleway", sans-serif;
  font-size: 82px;
  font-weight: 600;
}

#menu .menu_list_wrap .menu_list.not {
  color: #5c5c5c;
}

#menu .menu_list_wrap .menu_list:not(:last-child) {
  margin-bottom: 30px;
}

#menu .menu_list_wrap .menu_list .depth1 {
  transition: 0.3s;
}

#menu .menu_list_wrap .menu_list.on .depth1,
#menu .sub_menu_list_wrap .sub_menu_list:hover {
  color: var(--main-color);
  transform: skewX(-7deg);
}

#menu .menu_list_wrap .menu_list .depth1 {
  width: 450px;
}

#menu .sub_menu {
  display: none;
}

#menu .sub_menu_list_wrap {
  display: flex;
  gap: 82px;
}

#menu .sub_menu_list_wrap .sub_menu_list {
  font-size: 30px;
  font-weight: 500;
  color: #5c5c5c;
  text-transform: capitalize;
  transition: 0.3s;
}

#menu .menu_list.on .sub_menu_list {
  animation: menuTextAni 1s ease;
}

@keyframes menuTextAni {
  0% {
    color: #5c5c5c;
  }
  50% {
    color: #b8d200;
    text-shadow: 0 0 30px #b8d200;
  }
  100% {
    color: #5c5c5c;
  }
}

#menu .sub_menu_list_wrap .sub_menu_list .depth2 {
  width: max-content;
}

#menu .text_circle_container {
  position: absolute;
  right: -168px;
  bottom: -195px;
}

#menu .text_circle_wrap {
  width: 630px;
  height: 630px;
  animation: circleAni 12s linear infinite;
}

#menu .center_circle_wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 231px;
  height: 124px;
}

@keyframes circleAni {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* ----- top_button ----- */
.top_button {
  position: fixed;
  right: 52px;
  bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  font-family: "Raleway", sans-serif;
  font-size: 20px;
  font-weight: 800;
  border: 1px solid #fff;
  border-radius: 50%;
  transition: 0.3s;
  animation: topButtonAni 3s infinite;
  animation-timing-function: cubic-bezier(0.65, 0, 0.35, 1);
  z-index: 7;
}

@keyframes topButtonAni {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}

.top_button:hover {
  background-color: #181818;
}

/* ----- footer ----- */
#footer {
  padding: 55px 0 70px;
  background-color: #333333;
}

#footer .inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

#footer .logo_wrap {
  width: 160px;
  height: 54px;
}

#footer .center_container .text {
  margin-bottom: 10px;
  font-family: "Raleway", sans-serif;
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
}

#footer .center_container .copyright {
  font-size: 16px;
  font-weight: 500;
  color: #c6c6c6;
}

#footer .company_info_list {
  font-size: 14px;
  font-weight: 500;
}

#footer .company_info_list:not(:last-child) {
  margin-bottom: 10px;
}

/* ----- side_bar ----- */
.side_bar_container {
  position: fixed;
  bottom: 132px;
  left: 0;
  z-index: 9;
}

.side_bar_container .side_bar_list a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 153px;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #181818;
}

.side_bar_container .side_bar_list.kakao a {
  margin-bottom: 10px;
  background-color: #ffdc24;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.side_bar_container .side_bar_list.contact a {
  background-color: #fff;
}

.side_bar_container .side_bar_list .icon_wrap {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-bottom: 10px;
}

.side_bar_container .side_bar_list .side_bar_text {
  display: inline-block;
  width: fit-content;
  writing-mode: vertical-rl;
}

/* ----- modal ----- */
.modal:not(.error) {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  z-index: 10;
}

.modal .modal_inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #efefef;
  border-radius: 10px;
}

.modal .overlay {
  width: 100%;
  height: 100%;
  background: rgba(24, 24, 24, 0.8);
}

/* 문의 완료 모달 */
.modal.contact_complete .modal_inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 583px;
  height: 321px;
  color: #000;
}

.modal.contact_complete .main_title {
  font-size: 32px;
  font-weight: 700;
}

.modal.contact_complete .sub_title {
  margin: 15px 0 48px;
  font-size: 20px;
  font-weight: 500;
}

.modal.contact_complete .close_button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 278px;
  height: 53px;
  font-size: 20px;
  font-weight: 600;
  color: #181818;
  letter-spacing: 0.05em;
  background: var(--main-color);
  border-radius: 50px;
}

/* 개인정보처리방침 모달 */
.modal.privacy .modal_inner {
  display: flex;
  flex-direction: column;
  width: 966px;
  height: 903px;
  padding: 75px 0 50px 70px;
  max-height: 90vh;
  max-height: 90dvh;
  color: #181818;
}

.modal.privacy .main_title {
  margin: 0 70px 40px 0;
  padding-bottom: 20px;
  font-size: 32px;
  font-weight: 700;
  border-bottom: 1px solid #181818;
}

.modal.privacy .modal_wrap {
  padding-right: 35px;
  overflow: auto;
}

.modal.privacy .modal_wrap::-webkit-scrollbar {
  width: 35px;
}

.modal.privacy .modal_wrap::-webkit-scrollbar-track {
  background: transparent;
}

.modal.privacy .modal_wrap::-webkit-scrollbar-thumb {
  background: var(--main-color);
  border-radius: 999px;
  background-clip: padding-box;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-right: 15px solid transparent;
  border-left: 15px solid transparent;
}

.modal.privacy .sub_title {
  margin-bottom: 50px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.44;
}

.modal.privacy ul {
  padding-bottom: 25px;
  font-size: 15px;
  color: #181818;
  line-height: 1.6;
}

.modal.privacy li:not(:last-child) {
  margin-bottom: 50px;
}

.modal.privacy li h3 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 700;
}

.modal.privacy .close_button {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
}

/* 에러 모달 */
.modal.error {
  position: fixed;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  background-color: rgba(180, 20, 20, 0.2);
  border: 1px solid #b41414;
  border-radius: 50px;
  z-index: 9;
}

.modal.error .error_modal_inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 503px;
  height: 53px;
  font-size: 20px;
  font-weight: 500;
}

.modal.error .icon_wrap {
  width: 22px;
  height: 22px;
  margin-right: 10px;
}

/* ----- tabelt ----- */
@media (max-width: 1600px) {
  body {
    font-size: calc(100vw * (16 / 1580));
  }

  input,
  select,
  button,
  textarea {
    font-size: calc(100vw * (16 / 1580));
  }

  .inner {
    width: 100%;
    padding: 0 calc(100vw * (40 / 1580));
  }

  /* ----- header ----- */
  #header {
    backdrop-filter: blur(calc(100vw * (5 / 1580)));
    -webkit-backdrop-filter: blur(calc(100vw * (5 / 1580)));
  }

  #header.unScroll {
    top: calc(100vw * (70 / 1580));
  }

  #header .inner {
    padding: calc(100vw * (28 / 1580)) calc(100vw * (40 / 1580));
  }

  #header.unScroll .inner {
    padding: 0 calc(100vw * (40 / 1580)) calc(100vw * (32 / 1580));
  }

  #header .logo_wrap a {
    width: calc(100vw * (82 / 1580));
    height: calc(100vw * (44 / 1580));
  }

  #header .menu_button {
    width: calc(100vw * (60 / 1580));
    height: calc(100vw * (60 / 1580));
  }

  #header .menu_button span {
    height: calc(100vw * (4 / 1580));
  }

  #header .menu_button span:first-child {
    width: calc(100vw * (59 / 1580));
    margin-bottom: calc(100vw * (16 / 1580));
  }

  #header .menu_button span:last-child {
    width: calc(100vw * (36 / 1580));
  }

  #header .menu_button:not(.on):hover span:last-child {
    width: calc(100vw * (59 / 1580));
  }

  #header .menu_button.on span {
    width: calc(100vw * (59 / 1580));
    height: calc(100vw * (4 / 1580));
    margin-bottom: 0;
  }

  #header .menu_button.on span:first-child {
    transform: translateY(calc(100vw * (4 / 1580))) rotate(135deg);
  }

  /* ----- nav ----- */
  #menu .menu_list_wrap {
    padding: 0 calc(100vw * (190 / 1580));
  }

  #menu .menu_list_wrap .menu_list {
    font-size: calc(100vw * (82 / 1580));
  }

  #menu .menu_list_wrap .menu_list:not(:last-child) {
    margin-bottom: calc(100vw * (30 / 1580));
  }

  #menu .menu_list_wrap .menu_list .depth1 {
    width: calc(100vw * (450 / 1580));
  }

  #menu .sub_menu_list_wrap {
    gap: calc(100vw * (82 / 1580));
  }

  #menu .sub_menu_list_wrap .sub_menu_list {
    font-size: calc(100vw * (30 / 1580));
  }

  #menu .text_circle_container {
    right: calc(100vw * (-168 / 1580));
    bottom: calc(100vw * (-195 / 1580));
  }

  #menu .text_circle_wrap {
    width: calc(100vw * (630 / 1580));
    height: calc(100vw * (630 / 1580));
  }

  #menu .center_circle_wrap {
    width: calc(100vw * (231 / 1580));
    height: calc(100vw * (124 / 1580));
  }

  /* ----- top_button ----- */
  .top_button {
    right: calc(100vw * (52 / 1580));
    bottom: calc(100vw * (40 / 1580));
    width: calc(100vw * (64 / 1580));
    height: calc(100vw * (64 / 1580));
    font-size: calc(100vw * (20 / 1580));
  }

  @keyframes topButtonAni {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(calc(100vw * (10 / 1580)));
    }
    100% {
      transform: translateY(0);
    }
  }

  /* ----- footer ----- */
  #footer {
    padding: calc(100vw * (55 / 1580)) 0 calc(100vw * (70 / 1580));
  }

  #footer .logo_wrap {
    width: calc(100vw * (160 / 1580));
    height: calc(100vw * (54 / 1580));
  }

  #footer .center_container .text {
    margin-bottom: calc(100vw * (10 / 1580));
    font-size: calc(100vw * (32 / 1580));
  }

  #footer .center_container .copyright {
    font-size: calc(100vw * (16 / 1580));
  }

  #footer .company_info_list {
    font-size: calc(100vw * (14 / 1580));
  }

  #footer .company_info_list:not(:last-child) {
    margin-bottom: calc(100vw * (10 / 1580));
  }

  /* ----- side_bar ----- */
  .side_bar_container {
    bottom: calc(100vw * (132 / 1580));
  }

  .side_bar_container .side_bar_list a {
    width: calc(100vw * (50 / 1580));
    height: calc(100vw * (153 / 1580));
    font-size: calc(100vw * (16 / 1580));
  }

  .side_bar_container .side_bar_list.kakao a {
    margin-bottom: calc(100vw * (10 / 1580));
  }

  .side_bar_container .side_bar_list .icon_wrap {
    width: calc(100vw * (20 / 1580));
    height: calc(100vw * (20 / 1580));
    margin-bottom: calc(100vw * (10 / 1580));
  }

  /* ----- modal ----- */
  .modal .modal_inner {
    border-radius: calc(100vw * (10 / 1580));
  }

  /* 문의 완료 모달 */
  .modal.contact_complete .modal_inner {
    width: calc(100vw * (583 / 1580));
    height: calc(100vw * (321 / 1580));
  }

  .modal.contact_complete .main_title {
    font-size: calc(100vw * (32 / 1580));
  }

  .modal.contact_complete .sub_title {
    margin: calc(100vw * (15 / 1580)) 0 calc(100vw * (48 / 1580));
    font-size: calc(100vw * (20 / 1580));
  }

  .modal.contact_complete .close_button {
    width: calc(100vw * (278 / 1580));
    height: calc(100vw * (53 / 1580));
    font-size: calc(100vw * (20 / 1580));
    border-radius: calc(100vw * (50 / 1580));
  }

  /* 개인정보처리방침 모달 */
  .modal.privacy .modal_inner {
    width: calc(100vw * (966 / 1580));
    height: calc(100vw * (903 / 1580));
    padding: calc(100vw * (75 / 1580)) 0 calc(100vw * (50 / 1580))
      calc(100vw * (70 / 1580));
  }

  .modal.privacy .main_title {
    margin: 0 calc(100vw * (70 / 1580)) calc(100vw * (40 / 1580)) 0;
    padding-bottom: calc(100vw * (20 / 1580));
    font-size: calc(100vw * (32 / 1580));
  }

  .modal.privacy .modal_wrap {
    padding-right: calc(100vw * (35 / 1580));
  }

  .modal.privacy .modal_wrap::-webkit-scrollbar {
    width: calc(100vw * (35 / 1580));
  }

  .modal.privacy .modal_wrap::-webkit-scrollbar-thumb {
    border-top: calc(100vw * (15 / 1580)) solid transparent;
    border-bottom: calc(100vw * (15 / 1580)) solid transparent;
    border-right: calc(100vw * (15 / 1580)) solid transparent;
    border-left: calc(100vw * (15 / 1580)) solid transparent;
  }

  .modal.privacy .sub_title {
    margin-bottom: calc(100vw * (50 / 1580));
    font-size: calc(100vw * (18 / 1580));
  }

  .modal.privacy ul {
    padding-bottom: calc(100vw * (25 / 1580));
    font-size: calc(100vw * (15 / 1580));
  }

  .modal.privacy li:not(:last-child) {
    margin-bottom: calc(100vw * (50 / 1580));
  }

  .modal.privacy li h3 {
    margin-bottom: calc(100vw * (15 / 1580));
    font-size: calc(100vw * (18 / 1580));
  }

  .modal.privacy .close_button {
    top: calc(100vw * (30 / 1580));
    right: calc(100vw * (30 / 1580));
    width: calc(100vw * (60 / 1580));
    height: calc(100vw * (60 / 1580));
  }

  /* 에러 모달 */
  .modal.error {
    bottom: calc(100vw * (70 / 1580));
    border-radius: calc(100vw * (50 / 1580));
  }

  .modal.error .error_modal_inner {
    width: calc(100vw * (503 / 1580));
    height: calc(100vw * (53 / 1580));
    font-size: calc(100vw * (20 / 1580));
  }

  .modal.error .icon_wrap {
    width: calc(100vw * (22 / 1580));
    height: calc(100vw * (22 / 1580));
    margin-right: calc(100vw * (10 / 1580));
  }
}

/* ----- mobile ----- */
@media (max-width: 767px) {
  body {
    font-size: calc(100vw * (16 / 370));
  }

  input,
  select,
  button,
  textarea {
    font-size: calc(100vw * (16 / 370));
  }

  .inner {
    padding: 0 calc(100vw * (25 / 370));
  }

  .pc_img {
    display: none;
  }

  .mb_img {
    display: block;
  }

  .pc_br {
    display: none;
  }

  .mb_br {
    display: block;
  }

  /* ----- header ----- */
  #header {
    backdrop-filter: blur(calc(100vw * (5 / 370)));
    -webkit-backdrop-filter: blur(calc(100vw * (5 / 370)));
  }

  #header.unScroll {
    top: calc(100vw * (20 / 370));
  }

  #header .inner {
    padding: calc(100vw * (10 / 370)) calc(100vw * (25 / 370));
  }

  #header.unScroll .inner {
    padding: 0 calc(100vw * (25 / 370)) calc(100vw * (20 / 370));
  }

  #header .logo_wrap a {
    width: calc(100vw * (34 / 370));
    height: calc(100vw * (18 / 370));
  }

  #header .menu_button {
    width: calc(100vw * (30 / 370));
    height: calc(100vw * (30 / 370));
  }

  #header .menu_button span {
    height: calc(100vw * (2 / 370));
  }

  #header .menu_button span:first-child {
    width: calc(100vw * (28 / 370));
    margin-bottom: calc(100vw * (5 / 370));
  }

  #header .menu_button span:last-child {
    width: calc(100vw * (17 / 370));
  }

  #header .menu_button:not(.on):hover span:last-child {
    width: calc(100vw * (17 / 370));
  }

  #header .menu_button.on span {
    width: calc(100vw * (28 / 370));
    height: calc(100vw * (2 / 370));
    margin-bottom: 0;
  }

  #header .menu_button.on span:first-child {
    transform: translateY(calc(100vw * (2 / 370))) rotate(135deg);
  }

  /* ----- nav ----- */
  #menu {
    background: url("../asset/img/img_menu_bg_mb.png") no-repeat center / cover
      #181818;
  }

  #menu .menu_list_wrap {
    padding: 0 calc(100vw * (55 / 370));
  }

  #menu .menu_list_wrap .menu_list {
    flex-direction: column;
    align-items: flex-start;
    font-size: calc(100vw * (36 / 370));
  }

  #menu .menu_list_wrap .menu_list:not(:last-child) {
    margin-bottom: calc(100vw * (24 / 370));
  }

  #menu .menu_list_wrap .menu_list.on .depth1,
  #menu .sub_menu_list_wrap .sub_menu_list:hover {
    transform: skewX(-10deg);
  }

  #menu .menu_list_wrap .menu_list .depth1 {
    width: auto;
  }

  #menu .sub_menu_list_wrap {
    flex-direction: column;
    gap: calc(100vw * (15 / 370));
    margin-top: calc(100vw * (18 / 370));
  }

  #menu .sub_menu_list_wrap .sub_menu_list {
    font-size: calc(100vw * (18 / 370));
    color: #fff;
  }

  #menu .menu_list.on .sub_menu_list {
    animation: none;
  }

  #menu .text_circle_container {
    right: calc(100vw * (-60 / 370));
    bottom: calc(100vw * (-57 / 370));
  }

  #menu .text_circle_wrap {
    width: calc(100vw * (200 / 370));
    height: calc(100vw * (200 / 370));
  }

  #menu .center_circle_wrap {
    width: calc(100vw * (73 / 370));
    height: calc(100vw * (39 / 370));
  }

  /* ----- top_button ----- */
  .top_button {
    right: calc(100vw * (25 / 370));
    bottom: calc(100vw * (20 / 370));
    width: calc(100vw * (40 / 370));
    height: calc(100vw * (40 / 370));
    font-size: calc(100vw * (12 / 370));
  }

  @keyframes topButtonAni {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(calc(100vw * (10 / 370)));
    }
    100% {
      transform: translateY(0);
    }
  }

  /* ----- footer ----- */
  #footer {
    padding: calc(100vw * (40 / 370)) 0;
  }

  #footer .inner {
    flex-direction: column;
    align-items: center;
    padding: 0 calc(100vw * (43 / 370));
  }

  #footer .logo_wrap {
    width: calc(100vw * (83 / 370));
    height: calc(100vw * (28 / 370));
    margin-bottom: calc(100vw * (20 / 370));
  }

  #footer .center_container {
    margin-bottom: calc(100vw * (40 / 370));
  }

  #footer .center_container .text {
    margin-bottom: calc(100vw * (5 / 370));
    font-size: calc(100vw * (18 / 370));
    text-align: center;
  }

  #footer .center_container .copyright {
    font-size: calc(100vw * (10 / 370));
    text-align: center;
  }

  #footer .company_info_list {
    font-size: calc(100vw * (10 / 370));
    text-align: center;
  }

  #footer .company_info_list:not(:last-child) {
    margin-bottom: calc(100vw * (5 / 370));
  }

  /* ----- side_bar ----- */
  .side_bar_container {
    bottom: calc(100vw * (100 / 370));
  }

  .side_bar_container .side_bar_list a {
    width: calc(100vw * (36 / 370));
    height: calc(100vw * (30 / 370));
  }

  .side_bar_container .side_bar_list.kakao a {
    margin-bottom: calc(100vw * (6 / 370));
  }

  .side_bar_container .side_bar_list .icon_wrap {
    width: calc(100vw * (16 / 370));
    height: calc(100vw * (16 / 370));
    margin-bottom: 0;
  }

  .side_bar_container .side_bar_list .side_bar_text {
    display: none;
  }

  /* ----- modal ----- */
  .modal .modal_inner {
    border-radius: calc(100vw * (10 / 370));
  }

  /* 문의 완료 모달 */
  .modal.contact_complete .modal_inner {
    width: calc(100vw * (320 / 370));
    height: calc(100vw * (215 / 370));
  }

  .modal.contact_complete .main_title {
    font-size: calc(100vw * (20 / 370));
  }

  .modal.contact_complete .sub_title {
    margin: calc(100vw * (15 / 370)) 0 calc(100vw * (48 / 370));
    font-size: calc(100vw * (14 / 370));
  }

  .modal.contact_complete .close_button {
    width: calc(100vw * (180 / 370));
    height: calc(100vw * (35 / 370));
    font-size: calc(100vw * (15 / 370));
    border-radius: calc(100vw * (50 / 370));
  }

  /* 개인정보처리방침 모달 */
  .modal.privacy .modal_inner {
    width: 100%;
    height: 100%;
    max-height: none;
    padding: calc(100vw * (50 / 370)) 0 0 calc(100vw * (25 / 370));
    border-radius: 0;
  }

  .modal.privacy .main_title {
    margin: 0 calc(100vw * (25 / 370)) calc(100vw * (30 / 370)) 0;
    padding-bottom: calc(100vw * (15 / 370));
    font-size: calc(100vw * (20 / 370));
  }

  .modal.privacy .modal_wrap {
    padding-right: calc(100vw * (25 / 370));
  }

  .modal.privacy .modal_wrap::-webkit-scrollbar {
    width: calc(100vw * (25 / 370));
  }

  .modal.privacy .modal_wrap::-webkit-scrollbar-thumb {
    border-top: calc(100vw * (10 / 370)) solid transparent;
    border-bottom: calc(100vw * (10 / 370)) solid transparent;
    border-right: calc(100vw * (10 / 370)) solid transparent;
    border-left: calc(100vw * (10 / 370)) solid transparent;
  }

  .modal.privacy .sub_title {
    margin-bottom: calc(100vw * (34 / 370));
    font-size: calc(100vw * (14 / 370));
  }

  .modal.privacy ul {
    padding-bottom: calc(100vw * (50 / 370));
    font-size: calc(100vw * (13 / 370));
  }

  .modal.privacy li:not(:last-child) {
    margin-bottom: calc(100vw * (30 / 370));
  }

  .modal.privacy li h3 {
    margin-bottom: calc(100vw * (15 / 370));
    font-size: calc(100vw * (14 / 370));
  }

  .modal.privacy .close_button {
    top: calc(100vw * (20 / 370));
    right: calc(100vw * (25 / 370));
    width: calc(100vw * (30 / 370));
    height: calc(100vw * (30 / 370));
  }

  /* 에러 모달 */
  .modal.error {
    bottom: calc(100vw * (70 / 370));
    border-radius: calc(100vw * (50 / 370));
  }

  .modal.error .error_modal_inner {
    width: calc(100vw * (320 / 370));
    height: calc(100vw * (40 / 370));
    font-size: calc(100vw * (14 / 370));
  }

  .modal.error .icon_wrap {
    width: calc(100vw * (16 / 370));
    height: calc(100vw * (16 / 370));
    margin-right: calc(100vw * (5 / 370));
  }
}
