/* =========================
  Design Tokens / Reset
   ========================= */
:root {
  --color-primary: #9fa1ff;
  --color-secondery: #ff1414;
  --color-dark01: #2b274a;
  --color-dark02: #1f1d37;
}

/* The Jamsil – TTF */
@font-face {
  font-family: "TheJamsil";
  src: url("/img/font/The Jamsil 1 Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TheJamsil";
  src: url("/img/font/The Jamsil 2 Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TheJamsil";
  src: url("/img/font/The Jamsil 3 Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TheJamsil";
  src: url("/img/font/The Jamsil 4 Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TheJamsil";
  src: url("/img/font/The Jamsil 5 Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TheJamsil";
  src: url("/img/font/The Jamsil 6 ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* Cafe24 Shiningstar v2.0 */
@font-face {
  font-family: "Cafe24Shiningstar";
  src: url("/img/font/Cafe24Shiningstar-v2.0.woff2") format("woff2"),
    url("/img/font/Cafe24Shiningstar-v2.0.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  box-sizing: border-box;
  letter-spacing: -0.04em;
}

ul,
li {
  list-style: none;
}

a {
  color: inherit;
}

button {
  background: none;
  border: none;
  outline: 0;
}

.si_inner_wide {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.si_inner_small {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.si_inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.main_section {
  padding: 150px 0;
}

.main_section h2,
.main_section p {
  word-break: keep-all;
}

.main_title {
  text-align: center;
}

.main_title .caption {
  font-family: "Cafe24Shiningstar";
  color: var(--color-secondery);
  font-size: 4rem;
  margin-bottom: 20px;
  font-style: italic;
}

.main_title h2 {
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 1.25em;
  margin-bottom: 50px;
}

.main_title p {
  font-size: 2.125rem;
  line-height: 1.5em;
}

.underline_deco {
  position: relative;
}

.underline_deco > img {
  display: block;
  position: relative;
  z-index: 1;
}

.underline_deco::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 120%;
  transform: translateX(-50%);
  z-index: 0;
}

.font_jamsil {
  font-family: "TheJamsil", sans-serif;
}

.main_section .txt {
  margin-top: 80px;
  text-align: center;
}

.main_section .txt p {
  font-size: 2.25rem;
  font-weight: 700;
  font-family: "Pretendard";
}

.main_section .cta_btn_wrap {
  margin-top: 100px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.main_section .cta_btn_wrap button {
  font-size: 1.25rem;
  font-weight: 700;
  padding: 10px 30px;
  border-radius: 50px;
  border: 1px solid #555555;
  color: #555555;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Pretendard";
  letter-spacing: -0.04em;
  gap: 10px;
}

.main_section .cta_btn_wrap button.contact_form {
  background: var(--color-secondery);
  color: #fff;
  border-color: var(--color-secondery);
}

@media screen and (max-width: 1200px) {
  .main_section figure {
    margin: 0;
  }

  .main_section figure img {
    display: block;
    width: 100%;
  }

  .main_title p {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 1024px) {
  html,
  body {
    font-size: 14px;
  }

  .main_section {
    padding: 120px 0;
  }

  .main_section .txt p {
    font-size: 1.75rem;
  }
}

@media screen and (max-width: 768px) {
  .main_title h2 {
    font-size: 2.75rem;
  }

  .main_section {
    padding: 100px 0;
  }

  .main_title h2 img {
    width: 40%;
  }

  .main_section .txt p {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 512px) {
  html,
  body {
    font-size: 12px;
  }

  .main_section .txt,
  .main_section .cta_btn_wrap {
    margin-top: 40px;
  }

  .main_title h2 {
    font-size: 2.25rem;
    margin-bottom: 20px;
  }

  .main_section .cta_btn_wrap button {
    padding: 10px 20px;
  }
}

@media screen and (min-width: 1024px) {
  br.br_t {
    display: none;
  }
}

@media screen and (min-width: 512px) {
  br.br_m {
    display: none;
  }
}

/* =========================
    Hedaer - 헤더
   ========================= */

#s_header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  color: #fff;
  z-index: 999;
}

#s_header.active {
  background: rgba(0, 0, 0, 0.3);
}

#s_header .si_inner_wide {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

#s_header .si_inner_wide nav ul {
  display: flex;
  gap: 54px;
  align-items: center;
}

#s_header .si_inner_wide nav a {
  font-size: 1.125rem;
}

#s_header .si_inner_wide button {
  display: block;
  padding: 10px 30px;
  border-radius: 50px;
  background: var(--color-primary);
  color: var(--color-dark02);
  font-weight: 700;
}

@media screen and (max-width: 1024px) {
  #s_header .si_inner_wide nav {
    display: none;
  }
}

@media screen and (max-width: 512px) {
  #s_header h1 img {
    width: 70%;
  }
}

/* =========================
   mainVisual - 인트로
   ========================= */

.main_visual {
  background: url(/img/mainvisual_bg.jpg) center bottom/cover;
  color: #fff;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.main_visual h2 {
  font-size: 4.375rem;
  font-weight: 400;
  margin-bottom: 70px;
  line-height: 1.5em;
}

.main_visual h2 b {
  font-weight: 700;
}

.main_visual h2 strong {
  font-weight: 700;
  color: var(--color-primary);
  font-size: 6.25rem;
}

.main_visual p {
  font-size: 1.875rem;
  margin-bottom: 20px;
}

.main_visual .underline_deco::after {
  background: var(--color-primary);
  height: 16px;
}

@media screen and (max-width: 1024px) {
  .main_visual h2 {
    font-size: 4rem;
  }

  .main_visual h2 strong {
    font-size: 5.5rem;
  }
}

@media screen and (max-width: 768px) {
  .main_visual h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
  }

  .main_visual h2 strong {
    font-size: 3rem;
  }

  .main_visual .underline_deco::after {
    width: 100%;
  }

  .main_visual .underline_deco img {
    width: 80%;
    margin: 0 auto;
  }
}

/* =========================
   section01
   ========================= */

.main_section01 .feature_wrap {
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
  font-family: "Pretendard";
}

.main_section01 .feature_tabs {
  min-width: 760px;
}

.main_section01 .feature_tabs .swiper-slide {
  opacity: 0.6;
  transition: 0.3s all;
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid transparent;
}

.main_section01 .feature_tabs .swiper-slide.is-active {
  opacity: 1;
  border-color: #ccc;
}

.main_section01 .feature_tabs .swiper-slide h3 {
  flex: 1;
  text-align: left;
  font-size: 1.625rem;
}

.main_section01 .feature_tabs .swiper-slide p {
  font-size: 1.375rem;
  font-weight: 500;
}

.main_section01 .feature_slider {
  height: 600px;
}

.main_section01 .feature_slider .swiper-slide img {
  display: inline;
  text-align: right;
}

@media screen and (max-width: 1200px) {
  .main_section01 .feature_wrap {
    gap: 20px;
  }

  .main_section01 .feature_tabs {
    width: 60%;
    min-width: unset;
  }

  .main_section01 .feature_slider {
    width: 40%;
    height: unset;
  }

  .main_section01 .feature_slider img {
    width: 100%;
  }

  .main_section01 .feature_tabs .swiper-slide {
    padding: 10px 0;
  }
}

@media screen and (max-width: 1024px) {
  .main_section01 .feature_tabs .swiper-slide h3 {
    font-size: 1.5rem;
  }

  .main_section01 .feature_tabs .swiper-slide img {
    width: 40px;
    height: 40px;
  }
}

@media screen and (max-width: 768px) {
  .main_section01 .feature_wrap {
    flex-wrap: wrap;
  }

  .main_section01 .feature_tabs {
    width: 100%;
  }

  .main_section01 .feature_tabs .swiper-slide {
    height: 80px;
  }

  .main_section01 .feature_slider {
    width: 100%;
  }
}

@media screen and (max-width: 512px) {
  .main_section01 .feature_tabs .swiper-slide h3 {
    font-size: 1.25rem;
  }

  .main_section01 .feature_tabs .swiper-slide p {
    font-size: 1rem;
  }

  .main_section .cta_btn_wrap {
    gap: 10px;
  }
}

/* =========================
    section02
   ========================= */

.main_section02 {
  background: var(--color-primary);
  color: #fff;
}

.main_section02 .flow {
  margin-top: 80px;
  background: url("/img/section02_bg.png") no-repeat center;
}

.main_section02 .flow ul {
  display: flex;
  gap: 100px;
  justify-content: center;
  flex-wrap: wrap;
}

.main_section02 .flow ul li {
  width: calc(33.3% - 100px);
  background: #fff;
  color: #121212;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  font-family: "Pretendard";
}

.main_section02 .flow .count {
  display: block;
  padding: 8px 20px;
  background: var(--color-dark02);
  border-radius: 50px;
  color: #fff;
  font-size: 1.125rem;
}

.main_section02 .flow h3 {
  font-size: 1.875rem;
  font-weight: 700;
}

.main_section02 .flow p {
  line-height: 1.5em;
  font-size: 1.5rem;
  font-weight: 500;
  color: #555555;
}

.main_section.main_section02 .cta_btn_wrap button {
  background: none;
  border-color: #fff;
  color: #fff;
}

.main_section.main_section02 .cta_btn_wrap button img {
  filter: brightness(100);
}

.main_section.main_section02 .cta_btn_wrap button.contact_form {
  background: #fff;
  color: var(--color-primary);
}

@media screen and (max-width: 1400px) {
  .main_section02 .flow ul {
    gap: 60px;
  }

  .main_section02 .flow ul li {
    width: calc(33.3% - 40px);
  }
}

@media screen and (max-width: 1200px) {
  .main_section02 .flow {
    background: none;
  }

  .main_section02 .flow ul {
    gap: 20px;
  }

  .main_section02 .flow ul li {
    width: calc(33.3% - 20px);
  }

  .main_section02 .flow p {
    font-size: 1.25rem;
  }
}

@media screen and (max-width: 768px) {
  .main_section02 .flow ul li {
    width: calc(50% - 10px);
    padding: 20px;
  }
}

@media screen and (max-width: 512px) {
  .main_section02 .flow ul li {
    width: 100%;
  }

  .main_section02 .flow {
    margin-top: 40px;
  }
}

/* =========================
  section03
   ========================= */

.main_section03 {
  background: #f6f6fb;
}

.main_section03 .content {
  margin-top: 80px;
}

.main_section03 .item {
  display: flex;
  gap: 40px;
  font-family: "Prettendard";
  margin-bottom: 40px;
}

.main_section03 .item figure {
  border-radius: 20px;
  overflow: hidden;
  margin: 0;
}

.main_section03 .item span {
  color: var(--color-primary);
  font-size: 1.5rem;
  font-weight: 700;
  display: block;
  padding: 40px 0;
}

.main_section03 .item h3 {
  font-size: 1.875rem;
  font-weight: 700;
}

.main_section03 .item p {
  font-size: 1.375rem;
  color: #555555;
}

@media screen and (max-width: 1200px) {
  .main_section03 .item figure {
    width: 50%;
  }

  .main_section03 .item > div {
    width: 50%;
  }

  .main_section03 .item p {
    font-size: 1.25rem;
  }
}

@media screen and (max-width: 768px) {
  .main_section03 .item span {
    padding: 20px 0;
  }

  .main_section03 .item h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 512px) {
  .main_section03 .item {
    flex-wrap: wrap;
    gap: 0;
  }

  .main_section03 .item figure {
    width: 100%;
  }

  .main_section03 .item > div {
    width: 100%;
  }

  .main_section03 .content, .main_section01 .feature_wrap{
    margin-top: 40px;
  }
}

/* =========================
  section04
   ========================= */

.main_section04 .main_title em {
  font-style: normal;
}

.main_section04 .main_title em::after {
  height: 16px;
  background: #e8e9ff;
  bottom: 0px;
  z-index: -1;
}

.main_section04 .flow_slider {
  margin-top: 80px;
  width: 100%;
  padding: 30px 0;
  overflow: hidden;
}

.main_section04 .flow_slider ul {
  display: flex;
  gap: 30px;
  width: 185%;
  animation: flow linear infinite;
  animation-duration: var(--speed, 20s); /* JS에서 속도 제어 */
}

.main_section04 .flow_slider ul li {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  font-family: "Pretendard";
  flex: 1;
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.main_section04 .flow_slider ul li img {
  height: 100px;
}

.main_section04 .flow_slider h3 {
  font-size: 1.875rem;
  font-weight: 700;
  margin: 20px 0 0px;
}

.main_section04 .flow_slider p {
  font-size: 1.375rem;
  color: #555555;
  line-height: 1.5em;
}

@keyframes flow {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-1 * var(--loop, 0px)));
  }
}

@media screen and (max-width: 1800px) {
  .main_section04 .flow_slider ul li {
    min-width: 360px;
  }
}

@media screen and (max-width: 768px) {
  .main_section04 .flow_slider {
    margin-top: 40px;
  }

  .main_section04 .flow_slider ul {
    width: 280%;
  }
}

@media screen and (max-width: 512px) {
  .main_section04 .flow_slider ul li {
    padding: 20px;
    min-width: 300px;
  }
}

/* =========================
  section05
   ========================= */

.main_section05 {
  background: #f6f6fb;
}

.main_section05 small {
  display: block;
  font-size: 1rem;
  color: #555555;
  margin-top: 10px;
}

.main_section05 .highlight_box {
  margin-top: 80px;
}

.main_section05 .highlight_box figure {
  display: flex;
  align-items: center;
}

.main_section05 .highlight_box .before {
  margin-right: -40px;
}

.main_section05 .highlight_txt {
  width: 95%;
  display: grid;
  grid-template-columns: 1fr 700px;
}

.main_section05 .highlight_txt > div {
  text-align: center;
}

.main_section05 .highlight_txt ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
}

.main_section05 .highlight_txt ul li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 1.875rem;
  font-family: "Pretendard";
  font-weight: 500;
  margin-bottom: 10px;
}

.main_section05 .highlight_txt ul strong {
  color: var(--color-secondery);
  position: relative;
  z-index: 1;
}

.main_section05 .highlight_txt ul strong::after {
  width: 110%;
  background: #ffe3e3;
  height: 10px;
  bottom: 0;
  z-index: -1;
}

@media screen and (max-width: 1200px) {
  .main_section05 .highlight_box figure {
    justify-content: center;
    margin: 0;
    width: 100%;
  }

  .main_section05 .highlight_box figure img {
    display: block;
  }

  .main_section05 .highlight_box figure .before {
    width: 40%;
  }

  .main_section05 .highlight_box figure .after {
    width: 60%;
  }
}

@media screen and (max-width: 768px) {
  .main_section05 .highlight_txt {
    display: block;
    text-align: center;
    width: 100%;
  }
}

@media screen and (max-width: 512px) {
  .main_section05 .highlight_box figure {
    flex-direction: column;
    gap: 20px;
  }

  .main_section05 .highlight_box figure .before,
  .main_section05 .highlight_box figure .after {
    width: 100%;
    margin: 0;
  }

  .main_section05 .highlight_box {
    margin-top: 40px;
  }

  .main_section05 .highlight_txt ul li {
    font-size: 1.25rem;
  }
}

/* =========================
  section06
   ========================= */

.main_section06 {
  background: #040034;
  color: #fff;
}

.main_section06 .main_title .caption {
  color: #9fa1ff;
}

.main_section06 .main_title {
  margin-bottom: 80px;
}

.main_section06 .flow figure {
  margin-bottom: 70px;
}

.main_section06 .flow ul {
  position: relative;
  z-index: 1;
  margin-bottom: 150px;
}

.main_section06 .flow ul::before {
  content: "";
  display: block;
  border-left: 2px dashed #fff;
  position: absolute;
  left: 24px;
  top: 0;
  z-index: 0;
  height: 100%;
  width: 1px;
}

.main_section06 .flow li {
  display: flex;
  gap: 20px;
  font-family: "pretendard";
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

.main_section06 .flow li .number {
  color: var(--color-dark02);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #8d8fff;
  border-radius: 50%;
  font-size: 1.125rem;
  font-weight: 700;
}

.main_section06 .flow h3 {
  flex: 1;
  font-size: 1.875rem;
  font-weight: 700;
}

.main_section06 .flow p {
  font-size: 1.375rem;
}

.main_section06 .underline_deco {
  z-index: 1;
}

.main_section06 .underline_deco::after {
  background: #3e3c80;
  height: 6px;
  bottom: 0px;
  z-index: -1;
  width: 100%;
}

.main_section06 .main_title:last-child {
  margin-top: 150px;
}

.main_section06 .adventege ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  font-family: "Pretendard";
  gap: 20px;
}

.main_section06 .adventege figure {
  margin: 0;
}

.main_section06 .adventege ul img {
  display: block;
  width: 100%;
}

.main_section06 .adventege .number {
  display: block;
  font-size: 1.125rem;
  color: var(--color-primary);
  margin-bottom: 60px;
  margin-top: 30px;
}

.main_section06 .adventege h3 {
  font-size: 1.875rem;
  margin-bottom: 30px;
}

.main_section06 .adventege p {
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.5em;
}

@media screen and (max-width: 1024px) {
  .main_section06 .adventege h3 {
    font-size: 1.5rem;
  }

  .main_section06 .adventege p {
    font-size: 1.25rem;
  }

  .main_section06 .adventege .number {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 768px) {
  .main_section06 .flow h3 {
    font-size: 1.5rem;
  }

  .main_section06 .flow li {
    gap: 10px;
    margin-bottom: 40px;
  }

  .main_section06 .flow p {
    font-size: 1.25rem;
  }

  .main_section06 .flow li .numberc {
    width: 30px;
    height: 30px;
  }

  .main_section06 .flow ul::before {
    left: 15px;
    border-width: 1px;
  }

  .main_section06 .flow li .number {
    width: 30px;
    height: 30px;
  }

  .main_section06 .adventege .number {
    margin: 20px 0;
  }

  .main_section06 .adventege ul {
    gap: 10px;
  }

  .main_section06 .adventege p {
    font-size: 1rem;
  }
}

@media screen and (max-width: 520px) {
  .main_section06 .adventege ul {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .main_section06 .adventege p {
    font-size: 1.25rem;
  }

  .main_section06 .flow li {
    flex-direction: column;
    padding-left: 10px;
  }

  .main_section06 .flow li .br_t {
    display: none;
  }

  .main_section06 .flow ul::before {
    display: none;
  }
}

/* =========================
  footer
   ========================= */

.si_footer {
  background: #222222;
  color: #fff;
  padding: 60px 0 100px;
}

.si_footer img {
  display: block;
  margin-bottom: 40px;
}

.si_footer span {
  display: inline-block;
  margin-right: 40px;
  color: #ccc;
}

.si_footer b {
  display: inline-block;
  margin-right: 10px;
  color: #fff;
}

.si_footer p {
  margin-bottom: 20px;
  line-height: 1.5em;
}

.si_footer .bottom_bar {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
}

.si_footer .bottom_bar ul {
  display: flex;
  gap: 20px;
}

@media screen and (max-width: 1024px) {
  .si_footer {
    padding-bottom: 120px;
  }
}

@media screen and (max-width: 512px) {
  .si_footer {
    padding-bottom: 200px;
  }

  .si_footer img {
    max-width: 200px;
  }

  .si_footer .bottom_bar {
    flex-direction: column-reverse;
    gap: 20px;
  }

  .si_footer p {
    margin-bottom: 0;
  }

  .si_footer p span {
    margin-bottom: 5px;
  }
}

/*-------------------------------- */

/* inner */
.b_inner {
  max-width: 1400px;
  width: 96%;
  margin: 0 auto;
}

/* 섹션 공통 */
.b_section {
  padding: 150px 0;
}
.b_section .b_tit_box {
  margin-bottom: 60px;
}
.b_section .b_tit_box .b_top_txt {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 50px;
  background-color: #111;
  color: #fff;
  border-radius: 30px;
  margin: 0 auto;
  margin-bottom: 20px;
}
.b_section .b_tit_box p {
  margin-top: 20px;
  line-height: 1.5;
}

@media screen and (max-width: 1080px) {
  .b_section {
    padding: 100px 0;
  }
  .b_section .b_tit_box {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 720px) {
  .b_section {
    padding: 70px 0;
  }
  .b_section .b_tit_box {
    margin-bottom: 30px;
  }
  .b_section .b_tit_box .b_top_txt {
    width: 130px;
    height: 35px;
  }
}

/* admin menu */
.b_adm_list {
  position: fixed;
  right: 20px;
  bottom: 110px;
  z-index: 15;
}
.b_adm_list li {
  margin-bottom: 7px;
}
.b_adm_list li:last-child {
  margin-bottom: 0px;
}
.b_adm_list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  width: 100px;
  height: 40px;
  border-radius: 6px;
  text-align: center;
  background-color: #111;
  border: 1px solid #666;
}

/* 개인정보처리방침, 이용약관 팝업 */
.add_pop_wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  display: none;
}
.add_pop_inner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 94%;
  max-width: 800px;
  height: 600px;
  border-radius: 0px;
  overflow: hidden;
  transform: translate(-50%, -50%) scale(0.9);
  transition: transform 0.3s ease;
}
.add_pop_wrap.active .add_pop_inner {
  transform: translate(-50%, -50%) scale(1);
}
.add_pop_tit {
  background: var(--color-primary);
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 25px;
  font-weight: bold;
}
.add_pop_close {
  width: 20px;
  height: 60px;
  position: relative;
}
.add_pop_close span {
  position: absolute;
  top: 29px;
  left: 0;
  width: 20px;
  height: 2px;
  background: #fff;
  z-index: 1;
  transition: transform 0.3s ease;
}
.add_pop_close span:nth-child(1) {
  transform: rotate(45deg);
}
.add_pop_close span:nth-child(2) {
  transform: rotate(-45deg);
}
.add_pop_close:hover span {
  transform: rotate(0);
}
.add_pop_con {
  background: #fff;
  padding: 22px 25px;
  overflow-y: scroll;
  height: calc(100% - 60px);
}
.add_pop_con h5 {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.add_pop_con p {
  font-size: 14px;
  line-height: 160%;
  margin-bottom: 25px;
  -webkit-text-stroke: 0.015em; /*-- 기본폰트 나눔스퀘어/나눔스퀘어 라운드가 아닐 경우 제거 --*/
}

@media screen and (max-width: 1080px) {
}

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

.quick_banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: var(--color-primary);
  color: #fff;
  z-index: 999;
  padding: 20px 0;
}

.quick_banner .si_inner_wide {
  display: flex;
  z-index: 999;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.quick_banner .b_left_box {
  display: flex;
  align-items: center;
}

.quick_banner .b_left_box strong {
  font-size: 1.5rem;
  font-weight: 400;
}

.quick_banner .b_left_box strong b {
  font-weight: 700;
  align-items: center;
}

.quick_banner .b_right_box form {
  display: flex;
  align-items: center;
  gap: 20px;
}

.quick_banner .b_right_box ul {
  display: flex;
  gap: 5px;
  align-items: center;
}

.quick_banner .b_right_box ul input {
  border: 0;
  outline: 0;
  padding: 10px;
  width: 150px;
}

.quick_banner .b_right_box .b_submit_btn {
  display: block;
  background: #222;
  color: #fff;
  padding: 10px;
  width: 160px;
}

.quick_banner .b_num_box{
 display: flex; 
 align-items: center;
 gap: 20px;
}

@media screen and (max-width: 1500px) {
  .quick_banner {
    padding: 20px 0;
  }
  .quick_banner figure {
    margin: 0;
  }

  .quick_banner .b_left_box strong {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  .quick_banner .si_inner_wide {
    justify-content: center;
  }

  .quick_banner .b_left_box {
    display: none;
  }

  .quick_banner .b_right_box form {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media screen and (max-width: 512px) {
  .quick_banner .b_right_box ul input {
    width: 100%;
  }
}
