@charset "utf-8";

/* Noto Serif KR 폰트 import */
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+KR:wght@200;300;400;500;600;700;800&display=swap");

/* SUIT 폰트 */
@font-face {
  font-family: "SUIT";
  src: url("fonts/SUIT-Thin.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: "SUIT";
  src: url("fonts/SUIT-ExtraLight.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: "SUIT";
  src: url("fonts/SUIT-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "SUIT";
  src: url("fonts/SUIT-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "SUIT";
  src: url("fonts/SUIT-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "SUIT";
  src: url("fonts/SUIT-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "SUIT";
  src: url("fonts/SUIT-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "SUIT";
  src: url("fonts/SUIT-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: "SUIT";
  src: url("fonts/SUIT-Heavy.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
}

* {
  word-break: keep-all;
  box-sizing: border-box;
}

body {
  font-family: "SUIT", -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Noto Emoji", "Segoe UI Emoji", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
}

/* 초기화 */
html {
  overflow-y: auto !important;
}

html,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
img {
  margin: 0;
  padding: 0;
  border: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 1em;
  font-family: inherit !important;
}

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

ul,
dl,
dt,
dd {
  margin: 0;
  padding: 0;
  list-style: none;
}

legend {
  position: absolute;
  margin: 0;
  padding: 0;
  font-size: 0;
  line-height: 0;
  text-indent: -9999em;
  overflow: hidden;
}

label,
input,
button,
select,
img {
  vertical-align: middle;
  font-size: 1em;
}

input,
button {
  margin: 0;
  padding: 0;
  font-family: inherit !important;
}

input[type="submit"] {
  cursor: pointer;
}

button {
  cursor: pointer;
}

textarea,
select {
  font-family: inherit !important;
}

select {
  margin: 0;
}

p {
  margin: 0;
  padding: 0;
  word-break: break-all;
}

pre {
  overflow-x: scroll;
  font-size: 1.1em;
}

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

/*head.sub.php로 셋팅하는 값 = full-h, full-w*/
:root {
  --primary: #725144;
  --seconday: #666;
  --ca-color: #333;
  /* --full-h: calc(var(--vh, 1vh) * 100);
  --full-w: calc(var(--vw, 1vw) * 100); */
  --header-h: 60px;
  --lnb-h: 48px;
}

/* .overlay {
  position: relative;
} */

/* .overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 0;
} */

#header.active {
  background-color: #fff !important;
  color: #000 !important;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

#header.active #logo {
  background-image: url("../img/logo.png") !important;
}

/* 아이콘 있는 경우 header.active * {color: #000 !important;} 해주시면 됩니다. */

/* 애니메이션 관련 */

/* 버튼 */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary);
  color: #fff;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.btn-primary:hover,
.btn-primary:focus {
  background: #fff;
  color: var(--primary);
  outline: 1px solid var(--primary);
  box-shadow: 0 2px 8px rgba(96, 165, 250, 0.15);
}

.btn-primary:active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 1px 4px rgba(96, 165, 250, 0.1);
}

.btn-secondary {
  background-color: var(--seconday);
  color: #fff;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: #fff;
  color: var(--seconday);
  outline: 1px solid var(--seconday);
  box-shadow: 0 2px 8px rgba(156, 163, 175, 0.15);
}

.btn-secondary:active {
  background: var(--seconday);
  color: #fff;
  box-shadow: 0 1px 4px rgba(156, 163, 175, 0.1);
}

.btn-primary-outline {
  background-color: transparent;
  color: var(--primary);
  outline: 1px solid var(--primary);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.btn-primary-outline:hover,
.btn-primary-outline:focus {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(96, 165, 250, 0.15);
  outline: none;
}

.btn-primary-outline:active {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 1px 4px rgba(96, 165, 250, 0.1);
}

.btn-secondary-outline {
  background-color: transparent;
  color: var(--seconday);
  outline: 1px solid var(--seconday);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.btn-secondary-outline:hover,
.btn-secondary-outline:focus {
  background: var(--seconday);
  color: #fff;
  box-shadow: 0 2px 8px rgba(156, 163, 175, 0.15);
  outline: none;
}

.btn-secondary-outline:active {
  background: #fff;
  color: var(--seconday);
  box-shadow: 0 1px 4px rgba(156, 163, 175, 0.1);
}

.btn-animation {
  position: relative;
  overflow: hidden;
  color: var(--primary);
  outline: 1px solid var(--primary);
}

.btn-animation::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--primary);
  z-index: -1;
  transition: all 0.3s ease;
}

.btn-animation:hover {
  color: #fff;
  outline: 0;
}

.btn-animation:hover::before {
  width: 100%;
}

.button:disabled,
.btn-primary:disabled,
.btn-secondary:disabled,
.btn-primary-outline:disabled,
.btn-secondary-outline:disabled,
.btn-animation:disabled {
  background: #e5e7eb !important;
  /* Tailwind gray-200 */
  color: #b0b0b0 !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  cursor: not-allowed !important;
  opacity: 0.6;
  pointer-events: none;
  filter: grayscale(0.2);
}

.sit_icon {
  display: flex;
  gap: 4px;
  align-items: center;
  flex-wrap: wrap;
}

.editor-content img {
  display: initial;
}

#sev_himg * {
  font-family: "Pretendard", "Noto Emoji", "Segoe UI Emoji", sans-serif !important;
}

.sev_admin {
  display: none;
}

/* Lnb 관련  */
/* lnb  */
.lnb_wrap {
  position: relative;
}

.lnb {
  background: #fff;
}

.lnb .lnb_map {
  height: var(--lnb-h);
  display: flex;
  align-items: center;
  border-left: 1px solid #f1f1f1;
  border-right: 1px solid #f1f1f1;
  max-width: 1600px;
  margin: 0 auto;
}

.lnb .lnb_map .home {
  width: var(--lnb-h);
  height: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lnb .lnb_map .home a {
  color: #333;
}

.lnb .lnb_map > li {
  height: 100%;
  border-right: 1px solid #ddd;

  position: relative;
}

.lnb .lnb_map li.dep a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lnb .lnb_map li.dep a span {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;

  color: #333;
}

.lnb .lnb_map li.dep ul {
  display: none;
  position: absolute;
  left: 0;
  top: var(--lnb-h);
  width: 100%;
  z-index: 9999;
}

.lnb .lnb_map li.dep ul li {
  width: 100%;
  background: #f9f9f9;
  border-bottom: 1px solid #fff;
}

.lnb .lnb_map li.dep ul li a:hover {
  background: var(--primary);
  color: #fff;
  transition: 0.3s all;
}

.lnb .lnb_map li.dep ul li a.on {
  background: var(--primary);
  color: #fff;
}

/* 구글 번역 부분 커스텀 css - 번역기능 있을 경우만 사용 */

body {
  position: static !important;
  top: 0px !important;
}

.goog-logo-link {
  display: none !important;
}

.goog-te-gadget {
  color: transparent !important;
  display: none !important;
}

body > .skiptranslate,
.goog-logo-link,
.gskiptranslate,
.goog-te-gadget span,
.goog-te-banner-frame,
#goog-gt-tt,
.goog-te-balloon-frame,
div#goog-gt- {
  display: none !important;
}

.goog-te-gadget {
  color: transparent !important;
  font-size: 0px;
  width: 100px;
}

.goog-text-highlight {
  background: none !important;
  box-shadow: none !important;
}

#google_translate_element select {
  background: transparent;
  color: #000;
  border: none;
  font-weight: bold;
  border-radius: 0px;
  padding: 8px 12px;
}

.notranslate {
  translate: no !important;
}

/* ============================================
   메인 페이지 스타일
   ============================================ */

/* 메인 페이지 컨테이너 */
.main-page {
  width: 100%;
  overflow-x: hidden;
}

/* 섹션 공통 스타일 */
.main-page section {
  position: relative;
  width: 100%;
}

/* 메인 비주얼 섹션 */
.main-visual-section {
  position: relative;
  width: 100%;
}

.event-banner {
  position: relative;
  z-index: 10;
}

/* 인기 시술 섹션 */
.popular-treatment-section {
  position: relative;
}

.popular-treatment-section .container {
  position: relative;
  z-index: 10;
}

/* 보유장비 섹션 */
.equipment-section {
  background-color: #f2e3dd;
}

.equipment-swiper-wrapper {
  position: relative;
  /* padding: 0 60px; */
}

.equipment-swiper .swiper-button-prev,
.equipment-swiper .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.equipment-swiper .swiper-button-prev {
  left: 0;
}

.equipment-swiper .swiper-button-next {
  right: 0;
}

/* 유튜브 섹션 */
.youtube-swiper-wrapper {
  position: relative;
  padding: 0 60px;
}

.youtube-swiper .swiper-button-prev,
.youtube-swiper .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.youtube-swiper .swiper-button-prev {
  left: 0;
}

.youtube-swiper .swiper-button-next {
  right: 0;
}

/* SPACE 섹션 */
.space-section {
  position: relative;
}

.space-swiper-wrapper {
  position: relative;
  padding: 0 60px;
}

.space-swiper .swiper-button-prev,
.space-swiper .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.space-swiper .swiper-button-prev {
  left: 0;
}

.space-swiper .swiper-button-next {
  right: 0;
}

/* LOCATION 섹션 */
.location-section {
  background-color: #ffffff;
}

/* 반응형 조정 */
@media (max-width: 1024px) {
  .equipment-swiper-wrapper,
  .youtube-swiper-wrapper,
  .space-swiper-wrapper {
    padding: 0 50px;
  }
}

@media (max-width: 768px) {
  .equipment-swiper-wrapper,
  .youtube-swiper-wrapper,
  .space-swiper-wrapper {
    padding: 0 40px;
  }

  .main-visual-section .main-slider-wrapper {
    height: 400px !important;
  }

  .popular-treatment-section,
  .equipment-section,
  .youtube-section,
  .space-section,
  .location-section {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
}

@media (max-width: 640px) {
  .equipment-swiper-wrapper,
  .youtube-swiper-wrapper,
  .space-swiper-wrapper {
    padding: 0 30px;
  }
}

/* SPACE 섹션 Swiper 스타일 */
.space-swiper-wrapper {
  width: 100%;
  position: relative;
  padding: 50px 0; /* 화살표 공간 확보 */
}

.space-swiper {
  width: 100%;
  padding-bottom: 50px !important; /* 페이지네이션 공간 */
}

.space-swiper .swiper-slide {
  position: relative;
  /* 중요: auto로 설정하여 CSS width를 따르게 함 */
  width: 60%;
  max-width: 960px;
  /* 이미지 비율 (16:9 등 원하는 비율로 조정 가능) */
  aspect-ratio: 96 / 48;
  overflow: hidden;
  /* 그림자 효과 (선택사항) */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.space-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ⭐ 핵심: 하얀색 오버레이 (양옆 흐리게 만드는 효과) */
/* .space-swiper .swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.7); 
  opacity: 1; 
  transition: opacity 0.3s ease; 
  z-index: 10;
} */

/* [수정 후] - 부모 클래스(.space-swiper)를 붙여서 우선순위를 높임 */
/* .space-swiper .swiper-slide.swiper-slide-active::after,
.space-swiper .swiper-slide.swiper-slide-duplicate-active::after {
  opacity: 0;
} */

/* 네비게이션 버튼 스타일 */
.arrow-width {
  width: 100%;
}

.swiper-arrow {
  color: #1e1e1e;
}

.swiper-arrow svg {
  width: 24px;
  height: 24px;
}

/* SPACE 섹션 Swiper Pagination 스타일 */
.space-pagination {
  position: relative;
  bottom: auto;
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.space-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: #d9d9d9;
  opacity: 1;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.space-pagination .swiper-pagination-bullet-active,
.space-pagination .swiper-pagination-bullet-active-custom {
  background-color: #725144;
  width: 8px;
  height: 8px;
}

/* .hover-laclair {
  background-color: #c7907b;
  color: #e2baaa
  color: #fff;
} */