.web-planWrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: calc(100vh - 300px);
  padding: 50px;
  justify-content: space-around;
  align-items: center;
}

.web-planWrap .logo {
  width: 500px;
  margin: 0 auto;
}

.web-planWrap .logo img {
  width: 100%;
}
.web_text {
  font-size: 42px;
  font-weight: bold;
}
.web_text p {
  margin-bottom: 60px;
  text-align: center;
  color: #ee490c;
}
.web_text > div {
  font-size: 64px;
  margin: 0 auto;
  font-weight: 800;
}


/* 쓰기 배너 */
.write_banner {
  position: absolute;
  width: 100%;
  height: 700px;
  background: url("/img/banner_2.jpg") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
  z-index: -1; 
}


/* 반응형*/

@media screen and (max-width: 768px) {
  .web-planWrap {
    padding: 2rem;
    height: unset;
  }
  .web-planWrap .logo {
    width: 100%;
    margin-bottom: 30px;
  }
  .web_text {
    font-size: 20px;
    font-weight: bold;
  }
  .web_text > div {
    font-size: 24px;
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  .web_text > div span {
    margin-bottom: 15px;
    font-size: 30px;
  }
}
/* 메인 배너 스타일 */
/* 회전 애니메이션 정의 */
@keyframes slowRotate {
    0% { 
        transform: scale(1) rotate(0deg); 
    }
    25% { 
        transform: scale(2) rotate(30deg); /* 30도까지 회전 */
    }
    50% { 
        transform: scale(2) rotate(0deg); /* 잠시 멈춤 */
    }
    75% { 
        transform: scale(2) rotate(-30deg); /* 원래 위치로 돌아감 */
    }
    100% { 
        transform: scale(1) rotate(0deg); /* 원위치 유지 */
    }
}

.mian_banner_logo {
    filter: invert(100%) grayscale(100%) brightness(200%) opacity(0.5);
    mix-blend-mode: difference;
}

.mian_banner_logo:hover {
    filter: brightness(0) invert(1); /* 흰색으로 변경 */
    opacity: 0.7; /* 약간의 투명도 추가 (선택사항) */
    transition: all 0.3s ease; /* 부드러운 전환 효과 */
}

.mian_banner_logo::before {
      content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3); /* 반투명 흰색 오버레이 */
    mix-blend-mode: overlay;
    z-index: -1;
}

.banner_img {
    width: 100%;
    height: 100%; /* 또는 원하는 높이 값 */
    position: relative;
    overflow: hidden;
}


.banner_slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0;
    transition: opacity 1s ease;
}

.banner_slide.active {
    opacity: 1;
}

 /* banner_3.jpg에만 회전 효과 적용 */
.banner_slide[style*="banner_3.jpg"] {
    animation: slowRotate 20s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    transform-origin: center center;
}

.banner_slide.active {
    opacity: 1;
}

.banner_4{
z-inex: 7000;
}


.main_banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.main_banner .inner {
  position: relative;
  height: 100%;
  z-index: 2;
 
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  
}



.main_banner .logo img {

}
.mian_banner_text {
    opacity: 0.5;
	 animation: fadeInOut 4s forwards; /* 애니메이션이 한 번만 실행되고 끝난 후 최종 상태 유지  infinite; 반복 */
	  color: #fff;
	  padding: 0 20px;
	  margin: 0 auto;
}




.main_banner p {
  font-size: 18px;
  margin-top: 60px;
   color: #fff;
}

.pagination {
  position: absolute;
  right: 0;
  bottom: 50px;
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #ffffff;
  z-index: 2;
}

.pagination button {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 18px;
  margin: 0 10px;
  cursor: pointer;
  transition: color 0.3s;
}

.pagination button:hover {
  color: #328bcb;
}

/* 공통 섹션 스타일 */
.services {
  background-color: #fff;
  text-align: center;
  margin-top: 120px;
}

.services .inner {
  max-width: 1400px;
  margin: 0 auto;
}

.services h2 {
  font-size: 46px;
  font-weight: 700;

  margin-bottom: 10px;
}
.services h2 b {
  color: #328bcb;
}
.services p {
     font-size: 16px;
    color: #bfbfbf;
    margin-bottom: 50px;
} */





/* 포트폴리오 섹션 */
.portfolio {
  background-color: #fff;
  text-align: center;
  margin-top: 165px;
  margin-bottom: 120px;
} 

.portfolio .inner {
  max-width: 1400px;
  margin: 0 auto;
}

.portfolio h2 {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 10px;
}

.portfolio h2 b {
  color: #328bcb;
}

.portfolio p {
  font-size: 16px;
  color: #bfbfbf;
  margin-bottom: 50px;
}

/* 포트폴리오 링크 */
.portfolio .portfolio_link {
  font-size: 16px;
  color: #222222;
  display: inline-flex;
  font-weight: 700;
  align-items: center;
  margin-bottom: 50px;
  transition: color 0.3s;
}

.portfolio .portfolio_link img {
  margin-left: 10px;
  width: 16px;
  height: auto;
  transition: transform 0.3s;
}

.portfolio .portfolio_link:hover {
  color: #328bcb;
}



/* 공통 스타일 */
.notice {
  background-color: #fff;
  text-align: center;
  margin-bottom: 120px;
   position: relative; 
}

.notice .inner {
  max-width: 1400px;
  margin: 0 auto;

   height: 100%;
}

.notice h2 {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 10px;
}

.notice h2 b {
  color: #328bcb;
}

.notice p {
  font-size: 16px;
  color: #bfbfbf;
  margin-top: 4px;
  margin-bottom: 30px;
}

/* 공지사항 링크 */
.notice .notice_link {
  font-size: 16px;
  color: #222222;
  display: inline-flex;
  font-weight: 700;
  align-items: center;
  margin-bottom: 50px;
  transition: color 0.3s;
}

.notice .notice_link img {
  margin-left: 10px;
  width: 16px;
  height: auto;
  transition: transform 0.3s;
}

.notice .notice_link:hover {
  color: #328bcb;
}

/* 공지사항 리스트 */
.notice_list {

  list-style: none;
  padding: 0;
  margin: 0;
background: #fff;
     /*  position: fixed;  position: relative; 기준 위치 설정 */
 /* `  directions-content`보다 위에 있도록 설정 */
	transition: clip-path 0.5s ease-in-out;

}

/* 지도가 리스트와 겹칠 때, 윗부분 숨김

.directions-content.active ~ .notice_list {
    clip-path: inset(40% 0 0 0); 
}
*/


/* 지도와 겹치지 않을 때 원래 상태

.directions-content:not(.active) ~ .notice_list {
    clip-path: inset(0 0 0 0);
}
*/


.notice_list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid #ededed;
  border-top: 1px solid #ededed;

  margin-bottom: 10px;
}
/*
.notice_list li:hover::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 100%;
  border-top: 1px solid #328bcb;
  border-bottom: 1px solid #328bcb;
  pointer-events: none;

} */

.notice_list .number {
  font-size: 20px;
  margin-left: 50px;
  font-weight: 700;
  color: #222222;
  text-align: center;
}

.notice_list .title {
  font-size: 20px;
  color: #222222;
  flex: 1;
  text-align: left;
  margin-left: 60px;
      cursor: pointer;
	    transition: all 0.3s ease;
}


.notice_list .title.active {
    color: #your-color; /* 활성화됐을 때의 색상 */
    font-weight: bold;
}


.notice_list .date {
  font-size: 20px;
  color: #bfbfbf;
  font-weight: 700;
  margin-right: 50px;
  text-align: right;
}

.white-overlay {
    position: absolute;
    top: 0;
    left: 0;
  width: 1400px;
    height: 1400px;
    background-color: #fff;
    z-index: 50;
	margin: 0 auto;
	

  transition: height 5s ease, transform 5s ease; 

    transform-origin: top;
}

.white-overlay.folded {
    transform: translateY(-300px);
    height:  1500px;
}

.white-overlay.unfolded {
   transform: translateY(2000px);
    height: 0;
}

.directions-content.active {
  
    opacity: 1;
    visibility: visible;
}
.directions-content {
    position: relative;
	    overflow: hidden;
z-index: 1;
   padding: 0;
  border-radius: 8px;


}
.directions-container {
    position: relative;
    width: 100%;
    overflow: hidden;
	max-width: 1400px;
	background: #eee;
	margin: 0 auto 0;
	border-radius: 8px;
	padding-top: 30px;
	 position: relative;
    z-index: 1; /* 화이트 오버레이보다 낮은 z-index */
}


.directions-content img {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 15px;
    display: block;
}




.directions-text {
    color: #333;
    line-height: 1.6;
}



.notice_list .title:hover {
    color: #007bff;
}




/* 견적문의 스타일 */
.inquiry_list {
  background-color: #fff;
  margin-top: 165px;
}

.inquiry_list .inner {
  max-width: 1400px;
  margin: 0 auto;
}

.inquiry_list h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
}

.inquiry_list p {
  font-size: 16px;
  color: #bfbfbf;
  margin-bottom: 30px;
  text-align: center;
}

.total_count {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  text-align: left;
}

.total_count span {
  font-weight: 400;
  color: #000;
}

.inquiry_table {
  width: 100%;
  border-collapse: collapse;
}

.inquiry_table thead {
  border-bottom: 2px solid #000;
  border-top: 2px solid #000;
}

.inquiry_table th,
.inquiry_table td {
  padding: 10px;
  font-size: 16px;
  text-align: center;
}

.inquiry_table th {
  font-weight: 700;
}

.inquiry_table tbody tr {
  border-bottom: 1px solid #ddd;
}

.inquiry_table tbody tr:last-child {
  border-bottom: 2px solid #000;
}

.inquiry_table img {
  vertical-align: middle;
  margin-right: 8px;
}
/* 공통 스타일 */
.inquiry_form {
  margin-top: 165px;
  padding: 40px 0;
}

.inquiry_form .inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.inquiry_form h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
}

.inquiry_form p {
  font-size: 16px;
  color: #bfbfbf;
  margin-bottom: 30px;
  text-align: center;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
/* 필수 입력 필드 빨간 점 */
.input_wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

.input_wrapper input {
  width: 100%;
  padding-right: 25px; /* 빨간 점 아이콘 공간 확보 */
  box-sizing: border-box; /* padding이 input 전체 크기에 포함되도록 설정 */
}

.required_icon {
  position: absolute;
  right: 10px; /* 입력 필드 내부 오른쪽 끝에 배치 */
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  pointer-events: none; /* 클릭 방지 */
}

.form_group {
  display: flex;
  gap: 20px;
}

.form_group input,
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  background-color: #fbfbfb;
  border-radius: 4px;
  font-size: 16px;
}

textarea {
  resize: none;
  height: 120px;
}

.form_checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
}

.file_upload {
  display: flex;
  align-items: center;
  gap: 10px;
}

.file_button {
  background-color: #000;
  color: #fff;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 400;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.file_text {
  font-size: 16px;
  color: #222222;
}

.captcha_section {
  display: flex;
  align-items: center;
  gap: 10px;
}

.captcha_icons img {
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.form_buttons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.cancel_button,
.submit_button {
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
}

.cancel_button {
  background-color: #fbfbfb;
  color: #333;
  border: 1px solid #2222;
}

.submit_button {
  background-color: #328bcb;
  color: #fff;
  border: none;
}
/* 새로운 캡차 섹션 스타일 */
.custom_captcha_section {
  display: flex;
  align-items: center;
  gap: 8px; /* 캡차 이미지, 입력 필드, 아이콘 간 간격 */
  margin-top: 10px; /* 섹션 간격 */
}

.custom_captcha_image {
  width: 104px;
  height: 50px;
  display: inline-block;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.custom_input_wrapper {
  position: relative;
}

.custom_input_wrapper input {
  width: 120px;
  height: 50px;
  padding: 8px 24px 8px 8px; /* 오른쪽에 빨간 점 공간 확보 */
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  box-sizing: border-box;
}

.custom_required_icon {
  position: absolute;
  right: 8px; /* 입력 필드 내부 오른쪽 끝에 배치 */
  top: 50%;
  transform: translateY(-50%);
  width: 6px; /* 빨간 점 크기 */
  height: 6px;
  pointer-events: none; /* 클릭 방지 */
}

.custom_captcha_icons {
  display: flex;
  gap: 5px; /* 아이콘 간 간격 */
}

.custom_icon {
  width: 20px; /* 아이콘 크기 조정 */
  height: 20px;
  cursor: pointer;
}
.write_button {
  margin-top: 30px;
  margin-bottom: 80px;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 700;
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 4px;
  margin-left: 1300px;
}
.pagination2 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 120px;
}

.pagination2 .page_numbers a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  color: #000;
  text-decoration: none;
  font-weight: 500;
  margin: none;
}

.pagination2 .page_numbers a.active {
  background-color: #000;
  color: #fff;
}
