@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "Escoredream";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-1Thin.woff")
    format("woff");
  font-weight: 100;
  font-display: swap;
}
@font-face {
  font-family: "Escoredream";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-2ExtraLight.woff")
    format("woff");
  font-weight: 200;
  font-display: swap;
}
@font-face {
  font-family: "Escoredream";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-3Light.woff")
    format("woff");
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "Escoredream";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-4Regular.woff")
    format("woff");
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: "Escoredream";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-5Medium.woff")
    format("woff");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Escoredream";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-6Bold.woff")
    format("woff");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Escoredream";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-7ExtraBold.woff")
    format("woff");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Escoredream";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-8Heavy.woff")
    format("woff");
  font-weight: 800;
  font-display: swap;
}
@font-face {
  font-family: "Escoredream";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-9Black.woff")
    format("woff");
  font-weight: 900;
  font-display: swap;
}
@import url("https://fonts.googleapis.com/css2?family=Poppins: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");
html {
  overflow-x: hidden;
  color: #1a1a1a;
  font-family: "Escoredream", -apple-system, BlinkMacSystemFont, system-ui,
    Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR",
    "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
    sans-serif;
  font-size: 62.5% !important;
  letter-spacing: -0.02em;
  word-break: keep-all;
  word-wrap: break-word;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  -webkit-tap-highlight-color: transparent !important;
  animation: entry 0.3s ease forwards;
  opacity: 0;
}

html::-webkit-scrollbar {
  display: none;
}

html {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

body {
  font-size: 1.6rem;
}

:lang(en) {
  font-family: "Outfit", sans-serif;
}

a {
  color: inherit;
  outline: none;
  text-decoration: none;
}

ol,
ul {
  list-style: none;
}

b,
strong {
  font-weight: 700;
}

img {
  max-width: 100%;
}

button {
  font-family: inherit;
  border: none;
  outline: none;
  cursor: pointer;
  color: inherit;
  -webkit-appearance: none;
  background: none;
}

select {
  outline: none;
  border-radius: 5px;
  border: 1px solid #e6e6e6;
  font-size: 1.8rem;
  padding: 0 12px;
  background: #fff url(../img/bbs/ico_select.svg) no-repeat right 10px center;
  background-size: 24px;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}
select:invalid {
  color: #cccccc;
}

input,
textarea {
  font-family: inherit;
  outline: none;
  border: 1px solid transparent;
}

:focus {
  outline: none;
}

::placeholder {
  color: #cccccc;
}

em,
i {
  font-style: normal;
}

@-webkit-keyframes entry {
  to {
    opacity: 1;
  }
}
@keyframes entry {
  to {
    opacity: 1;
  }
}
/* Hidden */
.hidden {
  overflow: hidden;
}

/* Blind */
.blind {
  overflow: hidden;
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
}

/* Break Point */
.lg {
  display: block;
}

.sm {
  display: block;
}

.xs {
  display: block;
}

.mx-sm {
  display: none;
}

.mx-xs {
  display: none;
}

@media screen and (max-width: 1200px) {
  .lg {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .md {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .sm {
    display: none;
  }
  .mx-sm {
    display: block;
  }
}
@media screen and (max-width: 576px) {
  .xs {
    display: none;
  }
  .mx-xs {
    display: block;
  }
}
/* Block */
.d-block {
  display: block;
}

.d-inline-block {
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .d-sm-block {
    display: block;
  }
}
/* Flex */
.d-flex {
  display: flex;
}

/* Flex Wrap */
@media screen and (max-width: 1024px) {
  .flex-md-wrap {
    flex-wrap: wrap;
  }
}
/* Justify Content */
.justify-between {
  justify-content: space-between;
}

/* Align Item */
.align-items {
  align-items: center;
}

/* Position */
.ps-relative {
  position: relative;
}

/* Background */
.bg-b3b3b3 {
  background-color: #e6ebf0;
}

.bg-f2f5f7 {
  background-color: #f2f5f7;
}

/* Wrap */
.wrap--sub {
  padding-top: 90px;
}
/* Container */
.container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.container-w1760 {
  max-width: 176 0px;
}
@media screen and (max-width: 1200px) {
  .wrap {
    /* padding-top: 60px; */
  }
}

@media screen and (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
}

/* Header Theme */
/* #header[data-header-theme="white"] {
  background-color: #fff;
} */
header {
  position: relative;
  z-index: 100;
}
header .logo {
  position: relative;
  z-index: 99999;
  width: 251px;
}
header .logo a {
  display: block;
}
header .logo a img {
  width: 100%;
  display: block;
}
header .hd-inner {
  position: relative;
  z-index: 10;
  min-height: 90px;
  width: 100%;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
}
header .hd-inner .hd-toggle-box {
  display: flex;
  align-items: center;
  gap: 50px;
}

header nav .gnb .gnb-menu {
  display: flex;
  gap: 60px;
  z-index: 50;
}
header nav .gnb .depth01 {
  width: fit-content;
  position: relative;
}
header nav .gnb .depth01 > a {
  display: block;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 90px;
}
header nav .gnb .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 0;
  max-height: 0px;
  text-align: center;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.46, 0.29, 0.36, 1);
  z-index: 10;
}
header nav .gnb .sub-menu li + li {
  margin-top: 25px;
}
header nav .gnb .sub-menu li a {
  line-height: 1;
  text-align: left;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 5px;
}
header nav .gnb .sub-menu .badge {
  display: inline-block;
}
header nav .gnb .sub-menu .badge.ing {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #fff;
  background: #ff4347;
  border-radius: 40px;
  padding: 3px 6px;
  line-height: 1;
}
header nav .gnb .sub-menu .badge.new {
  width: 8px;
  display: block;
}
header nav .gnb .sub-menu .badge.new img {
  width: 100%;
  display: block;
}
header .hd-d-day {
  display: flex;
  align-items: center;
  gap: 8px;
}
header .hd-d-day img {
  width: 34px;
  display: block;
}
header .hd-d-day p {
  font-size: 1.7rem;
  font-weight: 500;
}
header .hd-d-day p span {
  color: #48c1c5;
}
header .h-bak {
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  padding-top: 0;
  background-color: #ffffff;
  transition: all 0.4s cubic-bezier(0.46, 0.29, 0.36, 1);
}
header[data-hover="on"] .h-bak {
  height: 338px;
  padding-top: 90px;
}
header[data-hover="on"] nav .gnb .gnb-menu {
  gap: 30px;
}
header[data-hover="on"] nav .gnb .depth01 {
  width: 180px;
}
header[data-hover="on"] nav .gnb .depth01 > a {
  font-weight: 500;
}
header[data-hover="on"] nav .gnb .sub-menu {
  padding-top: 30px;
  height: auto;
  max-height: 240px;
}
header .header_mobile {
  display: none;
  width: 32px;
  height: 32px;
  z-index: 100000;
  position: relative;
}
header .header_mobile__btn {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100%;
}
header .header_mobile__btn span {
  position: relative;
  margin: 0 auto;
}
header .header_mobile__btn span,
header .header_mobile__btn span::before,
header .header_mobile__btn span::after {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #1a1a1a;
}
header .header_mobile__btn span::before,
header .header_mobile__btn span::after {
  content: "";
  position: absolute;
  transition-property: margin, transform;
  transition-duration: 0.2s;
  transition-delay: 0.2s, 0s;
}
header .header_mobile__btn span::before {
  margin-top: -8px;
}
header .header_mobile__btn span::after {
  margin-top: 8px;
}
header .header_mobile__btn[aria-pressed="true"] span {
  background-color: rgba(0, 0, 0, 0) !important;
  transition-delay: 0.2s;
}
header .header_mobile__btn[aria-pressed="true"] span::before {
  margin-top: 0;
  transform: rotate(45deg);
  transition-delay: 0s, 0.2s;
}
header .header_mobile__btn[aria-pressed="true"] span::after {
  margin-top: 0;
  transform: rotate(-45deg);
  transition-delay: 0s, 0.2s;
}

@media screen and (max-width: 1700px) {
  header nav .gnb .gnb-menu {
    gap: 30px;
  }
}
@media screen and (max-width: 1600px) {
  header nav {
    display: none;
  }
  header .hd-inner .hd-toggle-box {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
  }
  header nav .gnb {
    width: 100%;
  }

  header .header_mobile {
    display: block;
  }
  header nav .gnb .gnb-menu {
    display: block;
  }
  header nav .gnb .gnb-menu .sub-menu {
    position: initial;
    inset: initial;
    transform: initial;
    width: 100%;
    height: 0;
    max-height: 0px;
    text-align: center;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.46, 0.29, 0.36, 1);
    z-index: 10;
  }
  header nav .gnb .gnb-menu .depth01 {
    width: 100%;
  }
  header nav .gnb .gnb-menu .depth01 > a {
    border-bottom: 1px solid #eee;
    padding: 10px 0;
    line-height: 1.4;
  }
  header nav .gnb .gnb-menu .depth01 + .depth01 {
    margin-top: 16px;
  }
  header nav .gnb .gnb-menu .depth01.on {
    padding-bottom: 16px;
  }
  header nav .gnb .gnb-menu .depth01.on .sub-menu {
    display: block;
    height: fit-content;
    max-height: 400px;
    margin-top: 20px;
  }
  header nav .gnb .gnb-menu .depth01.on .sub-menu li a {
    line-height: 1.45;
  }
  header nav .gnb .gnb-menu .depth01.on .sub-menu li + li {
    margin-top: 20px;
  }
  header nav .gnb .depth01 {
    position: relative;
  }
  header .h-bak {
    display: none;
  }
  header nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 90px 20px;
    background-color: #fff;
    transition: all 0.4s ease-out;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    z-index: 100;
  }
  header.toggle {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
  }
  header.toggle nav {
    display: block;
    visibility: visible;
    opacity: 1;
  }
  header .hd-d-day {
    padding: 40px 0;
  }
}
@media screen and (max-width: 1400px) {
  header .hd-inner {
    padding: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  header .logo {
    width: 200px;
  }
  header .hd-inner {
    min-height: 80px;
    padding: 0 16px;
  }
  header .hd-d-day {
    gap: 4px;
  }
  header .hd-d-day img {
    width: 26px;
  }
  header .hd-d-day p {
    font-size: 1.5rem;
  }
  header nav {
    padding: 80px 16px 20px;
  }
}
footer {
  background: #fff;
  border-top: 1px solid #e6e6e6;
  padding: 60px 0 80px;
}
footer .ft-info {
  margin-bottom: 80px;
  display: flex;
  justify-content: space-between;
}
footer .ft-info .ft-right {
  max-width: 580px;
  width: 80%;
}
footer .ft-info ul {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 10px;
  overflow: hidden;
}
footer .ft-info ul li {
  position: relative;
  letter-spacing: -0.06em;
  font-weight: 400;
  color: #999;
  line-height: 1.2;
}
footer .ft-info ul li a {
  color: #999;
  text-decoration: underline;
}
footer .ft-info ul li + li::after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background: #e6e6e6;
  position: absolute;
  left: -10px;
  top: 0;
}
footer .ft-info ul li:first-child,
footer .ft-info ul li:nth-child(2) {
  color: #333;
}
footer .logo {
  width: 232px;
  display: block;
}
footer .logo img {
  width: 100%;
  display: block;
}
footer .ft-inner {
  padding-top: 14px;
  border-top: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #aaaaaa;
}
footer .ft-inner ul {
  display: flex;
  align-items: center;
  gap: 30px;
}

.popup-wrap {
  display: none;
  z-index: 1000;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.popup-wrap.on {
  display: block;
  opacity: 1;
}
.popup-wrap .pop-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-wrap .overlay {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  background: #1a1a1a;
  opacity: 0.85;
  width: 100%;
  height: 100%;
}
.popup-wrap .pop-conts {
  position: relative;
  width: 100%;
  z-index: 10;
}
.popup-wrap.popup-img .pop-conts {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.popup-wrap.popup-img .pop-conts ul {
  width: 100%;
  max-width: 1400px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
}
.popup-wrap.popup-img .pop-conts ul li {
  background: #1a1a1a;
  color: #fff;
  width: 420px;
}
.popup-wrap.popup-img .pop-conts ul li .thumbnail-box img {
  width: 100%;
  display: block;
}
.popup-wrap.popup-img .pop-conts ul .pop-close-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}
.popup-wrap.popup-img .pop-conts ul .pop-close-box label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.8rem;
  font-weight: 300;
  color: #fff;
}
.popup-wrap.popup-img
  .pop-conts
  ul
  .pop-close-box
  label
  input[type="checkbox"] {
  border-color: #fff;
}
.popup-wrap.popup-img .pop-conts ul .pop-close-box .pop-close-btn {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.popup-wrap.popup-agree .pop-conts {
  max-width: 520px;
  background: #fff;
  padding: 20px 20px 30px;
}

.popup-wrap.popup-pw .pop-conts {
  max-width: 480px;
  width: 90%;
  background: #fff;
  padding: 20px 20px 66px;
}
.popup-wrap.popup-pw .pop-conts .flex-end,
.popup-wrap.popup-agree .pop-conts .flex-end {
  display: flex;
  align-items: center;
  justify-content: end;
  margin-bottom: 26px;
}

.popup-wrap.popup-pw .pop-conts .pop-close,
.popup-wrap.popup-agree .pop-conts .pop-close {
  width: 17px;
  display: block;
}
.popup-wrap.popup-pw .pop-conts .pop-close img,
.popup-wrap.popup-agree .pop-conts .pop-close img {
  width: 100%;
  display: block;
}

.popup-wrap.popup-pw .pop-conts h3,
.popup-wrap.popup-agree .pop-conts h3 {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 500;
  margin-bottom: 32px;
}
.popup-wrap.popup-agree .pop-conts .text-box {
  max-height: 300px;
  overflow-y: auto;
}
.popup-wrap.popup-agree .pop-conts .text-box p {
  font-size: 1.5rem;
  line-height: 1.45;
}

.popup-wrap.popup-pw .form-pw {
  width: 100%;
}
.popup-wrap.popup-pw .form-pw form {
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
  gap: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-wrap.popup-pw .form-pw input {
  border-radius: 5px;
  border: 1px solid #e6e6e6;
  height: 62px;
  width: calc(100% - 104px);
  padding: 12px;
  font-size: 1.8rem;
}
.popup-wrap.popup-pw .form-pw button {
  height: 62px;
  width: 94px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background: #48c1c5;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: -0.108rem;
}
@media screen and (max-width: 1200px) {
  .popup-wrap.popup-pw .pop-conts h3,
  .popup-wrap.popup-agree .pop-conts h3 {
    font-size: 2rem;
    margin-bottom: 24px;
  }

  .popup-wrap.popup-pw .pop-conts .flex-end,
  .popup-wrap.popup-agree .pop-conts .flex-end {
    margin-bottom: 16px;
  }

  .popup-wrap.popup-pw .form-pw input,
  .popup-wrap.popup-pw .form-pw button {
    font-size: 1.6rem;
    height: 50px;
  }
}
@media screen and (max-width: 768px) {
  .popup-wrap.popup-pw .form-pw form {
    gap: 5px;
  }
  .popup-wrap.popup-pw .form-pw input {
    width: calc(100% - 65px);
  }
  .popup-wrap.popup-pw .form-pw button {
    width: 60px;
  }
}
@media screen and (max-width: 1200px) {
  footer .ft-info .ft-right {
    max-width: 520px;
    width: 80%;
  }
}
@media screen and (max-width: 1024px) {
  footer {
    padding: 40px 0;
  }
  footer .logo {
    width: 180px;
  }
  footer .ft-info {
    display: flex;
    flex-direction: column;
    row-gap: 32px;
    margin-bottom: 40px;
  }
  footer .ft-inner ul {
    gap: 16px;
  }
  footer .ft-inner {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
  }
  footer .ft-info .ft-right {
    width: 100%;
  }
}
.floating-banner {
  width: 100%;
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 80;
}
.floating-banner .floating-form {
  display: flex;
  align-items: center;
  gap: 14px;
}
.floating-banner .floating-box {
  background: #fff;
  border-radius: 10px;
  padding: 20px 25px;
  box-shadow: 0px 0px 8px rgba(42, 90, 92, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.floating-banner .floating-box .text p {
  font-size: 1.8rem;
  color: #48c1c5;
  font-weight: 500;
  letter-spacing: -0.06em;
}
.floating-banner .floating-box .text h3 {
  font-size: 2.6rem;
  font-weight: 600;
  letter-spacing: -0.06em;
}
.floating-banner .floating-box .text h3 span {
  font-weight: 500;
}
.floating-banner .floating-box ul {
  display: flex;
  align-items: center;
}
.floating-banner .floating-box ul .floating-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 5px;
  overflow: hidden;
  background: #f6f6f6;
  width: 280px;
  padding: 0 16px;
}
.floating-banner .floating-box ul .floating-input input {
  background: transparent;
  height: 56px;
  font-size: 1.8rem;
  width: calc(100% - 54px);
}
.floating-banner .floating-box ul .floating-input label {
  font-size: 1.8rem;
  font-weight: 400;
  color: #adb8bf;
}
.floating-banner .floating-box ul .floating-input label span {
  color: #48c1c5;
  font-weight: 600;
}
.floating-banner .floating-box ul .floating-input.phone input {
  width: calc(100% - 124px);
}
.floating-banner .floating-box ul .floating-input + .floating-input {
  margin-left: 10px;
}
.floating-banner .floating-box .btn-box {
  display: flex;
  flex-direction: column;
  row-gap: 6px;
}
.floating-banner .floating-box .btn-box .btn {
  display: inline-block;
  background: #1a1a1a;
  color: white;
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: -0.06em;
  padding: 17px 40px;
  line-height: 1;
  border-radius: 50px;
}
.floating-banner .floating-box .agree {
  margin-top: 6px;
}
.floating-banner .floating-box .agree label {
  display: flex;
  align-items: center;
  gap: 4px;
}
.floating-banner .floating-box .agree span {
  font-size: 1.2rem;
}
@media screen and (max-width: 1500px) {
  .floating-banner {
    bottom: 50px;
  }
}
@media screen and (max-width: 1200px) {
  .floating-banner .floating-box .text p {
    font-size: 1.4rem;
  }
  .floating-banner .floating-box .text h3 {
    font-size: 2rem;
  }
  .floating-banner .floating-box ul .floating-input label {
    font-size: 1.4rem;
  }
  .floating-banner .floating-box ul .floating-input {
    width: 260px;
    font-size: 1.4rem;
    padding: 0 14px;
  }
  .floating-banner .floating-box ul .floating-input input {
    width: calc(100% - 44px);
    font-size: 1.4rem;
  }
  .floating-banner .floating-box ul .floating-input.phone input {
    width: calc(100% - 100px);
  }
  .floating-banner .floating-box .btn-box .btn {
    line-height: 56px;
    font-size: 1.8rem;
    padding: 0 26px;
  }
}
@media screen and (max-width: 1024px) {
  .floating-banner .floating-form {
    gap: 6px;
  }
  .floating-banner .floating-box .text h3 {
    font-size: 1.6rem;
  }

  .floating-banner .floating-box ul .floating-input label {
    font-size: 1.2rem;
  }
  .floating-banner .floating-box .btn-box .btn {
    line-height: 42px;
    font-size: 1.4rem;
    padding: 0 16px;
  }
  .floating-banner .floating-box ul .floating-input {
    width: 200px;
    padding: 0 10px;
  }
  .floating-banner .floating-box ul .floating-input input {
    height: 42px;
  }
  .floating-banner .floating-box {
    padding: 20px;
  }
  .floating-banner .floating-box ul .floating-input + .floating-input {
    margin-left: 6px;
  }
  .floating-banner .floating-box ul .floating-input.phone input {
    width: calc(100% - 82px);
  } 
}
@media screen and (max-width: 800px) {
  .floating-banner .floating-box .text h3 span{
    display: block;
  }
}

input[type="checkbox"] {
  -webkit-appearance: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 18px;
  height: 18px;
  border-radius: 20px;
  display: block;
  cursor: pointer;
  border: 1px solid #333;
  outline: none !important;
}
input[type="checkbox"]:checked {
  background: #48c1c5 url(../img/common/check_box.svg) no-repeat center/cover;
  border: none;
}

.floating-btn {
  position: fixed;
  right: 30px;
  bottom: 100px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.floating-btn .btn-floating-top {
  width: 72px;
  display: block;
}
.floating-btn .btn-floating-top img {
  width: 100%;
  display: block;
}

.quick {
  position: relative;
  display: grid;
  gap: 9px;
  align-items: end;
}
.quick-fab {
  width: 72px;
  height: 72px;
  border: 1px solid #eee;
  border-radius: 16px;
  background: #fff;
  color: #48c1c5;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.2s ease;
}
.quick-fab:hover {
  background: #48c1c5;
  color: #fff;
  border: none;
}
.quick-panel {
  position: absolute;
  right: 0;
  bottom: 76px;
  width: 72px;
  padding: 10px 0;
  background: #fff;
  border-radius: 50px;
  border: 1px solid #eee;
  display: grid;
  transform-origin: bottom right;
  transform: translateY(8px) scale(0.96);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.quick-item {
  width: 100%;
  height: 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3px;
}
.quick-item span {
  display: block;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 500;
}
.quick-item img {
  display: block;
  width: 28px;
}
.quick.is-open .quick-panel {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}
.quick.is-open .quick-fab {
  background: #48c1c5;
  color: #fff;
  border: none;
}
@media (hover: hover) {
  .quick:hover .quick-panel {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
  }
}
@media screen and (max-width: 1500px) {
  .floating-btn {
    bottom: 180px;
  }
  .floating-btn .btn-floating-top,
  .quick-panel {
    width: 60px;
  }
  .quick-panel {
    bottom: 66px;
  }
  .quick-fab {
    width: 60px;
    height: 60px;
    font-size: 1.4rem;
  }
  .quick-item {
    height: 62px;
  }
  .quick-item span {
    font-size: 1.2rem;
  }
  .quick-item img {
    width: 24px;
  }
}

@media screen and (max-width: 768px) {
}
@media screen and (max-width: 576px) {
}

/* 서브페이지들 공통 요소 */

/* 탭메뉴 요소 */

.tab-menu ul {
  display: flex;
  justify-content: center;
  gap: 0;
}

.tab-menu a {
  display: inline-block;
  padding: 16px 10px;
  font-size: 2.4rem;
  line-height: normal;
  letter-spacing: -0.144rem;
  color: #aaa;
  min-width: 260px;
  text-align: center;
  border-bottom: 1px solid #e6e6e6;
  border-radius: 10px 10px 0 0;
}

.tab-menu .on a {
  background: #48c1c5;
  color: #fff;
  font-weight: 600;
}
.about .tab-menu a {
  min-width: 210px;
}
.admission .tab-menu li:first-child a {
  min-width: 320px;
}
@media screen and (max-width: 1420px) {
  .tab-menu a {
    min-width: 210px;
    font-size: 2rem;
  }
  .admission .tab-menu li:first-child a {
    min-width: 260px;
  }
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 768px) {
  .tab-menu a {
    padding: 10px 8px;
    font-size: 1.6rem;
    min-width: 150px;
  }
}
@media screen and (max-width: 576px) {
}

.tab-menu2 ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.tab-menu2 ul li {
  width: 120px;
}
.tab-menu2 ul li a {
  display: block;
  text-align: center;
  padding: 20px 10px;
  border-radius: 40px;
  background: #f6f6f6;
  line-height: 1;
  font-size: 2rem;
  font-weight: 400;
  color: #ccc;
  letter-spacing: -0.12rem;
}
.tab-menu2 ul li.on a {
  color: #fff;
  font-weight: 600;
  background: #1a1a1a;
}
@media screen and (max-width: 1200px) {
  .tab-menu2 ul li {
    width: 100px;
  }
  .tab-menu2 ul li a {
    padding: 16px 10px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 768px) {
  .tab-menu2 ul li {
    width: 90px;
  }
  .tab-menu2 ul li a {
    padding: 12px 8px;
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 576px) {
}

.btn-black {
  display: inline-block;
  width: 210px;
  padding: 25px;
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  border-radius: 5px;
  background: #1a1a1a;
  text-align: center;
  line-height: 1;
}
@media screen and (max-width: 1200px) {
  .btn-black {
    font-size: 1.8rem;
    width: 180px;
    padding: 20px;
  }
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 768px) {
  .btn-black {
    font-size: 1.6rem;
    width: 160px;
    padding: 16px;
  }
}
@media screen and (max-width: 576px) {
}
