@charset "utf-8";

@import url("https://fonts.googleapis.com/css2?family=Kdam+Thmor+Pro&display=swap");
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable-dynamic-subset.min.css");
@import url("https://fonts.googleapis.com/css2?family=Racing+Sans+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nanum+Brush+Script&family=Racing+Sans+One&family=Timmana&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Nanum+Brush+Script&family=Racing+Sans+One&family=Timmana&display=swap");

/* font-family: 'Spoqa Han Sans', 'Spoqa Han Sans JP', 'Sans-serif'; */
/* font-family: 'Scoredream'; */
/* font-family: 'Nanum Gothic', sans-serif; */
/* font-family: 'Noto Sans KR', sans-serif; */
/* font-family: 'Roboto', sans-serif; */
/* font-family: 'Nanum Gothic Coding', monospace; */
/* font-family: 'Gothic A1', sans-serif; */
/* font-family: 'Malgun Gothic', dotum, sans-serif; */
/* font-family: "Noto Sans KR",'맑은 고딕',Dotum,"돋움",arial,verdana,sans-serif; */
/* font-family: "Roboto", sans-serif; */
/* font-family: "East Sea Dokdo", sans-serif; */

.txe {
  font-family: "Lato", sans-serif;
}

.txk {
  font-family: "Kdam Thmor Pro", sans-serif;
  font-weight: 300;
  font-style: normal;
  color: #000000;
}

.txpr {
  font-family: "Pretendard Variable" !important;
  font-weight: 400;
}

.txp {
  font-family: "Pretendard Variable" !important;
  font-weight: 300;
  font-size: 16px;
}

.txr {
  font-family: "Racing Sans One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.txpr2 {
  font-family: "Pretendard Variable" !important;
  font-weight: 500;
  font-style: italic;
}

.txn {
  font-family: "Nanum Brush Script", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 2.2em;
}

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media (max-width: 576px) {
  .kono1 {
    display: none !important;
  }
}
@media (min-width: 577px) {
  .kono2 {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .kono01 {
    display: none !important;
  }
}
@media (min-width: 769px) {
  .kono02 {
    display: none !important;
  }
}

@media (max-width: 280px) {
  .kono3 {
    display: none !important;
  }
}
@media (min-width: 281px) {
  .kono4 {
    display: none !important;
  }
}

body {
  word-break: keep-all !important; /* 한글, 영어 단어별 줄바꿈 */
  overflow-wrap: break-word !important;
}

.lineb {
  word-wrap: break-word;
}

.fullscreen-btn-container {
  position: relative;
  top: 8px;
}

.fullscreen-btn {
  padding: 10px 20px;
  background-color: #a56433;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.fullscreen-btn:hover {
  background-color: black;
}

.fullscreen-btn.active {
  background-color: #a56433;
}

.icon {
  margin-right: 5px;
}

/* 마우스오버 이미지 투명도 */
.opa img {
  opacity: 0.5;
  transition: opacity 0.3s ease-in-out;
}

.opa img:hover {
  opacity: 1;
}

/* 마우스오버 이미지 어둡기*/
.opa2 img {
  filter: brightness(0.5);
  transition: filter 0.3s ease-in-out;
}

.opa2 img:hover {
  filter: brightness(1);
}

/* 마우스오버 이미지 크기 */
.opa3 img {
  transition: transform 0.3s ease-in-out;
}

/* 마우스 호버시 이미지 확대 */
.opa3 img:hover {
  transform: scale(1.2);
}

/* 마우스오버 이미지 떨림 */
.opa4 img {
  transition: transform 0.3s ease-in-out;
}

@keyframes shake {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-5px, 0);
  }
  50% {
    transform: translate(5px, 0);
  }
  75% {
    transform: translate(-5px, 0);
  }
  100% {
    transform: translate(5px, 0);
  }
}

.opa4 img:hover {
  animation: shake 0.5s ease-in-out infinite;
}

/* 마우스오버 5도 회전 */
.opa5 img {
  transition: transform 0.3s ease-in-out;
}

.opa5 img:hover {
  transform: rotate(5deg);
}

.line-btn {
  /* <============ */
  display: inline-block;
  overflow: hidden;
  padding-bottom: 3px;
  position: relative;
  /* font-family: 'Lato', sans-serif;
	font-size: 13px;
	font-weight: 300;
	line-height: 1.2; */
  color: #fff;
}

.line-btn.black {
  color: #000;
}

.line-btn:before,
.line-btn:after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #fff;
  transition: 0.5s cubic-bezier(0.858, 0.01, 0.068, 0.99);
}

.line-btn.black:before,
.line-btn.black:after {
  background-color: #000;
}

.line-btn:before {
  transition-delay: 0.25s;
}

.line-btn:after {
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);
}

.line-btn:hover:before {
  -webkit-transform: translateX(105%);
  transform: translateX(105%);
  transition-delay: 0s;
}

.line-btn:hover:after {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  transition-delay: 0.25s;
}

/* =============================================== */

table {
  border: none !important;
  border-collapse: collapse;
  width: 100%;
  /* border-top: 2px solid #3f7edd !important; */
}

table,
th,
td {
  border: 1px solid gray;
  padding: 10px;
  font-family: "Pretendard Variable" !important;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
}

.bgc {
  background-color: #f6f7ff;
  color: #000;
}

.bgcg {
  background-color: #f7f7f7;
  color: #000;
}

.tit {
  margin-top: 50px;
}

/* *************************************************************************************** */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0); /* 초기 상태는 투명 */
  transition: background-color 0.3s ease;
  padding: 20px;
  color: white;
  text-align: center;
}

.header.scrolled {
  background-color: rgba(0, 0, 0, 0.7); /* 스크롤 시 배경색 */
}

.navbar ul li a {
  color: white; /* 메뉴 항목 글자 색상을 흰색으로 설정 */
}

.navbar ul li a:hover {
  color: rgba(255, 255, 255, 0.7); /* 마우스 오버 시 글자 색 */
}

/* 드롭다운 메뉴 배경색과 기본 글자 색상 설정 */
.navbar .dropdown ul {
  background-color: rgba(0, 0, 0, 0.7) !important;
  margin: 0;
  padding: 0;
}

.navbar .dropdown ul li {
  list-style: none; /* 기존 리스트 스타일을 초기화 */
}

.navbar .dropdown ul li a {
  color: #fff !important;
  font-size: 14px !important;
  padding: 10px 20px;
  display: block;
  transition: color 0.3s ease, background-color 0.3s ease !important;
  text-align: left;
}

/* 드롭다운 메뉴 항목 마우스 오버 시 */
.navbar .dropdown ul li a:hover {
  color: orange !important; /* 마우스 오버 시 글자 색 */
  background-color: rgba(
    0,
    0,
    0,
    0.9
  ) !important; /* 마우스 오버 시 배경색을 조금 더 진하게 */
}

/* =====================================  아코디언 메뉴  =============================================== */

.services-list {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 10px;
}

.menu-item {
  margin-bottom: 5px;
}

.menu-link {
  display: block;
  padding: 10px;
  background-color: #f6f7ff;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
  cursor: pointer;
  width: 100%; /* 메인 메뉴 전체 폭을 사용 */
  box-sizing: border-box; /* 패딩과 테두리를 포함한 총 폭 계산 */
}

.menu-link.active {
  background-color: #f6f7ff;
}

.submenu {
  display: none;
  margin-top: 5px;
  padding-left: 20px; /* 서브메뉴를 메인 메뉴보다 약간 들여쓰기 */
  background-color: #fff;
  /* border-left: 2px solid #ddd; 서브메뉴의 왼쪽에 경계 추가 */
  width: calc(
    100% - 20px
  ); /* 서브메뉴 폭을 메인 메뉴보다 짧게 설정 (20px 만큼 줄임) */
  box-sizing: border-box; /* 패딩과 테두리를 포함한 총 폭 계산 */
}

.submenu a {
  display: block;
  padding: 5px 10px;
  color: #fff;
  text-decoration: none;
}

.submenu a.active {
  background-color: #f7f7f7;
}

.submenu a:hover {
  background-color: #f7f7f7;
}

/* 이미지가 컨테이너의 크기에 맞게 확대/축소되며, 이미지의 중앙을 기준으로 좌우 또는 상하가 잘리게 됨.
 또는 background-size: cover; 사용 */

.cvi {
  object-fit: cover !important;
}
