@charset "UTF-8";
/* Pretendard 풀버전 @import 제거 — header/index.html 의 dynamic-subset <link> 로 일원화 */
#bo_v > header {
  display: none;
}

@keyframes ddm_m {
  0% {
    transform: scale(1);
  }
  50% {
    transform: matrix(1.05, 0.01, 0.01, 1.05, 0, -15);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes ddm_m_reverse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: matrix(0.8, 0.01, 0.01, 0.8, 0, -5);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes blk2 {
  0% {
    opacity: 0;
  }
  49% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  99% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.pc-inline {
  display: inline;
}

.tablet {
  display: none;
}

.mobile {
  display: none;
}

.pc {
  display: flex;
}

.pc-mobile {
  display: flex;
}

.mobile-pc {
  display: none;
}

/* --------------- PC modal start-------------- */
.modal_open_btn {
  cursor: pointer;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  display: flex;
  justify-content: center;
  align-items: center;

  background: rgba(0, 0, 0, 0.7);

  z-index: 9999999999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}

.modal_iner {
  width: 60vw;
  background: #fff;

  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;

  border-radius: 2vw;
  padding: 2vw;
}

.modal.on_modal {
  opacity: 1;
  visibility: visible;
}

.modal_hd {
  display: flex;
  justify-content: center;
  align-items: center;

  font-size: var(--headM);
  font-weight: 600;
  margin-bottom: 2vw;

  width: 100%;
}

.modal_body {
  width: 100%;
  height: 60vh;
  overflow-y: scroll;
  font-size: var(--bodyS);
  line-height: 1.6;
  text-align: left;
}

.modal_body .policy_text {
  word-break: keep-all;
}

.modal_close {
  width: 100%;
  height: 2vw;
  background: #000;
  color: #fff;
  font-size: var(--bodyM);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1vw;
  cursor: pointer;
  margin-top: 2vw;
  font-weight: 500;
}

@font-face {
  font-family: "GmarketSansBold";
  src: url("https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansBold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
/* ---------------footer start-------------- */
.footer {
  width: 100%;
  background-color: #0d0d0d;
  box-sizing: border-box;
  font-family: var(--font-pretendard, "Pretendard", sans-serif);
}

.footer__container {
  width: 100%;
  padding: 11.6rem 22.3rem 10.2rem 24.2rem;
  box-sizing: border-box;
}

/* 로고 + SNS 행 */
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__logo-img {
  width: 16.1rem;
  height: auto;
}

/* SNS */
.footer__sns {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.footer__sns-link {
  position: relative;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  background-color: rgba(235, 236, 249, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.2s ease;
}

.footer__sns-link:hover {
  background-color: #e97e00;
}

/* ImgResize 미동작 대비 — 아이콘별 자연크기를 rem 으로 하드코딩 */
.footer__sns-icon {
  height: auto;
  opacity: 0.3;
  transition: opacity 0.2s ease;
}

.footer__sns-icon--01 { width: 1.3rem; }
.footer__sns-icon--02 { width: 2.3rem; }
.footer__sns-icon--03 { width: 2.3rem; }
.footer__sns-icon--04 { width: 2.1rem; }
.footer__sns-icon--05 { width: 2.1rem; }

.footer__sns-link:hover .footer__sns-icon {
  opacity: 1;
}

.footer__sns-tip {
  position: absolute;
  bottom: calc(100% + 1.0rem);
  left: 50%;
  transform: translateX(-50%);
  padding: 0.7rem 1.35rem;
  border-radius: 1.25rem;
  background-color: #e97e00;
  color: #ffffff;
  font-size: var(--bodyS);
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
}

.footer__sns-link:hover .footer__sns-tip {
  opacity: 1;
  visibility: visible;
}

.footer__sns-tip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-left: 0.5rem solid transparent;
  border-right: 0.5rem solid transparent;
  border-top: 1.0rem solid #e97e00;
}

/* 사업자정보 / divider / 카피 */
.footer__info {
  margin-top: 3.0rem;
}

.footer__info-text {
  font-size: var(--bodyM);
  font-weight: 200;
  color: rgba(255, 255, 255, 0.341);
  line-height: 1.4;
  letter-spacing: -0.03em;
}

.footer__divider {
  margin-top: 5.7rem;
  width: 100%;
  height: 1px;
  background-color: rgba(231, 231, 231, 0.051);
}

.footer__copy {
  margin-top: 4.0rem;
}

.footer__copy-text {
  font-size: var(--bodyM);
  font-weight: 200;
  color: rgba(255, 255, 255, 0.2);
  line-height: 1.4;
  letter-spacing: -0.03em;
}

/* ---------------footer end-------------- */
/* ---------------contact service (하단 고정 퀵 문의바) start-------------- */
.contact_service {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 9rem;
  background-color: #ffcd30;
  z-index: 1111;
  display: flex;
  align-items: center;
}

.contact__inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30.8rem 0 34.6rem;
  box-sizing: border-box;
}

.contact__left {
  display: flex;
  align-items: center;
  gap: 2.3rem;
}

.contact__chicken {
  flex-shrink: 0;
}

.contact__chicken-img {
  width: 22.4rem;
  height: auto;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: -0.3rem;
}

.contact__agree {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.contact__agree-check {
  width: 1.4rem;
  height: 1.4rem;
  box-sizing: border-box;
  border-radius: 0.2rem;
  background-color: transparent;
  border: 2px solid #000000;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

.contact__agree-check:checked {
  background-color: #000000;
}

.contact__agree-check:checked::after {
  content: "";
  position: absolute;
  left: 0.35rem;
  top: 0.05rem;
  width: 0.4rem;
  height: 0.75rem;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.contact__agree-label {
  font-size: var(--bodyS);
  font-weight: 500;
  line-height: 1;
  color: #000000;
  cursor: pointer;
}

.contact__agree-view {
  font-size: var(--bodyS);
  font-weight: 500;
  line-height: 1;
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 0.3rem;
  cursor: pointer;
}

.contact__inputs {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.contact__input {
  width: 17.9rem;
  height: 4.0rem;
  border: none;
  outline: none;
  border-radius: 0.5rem;
  background-color: #ffffff;
  padding: 0 1.5rem;
  font-size: var(--bodyM);
  font-weight: 600;
  font-family: var(--font-suit);
  color: #000000;
  text-align: center;
  box-sizing: border-box;
}

.contact__input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.7);
  font-weight: 600;
}

.contact__input::placeholder {
  color: rgba(0, 0, 0, 0.7);
  font-weight: 600;
}

.contact__submit {
  width: 17.5rem;
  height: 4.0rem;
  border: none;
  border-radius: 0.5rem;
  background-color: #0d0e28;
  color: #ffffff;
  font-size: var(--bodyM);
  font-weight: 700;
  font-family: var(--font-paperlogy);
  cursor: pointer;
}

.contact__tel {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.contact__tel-icon-img {
  width: 3.5rem;
  height: auto;
}

.contact__tel-num {
  font-size: var(--titleM);
  font-family: var(--font-paytone);
  color: #0d0e28;
  line-height: 1;
}

/* ---------------contact service end-------------- */
/* 로딩 */
.loading-overlay {
  position: fixed; /* 화면 전체를 덮도록 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* 반투명 검은색 배경 */
  z-index: 9999; /* 다른 요소들보다 위에 표시 */
  display: flex;
  justify-content: center;
  align-items: center;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #f3f3f3; /* 회색 테두리 */
  border-top: 5px solid red; /* 브랜드 메인색상 */
  border-radius: 50%;
  animation: spin 1s linear infinite; /* 회전 애니메이션 */
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* ============================================================
 * 모바일 (max-width:599) — footer/contact/modal + display 토글
 * ★ 레거시 클래스 규칙 제거(현 BEM 마크업 미매칭: quick_logo/contact_mid/form-button2/#contact-form/ddm_logo 등)
 *   + 1023 tablet 레거시 블록 제거. floating 레일 모바일은 파일 끝 블록(플로팅 base 뒤) 참조.
 * ============================================================ */
@media screen and (max-width: 599px) {
  /* display 토글 (header 등 공용) */
  .pc-mobile { display: none; }
  .pc-inline { display: none !important; }
  .mobile-pc { display: flex; }

  /* ----- 개인정보 모달 ----- */
  .modal_iner {
    width: 58.125rem;
    border-radius: 2.5rem;
    padding: 3.75rem;
    box-sizing: border-box;
  }
  .modal_hd { font-size: 3.125rem; margin-bottom: 3.75rem; }
  .modal_body { font-size: 2.0625rem; }
  .modal_close { height: 5rem; font-size: 2.25rem; border-radius: 1.75rem; margin-top: 3.75rem; }

  /* ----- footer 본체: 로고 + SNS 세로 스택 중앙 ----- */
  .footer { background-color: #101010; }
  .footer__container {
    height: auto;
    padding: 7.5rem 3.75rem 20rem;   /* 하단 = 하단 고정 퀵바 회피 여유 */
    text-align: center;
  }
  .footer__top {
    flex-direction: column;
    justify-content: center;
    gap: 3.75rem;
  }
  /* ★ 이미지 크기는 모바일 재지정 안 함 — PC rem 값이 rem 스케일로 자동 축소됨 */
  .footer__sns { justify-content: center; gap: 1.25rem; }
  .footer__sns-link { width: 6.875rem; height: 6.875rem; }
  .footer__sns-icon { opacity: 0.5; }                              /* 모바일 호버 없음 → 기본 가시성 ↑ */
  .footer__sns-tip { display: none; }                              /* 모바일 툴팁 불필요 */
  .footer__info { margin-top: 3.75rem; }
  .footer__info-text {
    font-size: 2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
  }
  .footer__divider { margin-top: 3.75rem; background-color: rgba(252, 252, 252, 0.1); }
  .footer__copy { margin-top: 3.125rem; }
  .footer__copy-text {
    font-size: 1.875rem;
    line-height: 1.6;
    color: #888888;
    text-align: center;
  }

  /* ----- contact_service: 하단 고정바 (치킨 숨김 / 1행:전화+동의 / 2행:성함·연락처·창업경험·문의 4등분 동일크기) ----- */
  /* width:100% 대신 left/right:0 → 페이지 가로 오버플로 시에도 바 폭 = 뷰포트 고정 */
  .contact_service { height: auto; padding: 0.875rem 1.875rem 1.25rem; right: 0; width: auto; }
  .contact__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 1.25rem;
    align-items: center;
    padding: 0;
  }
  .contact__chicken { display: none; }
  .contact__left,
  .contact__form,
  .contact__inputs { display: contents; }   /* 래퍼 평탄화 → grid 직접 배치 */

  /* 1행: 전화번호(좌) / 개인정보동의(우) */
  .contact__tel { grid-row: 1; grid-column: 1 / 3; justify-self: start; gap: 0.875rem; align-items: end; }
  .contact__tel-num { font-size: 4.375rem; }
  .contact__agree { grid-row: 1; grid-column: 2 / 5; justify-self: end; gap: 0.625rem; }
  .contact__agree-check { width: 2.5rem; height: 2.5rem; }
  .contact__agree-check:checked::after { left: 0.625rem; top: 0.09375rem; width: 0.71875rem; height: 1.34375rem; }
  .contact__agree-label { font-size: 2rem; white-space: nowrap; }
  .contact__agree-view { font-size: 2rem; text-underline-offset: 0.375rem; white-space: nowrap; }

  /* 2행: 성함·연락처·창업경험유무·문의하기 — 4등분 동일 크기 */
  .contact__input,
  .contact__submit {
    grid-row: 2;
    width: 100%;
    height: 6.875rem;
    font-size: 2rem;
    padding: 0 0.9375rem;
  }
  .contact__input[name="name"] { grid-column: 1; }
  .contact__input[name="hp"]   { grid-column: 2; }
  .contact__input[name="exp"]  { grid-column: 3; }
  .contact__submit             { grid-column: 4; padding: 0; }
}

/* ===== 플로팅 SNS 레일 (전역 — sub01 con01 에서 이관, 전 페이지 공유) ===== */
.floating {
    right: 4rem;
    bottom: 11rem;
    z-index: 10;
    gap: 1rem;
}
.floating__panel {
    width: 10.2rem;
    gap: 1.6rem;
    border-radius: 5.1rem;
    background: transparent;
    transition: background 0.3s;
}
.floating.is-open .floating__panel {
    background: #ffffff;
    box-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.12);
}
.floating__expand {
    gap: 1.6rem;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s, opacity 0.3s, padding 0.3s;
}
.floating.is-open .floating__expand {
    max-height: 30rem;
    opacity: 1;
    padding-top: 2.4rem;
}
.floating__link {
    gap: 0.6rem;
}
/* ImgResize 미동작 대비 — 아이콘 자연크기를 rem 으로 하드코딩 */
.floating__icon-img,
.floating__sns-icon-img,
.floating__top-icon-img {
    height: auto;
}
.floating__icon-img--youtube { width: 4rem; }
.floating__icon-img--insta { width: 3.8rem; }
.floating__sns-icon-img { width: 2.3rem; }
.floating__top-icon-img { width: 2.4rem; }
.floating__label {
    color: #000000;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
}
.floating__divider {
    width: 5.4rem;
    height: 0.1rem;
    background: #e5e5ec;
}
.floating__sns {
    width: 10.2rem;
    height: 10.2rem;
    gap: 0.4rem;
    border-radius: 50%;
    background: #0b0e28;
    box-shadow: 0 0 0 1px #0b0e28;   /* 원 둘레 안티앨리어싱 흰선 덮는 동색 외곽 */
    filter: drop-shadow(0 0.4rem 1.2rem rgba(0, 0, 0, 0.3));
}
.floating__sns-label {
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.2;
}
.floating__top {
    width: 4.4rem;
    height: 4.4rem;
    border-radius: 50%;
    background: #0b0e28;
    border: 2px solid #ffd400;
    filter: drop-shadow(0 0.4rem 1rem rgba(0, 0, 0, 0.3));
}

/* ===== 플로팅 SNS 레일 — 모바일 (vw 스케일 · 아이콘 전용 컴팩트 · 하단 고정 퀵바 위로). 플로팅 base 뒤라 cascade OK ===== */
@media screen and (max-width: 599px) {
    /* ★ 이미지 크기는 모바일 재지정 안 함 — PC rem 값이 rem 스케일로 자동 축소됨 */
    .floating { right: 2.5rem; bottom: 18.75rem; gap: 1.25rem; }
    .floating__label,
    .floating__sns-label { display: none; }
    .floating__panel { width: 8.75rem; gap: 1.875rem; border-radius: 4.375rem; }
    .floating.is-open .floating__expand { max-height: 37.5rem; padding-top: 1.875rem; }
    .floating__link { gap: 0; }
    .floating__divider { width: 4.375rem; }
    .floating__sns { width: 8.75rem; height: 8.75rem; }
    .floating__top { width: 6.875rem; height: 6.875rem; }
}