
/* ============================================================
   1. 유틸리티 – 간격 spacer
   ============================================================ */
.le10  { width: 100%; display: block; height: 10px;  }
.le20  { width: 100%; display: block; height: 20px;  }
.le30  { width: 100%; display: block; height: 30px;  }
.le40  { width: 100%; display: block; height: 40px;  }
.le50  { width: 100%; display: block; height: 50px;  }
.le60  { width: 100%; display: block; height: 60px;  }
.le70  { width: 100%; display: block; height: 70px;  }
.le80  { width: 100%; display: block; height: 80px;  }
.le90  { width: 100%; display: block; height: 90px;  }
.le100 { width: 100%; display: block; height: 100px; }

/* 공통 float 헬퍼 */
.fr { float: right; }
.right { text-align: right; }
.left  { text-align: left;  }


/* ============================================================
   2. 이미지 효과
   ============================================================ */

/* ── 공통 그림자·둥근 모서리 ── */
.effect,
.effect_bg {
  position: relative;
  display: inline-block;
  border-radius: 20px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

/* ── 가운데 배치 ── */
.effect_center {
  width: 500px;
  height: auto;
  margin: 0 auto 50px;
  text-align: center;
}
.effect_center img {
  width: 100%;
  border-radius: 28px 0 28px 0;          /* top-left, top-right, bottom-right, bottom-left */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ── 왼쪽 배치 ── */
.effect_left {
  float: left;
  display: block;
  border-radius: 20px;
  margin-right: 50px;
  margin-bottom: 50px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}
.effect_left_text {
  width: 85%;
  margin-left: 15%;
  display: block;
}

/* ── 오른쪽 배치 ── */
.effect_right {
  float: right;
  display: block;
  border-radius: 20px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}
.effect_right_text {
  width: 75%;
  margin-right: 25%;
  display: block;
}

/* ── 2·3단 이미지 목록 ── */
ul.img_two,
ul.img_three { width: 100%; display: inline-block; }

ul.img_two   li { float: left; width: 48%; margin-right: 2%; }
ul.img_three li { float: left; width: 31%; margin-right: 2%; }

ul.img_two   li img,
ul.img_three li img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}
ul.img_two   li span,
ul.img_three li span { text-align: left; font-size: 15px; color: #000; }
ul.img_two   li p,
ul.img_three li p    { font-size: 20px; color: #000; }

/* ── 반응형 (@max 640px) ── */
@media (max-width: 640px) {
  .effect,
  .effect_center { width: 100%; float: none; display: block; }

  .effect_left,
  .effect_right {
    width: 100%;
    float: none;
    display: block;
    border-radius: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    margin: 0 0 20px;
  }
  .effect_left_text,
  .effect_right_text { width: 100%; margin: 0; display: block; }

  ul.img_two   li { width: 100%; }
  ul.img_three li { width: 100%; }
}


/* ============================================================
   3. 버튼
   ============================================================ */

/* ── 다운로드 버튼 ── */
.btn_down {
  width: 30%;
  padding: 20px;
  margin: 30px auto;
  text-align: center;
  border: 1px solid #333029;
  border-radius: 100px;
  box-shadow: 0 1px 0 #1c1b18;
  background: linear-gradient(#eae0c2, #ccc2a6);
  text-shadow: 0 1px 0 #fff;
}
.btn_down a {
  font-size: 18px;
  font-weight: bold;
  color: #505739;
}
.btn_down:hover { background: linear-gradient(#ccc2a6, #eae0c2); }

/* ── 링크 버튼 ── */
.btn_link {
  display: inline-block;
  padding: 8px 15px;
  margin: 5px 0;
  text-align: center;
  color: #fff;
  font-size: 14px;
  border: 1px solid #1f2f47;
  border-radius: 100px;
  box-shadow: inset 0 0 15px 3px #23395e;
  background: linear-gradient(#2e466e, #415989);
  text-shadow: 0 1px 0 #263666;
}
.btn_link:hover { background: linear-gradient(#415989, #2e466e); }

/* ── 녹색 버튼 (buttonClass) ── */
.buttonClass {
  display: block;
  width: 20%;
  padding: 20px 0;
  margin: 80px auto 0;
  font-size: 25px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  border: 1px solid #4b8f29;
  border-radius: 4px;
  box-shadow: 0 10px 14px -7px #3e7327;
  background: linear-gradient(#77b55a, #72b352);
  text-shadow: 0 1px 0 #5b8a3c;
}
.buttonClass a  { color: #fff; }
.buttonClass:hover { background: linear-gradient(#72b352, #77b55a); }

/* ── 버튼 반응형 ── */
@media (max-width: 640px) {
  .btn_down   { width: 90%; border-radius: 10px; }
  .btn_link   { border-radius: 10px; }
  .buttonClass{ width: 80%; }
}


/* ============================================================
   4. 인사말 (greeting)
   ============================================================ */
.greeting { position: relative; max-width: 1400px; }
.greeting .img {
  position: relative;
  height: 550px;
  background: url(../img/bg_greeting.jpg) no-repeat 50%;
  background-size: cover;
}
.greeting .tit {
  position: absolute;
  top: 30px; right: 100px;
  width: 514px;
  padding: 80px;
  background: #282e0f;
}
.greeting .tit::before {
  content: '';
  display: block;
  position: absolute;
  top: -23px; left: 50px;
  width: 1px; height: 80px;
  background: #fff;
}
.greeting .tit h2 {
  margin-bottom: 10px;
  color: #fff;
  font-size: 36px;
  line-height: 1.6;
  letter-spacing: 3px;
}
.greeting .tit h5 {
  position: relative;
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 100;
  line-height: 1.6;
  word-break: keep-all;
  letter-spacing: -1px;
}
.greeting .tit h5 span { display: block; font-weight: 600; }

.greeting .colum {
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 20px 70px;
}
.greeting .colum::after { content: ''; display: block; clear: both; }
.greeting .colum .left  { float: left;  width: 48%; text-align: justify; }
.greeting .colum .right { float: right; width: 48%; text-align: justify; }

.greeting .sign {
  text-align: right;
  font-size: 1.125em;
  font-weight: bold;
  color: #222;
  margin-top: 60px;
  padding-right: 20px;
  line-height: 50px;
  background: no-repeat right center;
}
.greeting .sign .name { font-size: 24px; }

@media (max-width: 980px) {
  .greeting .tit {
    position: relative;
    width: 100%; height: auto;
    padding: 50px;
    top: 0; right: 0;
  }
  .greeting .tit h2  { font-size: 32px; }
  .greeting .img     { height: 253px; }
  .greeting .colum .left,
  .greeting .colum .right { width: 100%; clear: both; }
  .greeting .colum .right { padding-top: 20px; }
}


/* ============================================================
   5. 그룹소개 (company_info)
   ============================================================ */
.company_info { width: 100%; height: auto; }

.company_info .img_page {
  height: 550px;
  margin: 0 30px;
  background: url(../img/company_info_bg_company.jpg) center / cover no-repeat;
}

.company_info .txt_page {
  display: flex;
  flex-flow: wrap;
  max-width: 1400px;
  margin: -50px auto 0;
  background: #fff;
  padding: 100px;
}
.company_info .txt_page h2 {
  width: 30%;
  font-size: 35px;
  font-weight: 600;
  letter-spacing: 3px;
  line-height: 1;
  margin-bottom: 44px;
  vertical-align: top;
}
.company_info .txt_page p {
  width: 70%;
  font-size: 16px;
  line-height: 1.8;
  word-break: keep-all;
  color: #555;
  padding-bottom: 15px;
}

/* ── 이념(Ideology) ── */
.company_info .Ideology           { width: 100%; padding-bottom: 100px; }
.company_info .Ideology .inner    { max-width: 1240px; margin: auto; clear: both; }
.company_info .Ideology .inner h2 {
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 5px;
  text-align: center;
  padding: 95px 0 50px;
}
.company_info .Ideology .inner h2::after {
  content: '';
  display: block;
  width: 40px; height: 2px;
  margin: 20px auto;
  background: #000;
  clear: both;
}
.company_info .Ideology .inner .point { color: #06F; }

.company_info .Ideology dl {
  float: left;
  width: 33.333%;
  padding: 20px;
  border-right: 1px solid #ddd;
}
.company_info .Ideology dl:last-child { border: 0; }
.company_info .Ideology dl .web_icon  { padding: 0 0 20px; text-align: center; color: #ff4200; }
.company_info .Ideology dl dt {
  font-size: 20px;
  height: 60px;
  font-weight: bold;
  letter-spacing: 5px;
  text-align: center;
}
.company_info .Ideology dd {
  line-height: 2.2;
  text-align: center;
  font-size: 16px;
  color: #555;
}

/* ── 타일 박스 래퍼 ── */
.tl_title_box_wrap {
  width: 100%;
  height: auto;
  padding: 150px 20px;
  clear: both;
  background: url(../img/work_page_bg.jpg) center / cover no-repeat;
}
.tl_title_box_wrap li {
  position: relative;
  width: 23.5%;
  min-height: 400px;
  background: #fff center / cover no-repeat;
  margin-left: 2%;
  float: left;
  cursor: pointer;
  transition: all 0.4s;
}
.tl_title_box_wrap li:nth-child(4n+1) { margin-left: 0; }

/* 호버 오버레이 */
.tl_title_box_wrap li .bg {
  background: #2c3856;
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: opacity 0.2s ease-out;
}
.tl_title_box_wrap li:hover .bg { opacity: 1; }
.tl_title_box_wrap li:hover {
  box-shadow: 4px 4px 9px rgba(0, 0, 0, 0.15);
  transform: translateY(-25px);
}

/* 텍스트 레이어 */
.tl_title_box_wrap li .txt_wrap {
  width: 100%; height: 100%;
  position: absolute; inset: 0;
  box-sizing: border-box;
  overflow: hidden;
  padding: 40px;
  color: #fff;
  opacity: 1;
  display: table;
  z-index: 2;
  transition: all 0.2s ease-out;
}
.tl_title_box_wrap li .txt_wrap .cell {
  text-align: center;
  width: 100%;
  display: table-cell;
  vertical-align: middle;
}
.tl_title_box_wrap li .txt_wrap .cell i  { font-size: 35px; padding-bottom: 20px; color: #1a1a1a; }
.tl_title_box_wrap li .txt_wrap .cell h2 { font-size: 24px; font-weight: bold; color: #1a1a1a; margin: 0; }
.tl_title_box_wrap li .txt_wrap .cell p  { font-size: 16px; color: #555; padding-top: 50px; word-break: keep-all; line-height: 1.6; }
/* 호버 시 텍스트 색상 */
.tl_title_box_wrap li:hover .txt_wrap .cell i,
.tl_title_box_wrap li:hover .txt_wrap .cell h2,
.tl_title_box_wrap li:hover .txt_wrap .cell p { color: #fff; }

/* ── company_info 반응형 ── */
@media (max-width: 960px) {
  .company_info .img_page  { height: 300px; margin: 0 20px; }
  .company_info .txt_page  { padding: 20px; }
  .company_info .txt_page h2,
  .company_info .txt_page p  { width: 100%; }
  .company_info .txt_page h2 { font-size: 32px; }
  .company_info .Ideology dl { width: 100%; padding-bottom: 30px; clear: both; }
  .company_info .work_page ul li {
    width: 47%;
    margin-bottom: 20px;
    margin-left: 2%;
    margin-right: 0;
  }
  .company_info .work_page ul li:nth-child(2n+2) { margin-right: 0; }
}
@media (max-width: 640px) {
  .company_info .img_page    { height: 300px; margin: 0 20px; }
  .company_info .txt_page    { padding: 20px; }
  .company_info .txt_page h2 { width: 100%; font-size: 32px; }
  .company_info .txt_page p  { width: 100%; }
  .company_info .tl_title_box_wrap li { width: 100%; margin-left: 0; margin-bottom: 3%; }
}


/* ============================================================
   6. 연혁 (history_area)
   ============================================================ */
.history_area { position: relative; width: 100%; padding-top: 37px; }

.history_area .history_point {
  position: absolute;
  left: 50%; top: 0;
  margin-left: -5px;
  bottom: 20px;
  width: 8px;
  background: #f6f6f6;
  overflow: hidden;
}

.history_area dl {
  width: 50%;
  padding-right: 94px;
  padding-left: 20px;
  box-sizing: border-box;
}
.history_area div:nth-child(odd) dl { padding-right: 20px; padding-left: 94px; }

.history_area dt {
  margin-bottom: 20px;
  font-size: 46px;
  line-height: 1.3;
  font-weight: bold;
  color: #555;
}
.history_area dd strong {
  display: block;
  padding-top: 12px;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
  color: var(--bk-primary);
}
.history_area dd p    { display: block; font-size: 18px !important; line-height: 1.8 !important; }
.history_area dd .img_box { display: block; margin-top: 39px; }
.img_box img { max-width: 100%; }

@media (max-width: 960px) {
  .history_area .history_point { left: 10px; margin-left: 0; }
  .history_area dl {
    float: none !important;
    width: 100%;
    padding: 0 0 0 50px;
    text-align: left;
  }
  .history_area div:nth-child(odd) dl { padding-left: 50px; }
  .history_area div + div   { margin-top: 40px; }
  .history_area div:nth-child(2) { margin-top: 0; }
  .history_area dt          { margin-bottom: 20px; font-size: 30px; }
  .history_area dd p br     { display: none; }
  .history_area dd .img_box { margin-top: 20px; }
}


/* ============================================================
   7. 오시는 길 (contact / map_area)
   -- 전역(.contact_area) 및 서브(.sub1-5) 스타일을 통합
   ============================================================ */

/* ── 공통 ── */
.contact_area  { display: flex; flex-flow: wrap; }
.contact_address {
  width: 60%;
  height: auto;
  line-height: 1.7;
  max-width: 1240px;
  clear: both;
}
.contact_address::after {
  content: '';
  visibility: hidden;
  display: block;
  height: 0;
  padding-bottom: 50px;
  clear: both;
}
.contact_address ul { border-bottom: 1px solid #ddd; padding-bottom: 25px; }
.contact_address ul li {  padding:0 !important;text-align: left; color: #555; line-height: 22px; font-size: 16px; }
.contact_address h3 {
  font-size: 20px !important;
  font-weight: 400;
  letter-spacing: -1px;
  color:var(--bk-primary-dk) !important;
  padding-bottom: 10px;
  text-align: left !important;
}
.contact_address h4 {
  font-size: 18px !important;
  font-weight: 400;
  letter-spacing: -1px;
  color:var(--bk-primary-dk);
  padding-bottom: 10px;
  text-align: left !important;
}
.contact_address .bus    { width: 100%; padding: 30px 0 30px 0; }

.contact_map { width: 40%; height: auto; line-height: 1.7; padding-right: 40px; }

/* .sub1-5 — 주소/지도 레이아웃은 전역 스타일과 동일하므로 별도 선언 제거.
   다만 li 폰트 크기 18px 이 전역(16px)과 다를 경우만 재선언 */
.sub1-5 .contact_address ul li { font-size: 18px; text-align: left; }

/* ── map_area ── */
.map_area { position: relative; }
.map_area .txt {
  position: absolute;
  bottom: -90px; left: 50%;
  transform: translateX(-50%);
  width: 1400px;
  z-index: 100;
}
.map_area .txt .txt_wrap { background: #006fce; box-shadow: 3px 3px 3px rgba(0,0,0,0.2); padding: 45px 0; }
.map_area .txt .logo {
  position: absolute; top: 34px; left: 0;
  border-right: 1px solid #1a7dd3;
  text-align: center;
  width: 315px; height: 90px; line-height: 90px;
}
.map_area .txt .contact {
  display: block;
  color: #fff;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -1px;
  line-height: 1.6;
  padding: 0 0 0 405px;
}
.map_area .txt .tx .tel { font-weight: 300; }
.map_area .txt .bt {
  position: absolute; top: 50%; right: 40px;
  margin-top: -35px;
  display: block;
  border-radius: 65px;
  border: 3px solid #fff;
  color: #fff;
  font-size: 20px;
  text-align: center;
  min-width: 220px;
  line-height: 60px; height: 65px;
}

/* ── 반응형 (@max 1400px) ── */
@media (max-width: 1400px) {
  .map_area .txt {
    margin-top: -30px;
    width: 1024px;
  }
  .map_area .txt .txt_wrap { border-radius: 0 0 20px 0; margin: 0 15px; padding: 0 0 30px; }
  .map_area .txt .logo {
    display: block;
    position: relative; top: auto; left: auto;
    border-right: 0;
    width: 100%;
  }
  .map_area .txt .logo::before {
    content: '';
    position: absolute; bottom: 0; left: 50%;
    margin-left: -88px;
    background: #1a7dd3;
    width: 177px; height: 1px;
  }
  .map_area .txt .contact { line-height: 180%; padding: 20px 0 0; text-align: center; }
  .map_area .txt .bt       { position: static; border-radius: 65px; margin: 35px auto 0; width: 150px; }
  .contact_address         { width: 100%; }
  .contact_map             { width: 100%; padding: 30px 0; }
}

/* ── 반응형 (@max 640px) ── */
@media (max-width: 640px) {
  .map_area .txt { position: relative; bottom: auto; left: auto; transform: none; margin-top: -30px; width: auto; }
  .map_area .txt .logo      { position: relative; display: block; top: auto; left: auto; border-right: 0; width: 100%; line-height: 70px; height: 70px; }
  .map_area .txt .logo img  { height: 20px; }
  .map_area .txt .contact   { font-size: 13px; letter-spacing: 0; line-height: 180%; padding: 20px 0 0; text-align: center; clear: both; }
  .map_area .txt .txt_wrap  { border-radius: 0 0 20px 0; margin: 0 15px; padding: 0 0 30px; }
  .map_area .txt .bt        { position: static; border-radius: 65px; border-width: 2px; font-size: 15px; margin: 25px auto 0; width: 150px; line-height: 40px; height: 40px; }
  .contact_address          { width: 100%; }
  .contact_map              { width: 100%; padding: 30px 0; }
}


/* ============================================================
   8. 콘텐츠 레이아웃 (content01 ~ content06)
   ============================================================ */

/* ── content01 ── */
.content01 .box { position: relative; padding-bottom: 80px; display: block; }
.content01 .box .img_right { float: right; }
.content01 .box .txt_wrap {
  position: absolute; right: 0; top: 45px;
  background: #fff;
  padding: 50px;
  width: 60%;
}
.content01 .box .txt_wrap .half-round-tit { display: inline-block; margin-bottom: 20px; }
.content01 .box .txt_wrap .half-round-tit strong {
  color: #1a1a1a; font-size: 22px; font-weight: 500; vertical-align: middle; line-height: 1.6; letter-spacing: 0;
}
.content01 .box .txt_wrap .half-round-tit span {
  display: inline-block;
  width: 35px; height: 35px; line-height: 35px;
  border-radius: 50%;
  text-align: center;
  vertical-align: middle;
  color: #fff; font-size: 16px;
  background: #8abd00;
  margin-right: 10px;
  float: left;
}
.content01 .box .txt_wrap  p    { text-align: justify; }
.content01 .box .txt_wrap02 { position: absolute; left: 0; top: 45px; background: #fff; width: 60%; }

@media (max-width: 960px) {
  .content01 .box .img      { text-align: center; display: block; float: none; clear: both; }
  .content01 .box .img img  { width: 100%; }
  .content01 .box .txt_wrap { width: 100%; padding: 20px; display: block; position: relative; clear: both; }
}

/* ── content02 ── */
.content02 ul li          { width: 50%; float: left; }
.content02 ul li .profile { float: left; padding-bottom: 50px; width: 48%; }
.content02 ul li .profile img { width: 100%; }
.content02 ul li dl       { float: left; padding: 0 40px; width: 52%; }
.content02 ul li dl dt    { font-size: 22px; font-weight: bold; text-align: left; padding-bottom: 20px; color: #1a1a1a; letter-spacing: 0; }
.content02 ul li dl dt dd { margin-left: 10px; font-size: 17px; color: #444; line-height: 1.75; letter-spacing: -0.02em; text-align: left; display: block; clear: both; }

@media (max-width: 1210px) {
  .content02 ul li          { width: 49%; margin-left: 2%; margin-bottom: 6%; }
  .content02 ul li:nth-child(2n+1) { margin-left: 0; }
  .content02 ul li .profile { width: 100%; }
  .content02 ul li dl       { width: 100%; padding: 0 20px; }
}
@media (max-width: 640px) {
  .content02 ul li { width: 100%; margin-left: 0; }
}

/* ── content03 ── */
.content03 li { width: 31.333%; margin-right: 3%; min-height: 300px; float: left; text-align: justify; }
.content03 li:nth-child(3n+3) { margin-right: 0; }
.content03 li .web_icon {
  width: 100px; height: 100px;
  background: #c7c7c7;
  color: #fff;
  display: table;
  margin: 0 auto;
}
.content03 li .web_icon i { text-align: center; font-size: 40px; display: table-cell; vertical-align: middle; }
.content03 li h2    { font-size: 22px; color: #000; display: block; clear: both; padding-bottom: 10px; margin-top: 30px; letter-spacing: 0; text-align: center; }
.content03 li p     { text-align: center; word-break: keep-all; }
.content03 li .icon_img { text-align: center; padding-top: 20px; display: block; }

@media (max-width: 960px) {
  .content03 li   { width: 50%; margin-right: 0; }
  .content03 li p { max-width: 300px; margin: 0 auto; }
}
@media (max-width: 640px) {
  .content03 li   { width: 100%; margin-right: 0; }
}

/* ── content04 ── */
.content04 .point { padding: 0 20px 0 0; }
.content04 .point p {
  font-size: 22px; font-weight: bold;
  padding-left: 30px; color: #1a1a1a;
  background: url(../img/title_icon.png) no-repeat left center;
}
.content04 .point h2 { font-size: 28px; font-weight: 100; color: #f66120; text-align: left; padding: 10px 0 0; }

.content04 .colum           { max-width: 1400px; margin: 0 auto; padding: 30px 0; }
.content04 .colum .left     { width: 50%; float: left; border-right: 1px solid #ddd; padding-right: 50px; }
.content04 .colum .left h2,
.content04 .colum .right h2 { font-size: 20px; color: #000; letter-spacing: 0; padding-bottom: 20px; font-weight: bold; }
.content04 .colum .right    { width: 50%; float: left; padding-left: 50px; line-height: 1.8; }
.content04 .img img         { width: 100%; }

.content04 .content_sub_title {
  margin: 0 auto;
  padding: 30px 0 0;
}
.content04 .content_sub_title::after { content: ''; visibility: hidden; display: block; height: 0; padding-bottom: 50px; clear: both; }
.content04 .content_sub_title .sub_title {
  float: left; display: block;
  width: 25%; line-height: 1.8;
  color: #1a1a1a; font-size: 22px; letter-spacing: 0;
  font-weight: bold; text-align: left;
  padding: 0 0 0 30px;
  background: url(../img/title_icon.png) no-repeat left center;
  box-sizing: border-box;
}
.content04 .content_sub_title .sub_txt      { float: right; width: 75%; }
.content04 .content_sub_title .sub_txt .h2  { font-size: 20px; }
.content04 .content_sub_title .img          { float: left; text-align: right; width: 450px; }

@media (max-width: 960px) {
  .content04 .colum .left               { width: 100%; border: 0; float: none; padding: 0; clear: both; }
  .content04 .colum .right              { width: 100%; padding: 20px 0 0; }
  .content04 .content_sub_title .sub_title { width: 100%; margin-bottom: 20px; clear: both; }
  .content04 .content_sub_title .sub_txt  { float: left; width: 100%; }
}

/* ── content05 ── */
.content05 .photo_box { margin-bottom: 50px; background: #f9f9f9; clear: both; }
.content05 .photo_box .img     { max-width: 50%; float: left; display: block; }
.content05 .photo_box .img img { width: 100%; }
.content05 .photo_box .txt {
  max-width: 50%; float: left;
  padding: 50px; background: #f9f9f9; display: block;
}
.content05 .photo_box .txt h2 { font-size: 24px; padding-top: 50px; letter-spacing: 0; font-weight: bold; text-align: left; }
.content05 .photo_box .txt p  { padding-top: 30px; word-break: keep-all; }

@media (max-width: 960px) {
  .content05 .photo_box .img,
  .content05 .photo_box .txt  { max-width: 100%; display: block; }
  .content05 .photo_box .txt h2 { font-size: 24px; font-weight: bold; }
}

/* ── content06 ── */
.content06 .thumb_box { width: 31.333%; margin-right: 3%; display: block; float: left; }
@media (min-width: 961px) {
  .content06 .thumb_box:nth-child(3n+3) { margin-right: 0; }
}
.content06 .thumb_box .img {
  width: 100%; min-height: 300px;
  background: url(../img/rnd03_thumb01.jpg) no-repeat center / cover;
  clear: both; overflow: hidden; position: relative;
}
.content06 .thumb_box .txt { width: 100%; padding: 20px; text-align: left; clear: both; }
.content06 .thumb_box .txt h2 { font-size: 24px; text-align: center; letter-spacing: 0; font-weight: bold; }
.content06 .thumb_box .txt p  { padding: 20px 0; text-align: center; }

@media (max-width: 960px) {
  .content06 .thumb_box { width: 49%; margin-right: 2%; }
  .content06 .thumb_box:nth-child(2n+2) { margin-right: 0; }
}
@media (max-width: 640px) {
  .content06 .thumb_box { width: 100%; margin: 0; clear: both; float: none; }
}


/* ============================================================
   9. 의료진 소개 (doctor_area)
   ============================================================ */
.btn-adm {
  position: absolute; top: 5px; right: 5px;
  width: 30px; height: 30px;
  line-height: 28px;
  font-size: 16px;
  display: inline-block;
  text-align: center;
  color: tomato;
  border: 1px solid #ddd;
  border-radius: 2px;
  box-sizing: border-box;
  background: #fff;
}

.doctor_area { width: 100%; position: relative; }
.doctor_area .doctor_profile { width: 100%; border-bottom: 1px solid #ddd; padding: 80px 0; }
.doctor_area .doctor-list .thumb {
  float: left;
  width: 320px; height: 410px;
  padding: 0 20px;
  border: 1px solid #d2d2d2;
  background: center / cover;
}
.doctor_area .info       { width: 65%; padding: 20px 0; float: right; }
.doctor_area .info .name { display: block; margin-bottom: 15px; font-size: 23px; color: #222; font-weight: 500; }
.doctor_area .info span  { font-size: 14px; color: #555; font-weight: 300; }
.doctor_area .info .postion  { color: #2352ab; font-weight: 500; }
.doctor_area .info dl dt { display: inline; font-size: 16px; font-weight: 500; line-height: 28px; color: #333; }
.doctor_area .info dl dt::after { content: ':'; display: inline-block; padding: 0 4px; }
.doctor_area .info dl dd { display: inline; font-size: 16px; color: #666; }
.doctor_area .info dl dd::after { content: ''; display: block; }

.doctor_area .schedule         { margin: 34px -1px 0; }
.doctor_area .schedule .surgery{ color: #f00; font-size: 16px; }
.doctor_area .btn-group        { margin-top: 20px; }
.doctor_area .btn-group .btn-rt{ float: right; }
.doctor_area .btn-group .btn-doctor {
  display: inline-block;
  margin: 0 5px;
  padding: 7px;
  width: 120px; height: 40px;
  font-size: 14px; font-weight: 300;
  line-height: 24px; letter-spacing: -0.5px;
  text-align: center;
  border: 1px solid transparent;
}
.doctor_area .btn-group .btn-Introduction { color: #333; border-color: #ddd; background: #f8f8f8; }
.doctor_area .btn-group .btn-reservation  { color: #fff; border-color: #384451; background: #384451; }
.doctor_area .btn-group .btn-reservation span { color: #fff; }

.doctor_area .sub_navi         { width: 100%; margin: 20px auto; border-bottom: 1px solid #ddd; clear: both; }
.doctor_area .sub_navi ul      { padding-top: 50px; }
.doctor_area .sub_navi li      { display: inline-block; margin-left: -3px; width: 19%; }
.doctor_area .sub_navi li a    { display: block; box-sizing: border-box; color: #555; text-align: center; font-size: 17px; position: relative; height: 55px; line-height: 55px; }
.doctor_area .sub_navi li a.on { color: #0ba2b3; border-bottom: 1px solid #0ba2b3; }

.tab_content ul li { display: block; line-height: 2.4; font-weight: 300; font-size: 16px; color: #555; }
.tab_content p {
  line-height: 2.1; color: #555; font-size: 16px;
  background: url(../img/icon_dot.gif) no-repeat left center;
  padding-left: 10px;
}

@media (max-width: 960px) {
  .doctor_area .doctor-list      { float: none; }
  .doctor_area .doctor-list .thumb { float: none; clear: both; display: block; margin: 0 auto; }
  .doctor_area .info             { width: 100%; }
}


/* ============================================================
   10. 외래진료 (process_area)
   ============================================================ */
.process_area .ing_area h2 {
  font-size: 24px; color: #333;
  font-weight: bold;
  margin-bottom: 30px;
  background: url(../img/title_icon.png) no-repeat left center;
  padding-left: 30px;
  text-align: left;
}
.process_area .ing_area ul  { max-width: 1000px; padding-bottom: 80px; margin: 0 auto; }
.process_area .ing_area li  { float: left; width: 25%; text-align: center; }
.process_area .ing_area li:first-child { margin-left: 0; }

.process_area .ing_area .circle {
  border-radius: 50%;
  width: 200px; height: 200px;
  display: table;
  margin: 0 auto;
}
.process_area .ing_area li span { display: block; color: #fff; font-size: 16px; padding-top: 5px; }
.process_area .ing_area li p    { font-size: 13px; color: #f5f5f5; font-weight: 500; display: table-cell; vertical-align: middle; }

/* step 색상 */
.process_area .ing_area .step01 { background: #5a93d9; }
.process_area .ing_area .step02 { background: #099;    }
.process_area .ing_area .step03 { background: #5a93d9; }
.process_area .ing_area .step04 { background: #099;    }
.process_area .ing_area .step05 { background: #5a93d9; }
.process_area .ing_area .step06 { background: #099;    }
.process_area .ing_area .step07 { background: #5a93d9; }

.process_area .ing_area .list_tit h3 { font-size: 20px; padding-top: 20px; font-weight: bold; }
.process_area .ing_area .list_tit p  {
  display: block; padding-left: 10px;
  background: url(../img/icon_dot.gif) no-repeat left 12px;
}

/* ing_area02 */
.process_area .ing_area02 ul     { max-width: 1200px; padding-bottom: 80px; }
.process_area .ing_area02 li     { float: left; width: 14.286%; text-align: center; }
.process_area .ing_area02 .circle02 { border-radius: 50%; width: 145px; height: 145px; display: table; margin: 0 auto; }

@media (max-width: 960px) {
  .process_area .ing_area ul { max-width: 500px; margin: 0 auto; }
  .process_area .ing_area li { width: 50%; margin-bottom: 7%; }
  .process_area .ing_area li:nth-child(2n+1) { margin-left: 0; }
}
@media (max-width: 640px) {
  .process_area .ing_area .circle { width: 180px; height: 180px; }
}


/* ============================================================
   11. 비급여안내 (non-payment_area)
   ============================================================ */
.non-payment_area .notice { text-align: center; margin-bottom: 50px; }
.non-payment_area ul      { padding-bottom: 30px; margin: 0 auto; }
.non-payment_area ul::after { content: ''; visibility: hidden; display: block; height: 0; clear: both; }

/* 열 개수별 너비 */
.non-payment_area .ts2 ul li { width: 50%;              }
.non-payment_area .ts3 ul li { width: 33.333%;          }
.non-payment_area .ts4 ul li { width: 25%;              }
.non-payment_area .ts5 ul li { width: 20%;        margin-top: -1px; }
.non-payment_area .ts6 ul li { width: 16.667%;    margin-top: -1px; }
.non-payment_area .ts7 ul li { width: 14.286%;    margin-top: -1px; }
.non-payment_area .ts8 ul li { width: 12.57%;     margin-top: -1px; }
/* 공통 */
.non-payment_area .ts ul li  { display: block; float: left; text-align: center; border: 1px solid #ddd; margin-left: -1px; }
.non-payment_area .ts ul li a {
  display: block; font-size: 15px; color: #222;
  height: 55px; line-height: 55px; padding: 0;
}
.non-payment_area .ts ul li a.on {
  background: #3181cb; color: #fff;
  box-shadow: 0 15px 15px rgba(65, 71, 143, 0.2);
}

@media (max-width: 640px) {
  .non-payment_area .ts ul li { width: 50%; margin-top: -1px; }
}


/* ============================================================
   12. 입퇴원 (Instructions_area)
   ============================================================ */
.Instructions_area .colum         { border-bottom: 1px solid #ddd; padding: 30px 0; }
.Instructions_area .colum .left   { width: 33%; font-size: 22px; font-weight: 600; text-align: left; float: left; }
.Instructions_area .colum .right  { width: 67%; float: right; }
.Instructions_area .colum .right ul li {
  text-align: left;
  padding-left: 15px;
  background: url(../img/icon_dot.gif) no-repeat left 12px;
  box-sizing: border-box;
}

@media (max-width: 960px) {
  .Instructions_area .colum .left,
  .Instructions_area .colum .right { width: 100%; float: none; clear: both; }
  .Instructions_area .colum .right ul li { padding-left: 13px; }
}


/* ============================================================
   13. 서브페이지 공통 (sub_intro / sub1-1 ~ sub1-5)
   ============================================================ */

/* ── 배너 ── */
.sub1_bannerwrap                { position: relative; }
.sub1_bannerwrap > .bnr_img     { width: 100%; height: 900px; position: relative; }
.sub1_bannerwrap > .bnr_img > img {
  height: 100%;
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.sub1_bannerwrap .imgtextwrap   { position: absolute; top: 20%; left: 0; right: 0; margin: auto; }
.sub1_bannerwrap .bnr_text      { text-align: center; color: #fff; }
.sub1_bannerwrap h2             { font-size: 64px; font-weight: 700; line-height: 80px; color: #fff; }
.sub1_bannerwrap h3             { font-size: 42px; line-height: 80px; color: #fff; }
.sub1_bannerwrap p              { font-size: 16px; line-height: 25px; font-weight: 100; padding: 15px 0; }
.sub1_bannerwrap .bnr_hexagon   { padding-top: 65px; overflow: hidden; margin: 0 auto; width: 795px; }
.sub1_bannerwrap .bnr_hexagon > div { width: 233px; height: 269px; margin: 0 2%; float: left; }
.sub1_bannerwrap .bnr_hexagon img   { width: 100%; margin: 0 auto; }

/* ── sub_intro 섹션 공통 ── */
.sub_intro .section .title_wrap {
  text-align: center;
  padding: 60px 0 30px;
}
.sub_intro .section .title_wrap span           { display: block; }
.sub_intro .section .title_wrap > h4          { font-weight: 100; font-size: 2.5em; line-height: 60px; color: #003262; }
.sub_intro .section .title_wrap > p           { text-align: left; font-size: 16px; line-height: 30px; font-weight: 300; }
.sub_intro .section .title_wrap > p strong    { color: #b2550f; }

/* title_box */
.sub_intro .section .title_wrap > div.title_box {
  width: 30%;
  padding: 5px 10px;
  border-radius: 5px;
  box-shadow: 3px 4px 0 #1564ad;
  text-shadow: 0 1px 0 #528ecc;
  background: linear-gradient(#79bbff, #378de5);
}
.sub_intro .section .title_wrap > div.title_box h2 { font-size: 24px; font-weight: 500; line-height: 40px; color: #fff; text-align: left; }

/* title_wrap2 */
.sub_intro .section .title_wrap2              { padding: 0 0 80px; }
.sub_intro .section .title_wrap2 > h1        { font-size: 30px; font-weight: 300; line-height: 50px; color: #0053c3; }
.sub_intro .section .title_wrap2 > h2        { font-size: 22px; font-weight: 300; line-height: 50px; }
.sub_intro .section .title_wrap2 > h4        { font-family: 'BookkMyungjo'; font-size: 30px; font-weight: 300; line-height: 80px; color: #11a4f8; }
.sub_intro .section .title_wrap2 > p         { font-family: 'BookkMyungjo'; font-size: 19px; line-height: 35px; color: #666; }

/* box1 (애니메이션 그라데이션) */
.sub_intro .section .title_wrap2 .box1 {
  position: relative;
  padding: 30px;
  font-size: 22px; font-weight: 500; line-height: 35px;
  background: #fff;
  overflow: hidden;
  text-align: center;
  color: var(--bk-primary-dk);
}
.sub_intro .section .title_wrap2 .box1::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, #fff 0%, #d9e3f9 49%, #fff 100%);
  opacity: 0;
  animation: fadeGradient 8s ease-in-out infinite;
  z-index: 0;
}
.sub_intro .section .title_wrap2 .box1 > * { position: relative; z-index: 1; }
.sub_intro .section .title_wrap2 .box1 .inner { position: relative; z-index: 2; }

@keyframes fadeGradient {
  0%   { opacity: 0.5; }
  30%  { opacity: 1;   }
  55%  { opacity: 1;   }
  85%  { opacity: 0.5; }
  100% { opacity: 0.5; }
}

/* title_wrap3 */
.sub_intro .section .title_wrap3               { padding: 0 0 50px; }
.sub_intro .section .title_wrap3 span          { display: block; }
.sub_intro .section .title_wrap3 h4            { font-size: 42px; font-weight: 300; line-height: 80px; color: #11a4f8; }
.sub_intro .section .title_wrap3 h5            { font-size: 18px; font-weight: 500; line-height: 32px; color: #002096; }
.sub_intro .section .title_wrap3 h6            { font-size: 16px; font-weight: 500; line-height: 30px; color: #002096; }
.sub_intro .section .title_wrap3 p             { font-size: 20px; font-weight: 300; line-height: 35px; }
.sub_intro .section .title_wrap3 p span        { font-size: 18px; color: #246BCE; }
.sub_intro .section .title_wrap3 .s1_1_3      { width: 100%; padding: 20px; background: #f7f7f7; border: 1px solid #ddd; }

/* ── sub1-1 ── */
.sub1-1 { padding-bottom: 100px; width: 100%; background-size: 100% auto; }

.sub1-1 .art_wrap1              { width: 100%; overflow: hidden; }
.sub1-1 .art_wrap1 h4           { font-family: 'BookkMyungjo'; text-align: center; font-size: 30px; font-weight: 300; line-height: 80px; color: #11a4f8; }
.sub1-1 .art_wrap1 p            { font-size: 22px; font-weight: 300; line-height: 30px; }
.sub1-1 .art_wrap1 span         { display: block; }

.sub1-1 .left_area              { width: 30%; float: left; }
.sub1-1 .right_area             { width: 60%; float: right; margin-left: 20px; }

.sub1-1 .art_wrap2 {
  width: 100%;
  background: linear-gradient(135deg, #fff, #F0F8FF, #fff);
  display: inline-block;
  padding: 40px;
  margin-bottom: 50px;
}
.sub1-1 .art_wrap2 h4    { text-align: center; font-size: 2.8em; font-weight: 600; line-height: 50px; color: #246BCE; }
.sub1-1 .art_wrap2 span  { text-align: left; font-size: 1.5em; line-height: 30px; }

.sub1-1 .bottom_area ul  { width: 100%; margin: 30px 0; display: inline-block; }
.sub1-1 .bottom_area li  { width: 25%; float: left; border: 1px solid #eee; }
.sub1-1 .bottom_area li h5 { color: #e86b3a; }
.sub1-1 .bottom_area li h4,
.sub1-1 .bottom_area li h2,
.sub1-1 .bottom_area li p  { font-size: 22px; font-weight: 300; line-height: 35px; }
.sub1-1 .bottom_area li h4 { color: #e86b3a; }
.sub1-1 .bottom_area li p  { text-align: center; }
.sub1-1 .bottom_area p     { text-align: center; font-size: 24px; font-weight: 300; line-height: 35px; color: #666; }
.sub1-1 .bottom_area h6    { text-align: center; font-size: 20px; font-weight: 300; line-height: 35px; color: #000; }

.sub1-1 li                 { padding: 30px 0; overflow: hidden; }
.sub1-1 li > div > img    { width: 100%; }

.sub1-1 .con1_img {
  margin-left: 50px; font-size: 18px;
  float: left;
  width: 100px; height: 100px;
  border-radius: 100px;
  background: #96856e;
  padding: 40px 0 0;
  color: #fff;
}
.sub1-1 .con1_tbox           { padding-left: 20px; float: left; }
.sub1-1 .con1_tbox > h5     { font-size: 24px; color: #1659a3; line-height: 25px; margin-bottom: 20px; }
.sub1-1 .con1_tbox > p      { font-size: 20px; color: #555; line-height: 25px; }
.sub1-1 .con2_tbox           { width: 100%; text-align: center; }

/* con1wrap */
.sub1-1 .con1wrap .img_left  { width: 50%; float: left; margin-right: 30px; margin-bottom: 60px; }
.sub1-1 .con1wrap .img_left img { width: 100%; }
.sub1-1 .con1wrap .s1_1_3   { width: 100%; padding: 20px; background: #f7f7f7; border: 1px solid #ddd; }
.sub1-1 .con1wrap p          { font-size: 16px; font-weight: 600; line-height: 20px; }
.sub1-1 .con1wrap h1         { font-size: 42px; color: #000; padding-bottom: 20px; width: max-content; line-height: 36px; margin-bottom: 50px; }
.sub1-1 .con1wrap h3         { font-size: 2.3em; font-weight: 600; line-height: 30px; color: #000; padding-bottom: 5px; }
.sub1-1 .con1wrap h5         { text-align: center; font-size: 30px; font-weight: 500; line-height: 40px; }
.sub1-1 .con1wrap h6         { font-size: 18px; font-weight: 300; line-height: 30px; color: #a44d00; }
.sub1-1 .con1wrap dd         { font-size: 24px; font-weight: 600; line-height: 36px; color: #a44d00; }
.sub1-1 .con1wrap .title_wrap h3  { font-family: 'BookkMyungjo'; text-align: center; font-size: 25px; font-weight: 600; line-height: 40px; }
.sub1-1 .con1wrap .title_wrap3 h3 { text-align: center; font-size: 30px; font-weight: 300; line-height: 50px; color: #a44d00; }

/* s4_4_1 */
.sub1-1 .con1wrap .s4_4_1 ul    { display: inline-block; margin: 1% 0; width: 100%; }
.sub1-1 .con1wrap .s4_4_1 ul li { width: 19%; float: left; text-align: center; margin: 0.5%; background: #f7f7f7; font-size: 17px; line-height: 25px; border-radius: 50%; }

/* s7_1 */
.sub1-1 .con1wrap .s7_1 ul    { width: 100%; text-align: center; }
.sub1-1 .con1wrap .s7_1 ul li {
  width: 18%; display: inline-block;
  padding: 20px; margin: 0.5%;
  border: 1px solid #dcdcdc;
  font-size: 19px; line-height: 30px;
  background: linear-gradient(#fff, #f6f6f6);
  box-shadow: inset 0 1px 0 #fff;
}
.sub1-1 .con1wrap .s7_1 ul li a  { color: #000; }
.sub1-1 .con1wrap .s7_1 ul li:hover { background: linear-gradient(#f6f6f6, #fff); }

/* box_area */
.sub1-1 .box_area       { width: 80%; display: inline-block; margin: 0 auto; }
.sub1-1 .box_left_area  { width: 46%; float: left; margin: 2%; }
.sub1-1 .box_left_area img { width: 100%; }
.sub1-1 .box_right_area { width: 46%; float: left; margin: 2%; }

/* system ul */
.sub1-1 .con1wrap ul.system { position: relative; width: 100%; height: 500px; background: url('../img/sub/s1_1_1.png') no-repeat center; color: #000; }
.sub1-1 .con1wrap ul.system p { display: table; width: 318px; margin: 0 auto 20px; margin-top: 30px; background: #fff; }
.sub1-1 .con1wrap ul.system b {
  font-size: 24px; display: table-cell; vertical-align: middle;
  text-align: center; padding: 20px; color: #fff; line-height: 30px;
  border-radius: 30px; background: #b2550f;
}
.sub1-1 .con1wrap ul.system span  { width: 50%; float: left; font-size: 20px; text-align: center; line-height: 50px; font-weight: 500; }
.sub1-1 .con1wrap ul.system em    { display: block; font-weight: normal; }
.sub1-1 .con1wrap ul.system ul    { width: 100%; }
.sub1-1 .con1wrap ul.system ul li { width: 100%; margin: auto 0; padding: 10px 0; }
.sub1-1 .con1wrap ul.system ul li.this { width: 100%; margin: auto 0; padding: 10px 0; margin-top: -60px; }

/* depth2 */
.sub1-1 .con1wrap ul.system .depth2 div {
  margin: 5px 0; padding: 10px 0; width: 100%;
  border: 1px solid #ccd9e3; background: #fff;
  line-height: 26px; text-align: center; font-size: 16px; border-radius: 28px;
}
.sub1-1 .con1wrap ul.system ul.depth2      { position: absolute; left: 175px; top: 130px; }
.sub1-1 .con1wrap ul.system ul.depth2 li  { width: 24%; }

/* depth3 / depth4 (구조 동일) */
.sub1-1 .con1wrap ul.system .depth3 strong,
.sub1-1 .con1wrap ul.system .depth4 strong {
  display: block; width: 100%; height: 55px; line-height: 55px;
  border: 1px solid #ebd3c1; background: #f5f0eb;
  text-align: center; font-size: 20px;
  border-radius: 28px 28px 0 0;
}
.sub1-1 .con1wrap ul.system .depth3 div,
.sub1-1 .con1wrap ul.system .depth4 div {
  padding: 18px 0; width: 100%; display: inline-block;
  border: 1px solid #ebd3c1; border-top: none; background: #fff;
  border-radius: 0 0 28px 28px;
}
.sub1-1 .con1wrap ul.system .depth3 div i,
.sub1-1 .con1wrap ul.system .depth4 div i { font-weight: bold; color: #1468a4; }

.sub1-1 .con1wrap ul.system ul.depth3,
.sub1-1 .con1wrap ul.system ul.depth4 { width: 100%; }
.sub1-1 .con1wrap ul.system ul.depth3 li,
.sub1-1 .con1wrap ul.system ul.depth4 li { width: 48%; margin: 1%; float: left; padding: 10px 0; }

/* ── sub1-2 ── */
.sub1-2 { padding-bottom: 100px; }
.sub1-2 h2 { font-size: 26px; font-weight: 500; line-height: 50px; color: #005196; text-align: left; }
.sub1-2 p  { text-align: left; font-size: 20px; line-height: 35px; }
.sub1-2 ul { width: 100%; }
.sub1-2 ul li {
  font-size: 18px; width: 19%; margin: 0.5%; padding: 10px 20px;
  float: left; text-align: center;
  color: #666; border: 1px solid #ddd; font-weight: bold;
  background: linear-gradient(#f9f9f9, #e9e9e9);
  box-shadow: inset 0 1px 0 #fff;
}
.sub1-2 ul li:hover,
.sub1-2 ul li.this {
  color: #fff;
  border: 1px solid #314179;
  box-shadow: inset 0 1px 0 #7a8eb9;
  background: linear-gradient(#637aad, #5972a7);
}
.sub1-2 .art_wrap2 { display: flex; justify-content: center; flex-wrap: wrap; overflow: hidden; }
.sub1-2 .article   { margin: 0 30px; float: left; }
.sub1-2 .article > div > img { margin: 0 auto; }
.sub1-2 .blueline  { width: 100%; padding: 40px 0; }
.sub1-2 .blueline > div { width: 2px; height: 70px; background: #1659a3; margin: 0 auto; }
.sub1-2 .tbox > h5 { font-size: 24px; color: #1659a3; font-weight: 700; line-height: 40px; text-align: center; }
.sub1-2 .tbox > p  { font-size: 18px; color: #666; line-height: 30px; text-align: center; }

/* ── sub1-3 연혁 ── */
.sub1-3 {
  padding-bottom: 150px; width: 100%;
  background: url('../img/sub1_con3img.jpg') no-repeat center / 100% auto;
}
.sub1-3 .swiper-container.sub_intro { display: none; }
.sub1-3 .btnWrap  { display: none; }
.sub1-3 .con3_sect1 { overflow: hidden; }
.sub1-3 article   { float: left; position: relative; width: 33.33%; height: 220px; }
.sub1-3 .con3_sect1 img { width: 100%; }
.sub1-3 .con3_sect1 .line { position: absolute; width: 2px; height: 100%; background: #ddd; left: 14px; top: 8px; }
.sub1-3 .con3_sect1 .year { float: left; margin-bottom: 20px; font-size: 36px; font-weight: 700; line-height: 40px; color: #1659a3; }
.sub1-3 .con3_sect1 .year::before {
  display: block; float: left; margin-right: 20px;
  position: relative; z-index: 1;
  content: ''; width: 30px; height: 40px;
  background: url(../img/history_icon1.png) center no-repeat;
}
.sub1-3 .con3_sect1 .desc { float: left; margin-bottom: 10px; width: 100%; }
.sub1-3 .con3_sect1 .desc::before {
  display: block; float: left; margin-right: 20px;
  position: relative; z-index: 1;
  content: ''; width: 30px; height: 30px;
  background: url(../img/history_icon2.png) center no-repeat;
}
.sub1-3 .con3_sect1 .desc .date { display: block; float: left; margin-right: 10px; line-height: 30px; color: #999; font-size: 17px; }
.sub1-3 .con3_sect1 .desc p     { float: left; width: 60%; line-height: 30px; color: #999; font-size: 17px; }
.sub1-3 .ie9 { display: none; }

/* ── sub1-4 ── */
.sub1-4 .con4wrap { width: 100%; margin-bottom: 80px; display: inline-block; }
.sub1-4 .con4wrap h3      { text-align: center; font-size: 30px; font-weight: 300; line-height: 50px; color: #000; }
.sub1-4 .con4wrap .tit1   { text-align: left; font-size: 28px; font-weight: 300; line-height: 30px; }
.sub1-4 .con4wrap span    { text-align: left; font-size: 20px; font-weight: 300; line-height: 35px; }
.sub1-4 .con4wrap h5      { text-align: center; font-size: 16px; font-weight: 500; line-height: 32px; color: #656565; }
.sub1-4 .con4wrap h6      { text-align: center; color: #96856e; font-size: 24px; font-weight: 300; line-height: 40px; }
.sub1-4 .con4wrap .movie  { width: 100%; height: calc(34vw - 1px); background: #eee; margin-bottom: 50px; }
.sub1-4 .con4wrap .movie iframe { width: 100%; height: calc(34vw - 1px); }

.sub1-4 .con4wrap .title_wrap2 ul.map    { width: 100%; }
.sub1-4 .con4wrap .title_wrap2 ul.map li { width: 48%; margin: 1%; height: 380px; float: left; }

/* 테두리 figcaption */
.sub1-4 .con4wrap .title_wrap ul li figcaption::after {
  content: '';
  display: block;
  width: calc(100% - 40px); height: calc(100% - 40px);
  border: 1px solid #fff;
  box-sizing: border-box;
  position: absolute; inset: 0;
  margin: auto;
}

/* sub4-4 (공용) */
.sub4-4 .con4wrap .title_wrap ul       { width: 100%; display: inline-block; }
.sub4-4 .con4wrap .title_wrap ul li    { width: 48%; float: left; padding: 30px; margin: 1%; }
.sub4-4 .con4wrap .title_wrap ul li h2 { text-align: center; font-size: 30px; font-weight: 300; line-height: 50px; }

/* ── 서브 반응형 ── */
@media (max-width: 1199px) {
  .sub1-1 { padding-bottom: 80px; }
  .sub1_bannerwrap p > br    { display: block; }
  .sub1-1 .left_area         { width: 100%; margin-bottom: 0; }
  .sub1-1 .left_area > div  { margin: 0 auto; }
  .sub1-1 .left_area img    { width: 100%; }
  .sub1-1 .right_area        { width: 100%; margin-bottom: 0; text-align: left; }
  .sub1-1 .right_area ul     { width: 100%; }
  .sub1-1 .con1_img          { background: #96856e; margin-bottom: 20px; text-align: center; }
  .sub1-1 .con1_tbox > h5   { text-align: left; }
  .sub1-1 .con1_tbox > p    { text-align: left; }
  .sub1-1 .con1wrap h3 span  { display: block; }
  .sub1-2 .tbox > p > br     { display: none; }
  .sub1-2 .article           { width: 31.33%; margin: 0 1%; }
  .sub1-2 .tbox > h5        { word-break: keep-all; }
  .sub_intro .section .title_wrap2 ul { width: 100%; margin: 30px 0; display: inline-block; }
  .sub_intro .section .title_wrap2 li { padding: 20px; width: 100%; border: 1px solid #eee; }
  .sub_intro .section .title_wrap2 span { display: block; }
  .sub_intro .section .title_wrap > div.title_box { width: 100%; }
  .sub1-1 .con1wrap h5 { text-align: left; font-size: 20px; }
}
@media (max-width: 1040px) {
  .sub1-1 .con1wrap ul.system { background: url(../img/sub/s1_1_4.jpg) no-repeat center 20px; }
}
@media (max-width: 1024px) {
  .sub1-3 article { width: 50%; margin-bottom: 20px; padding-left: 30px; }
  .sub1-3 article:nth-child(2n)   { float: right; }
  .sub1-3 article:nth-child(2n-1) { float: left;  }
  .sub1-3 article:nth-child(4),
  .sub1-3 article:nth-child(5),
  .sub1-3 article:nth-child(6)    { margin: 0 0 20px; }
  .sub1-3 .con3_sect1 .line       { left: 44px; }
  .sub1-3 .con3_sect1 .year       { margin-bottom: 20px; font-size: 30px; line-height: 40px; }
  .sub1-3 .con3_sect1 .desc .date { margin-right: 10px; line-height: 30px; font-size: 15px; }
  .sub1-3 .con3_sect1 .desc p     { width: 60%; line-height: 30px; font-size: 15px; }
}
@media (max-width: 980px) {
  .section .title_wrap  { padding: 80px 0; }
  .sub1-2 .blueline     { display: none; }
  .sub_intro .tbox      { position: relative; }
  .tbox::before         { position: absolute; content: ''; width: 70px; height: 2px; background: #1659a3; top: 20px; left: 40px; }
  .sub1-2 .article      { width: 700px; margin: 0 auto; overflow: hidden; padding: 40px 0; }
  .sub1-2 .article > div { float: left; }
  .sub1-2 .tbox         { float: left; padding: 40px; }
  .sub1-2 .tbox > h5   { text-align: left; }
  .sub1-2 .tbox > p    { text-align: left; }
  .sub1-2 .tbox > p > br { display: block; }
  .sub1-2 ul li,
  .sub1-2 ul li:hover,
  .sub1-2 ul li.this    { width: 30%; }
}
@media (max-width: 800px) {
  .sub1_bannerwrap .bnr_hexagon { width: 100%; padding-top: 0; }
  .sub1_bannerwrap .bnr_hexagon > div { width: 31.33%; height: auto; margin: 0 1%; }
  .sub1-1 .bottom_area li { width: 100%; border: 1px solid #eee; }
  .sub4-4 .con4wrap .title_wrap ul li { width: 98%; display: inline-block; }
  .sub1-4 .con4wrap .title_wrap ul    { width: 100%; text-align: center; }
  .sub1-4 .con4wrap .title_wrap ul li { width: 98%; display: inline-block; }
}
@media (max-width: 768px) {
  .section .title_wrap > h4    { font-size: 40px; }
  .section .title_wrap > p     { font-size: 28px; }
  .sub1_bannerwrap > .bnr_img  { height: 800px; }
  .sub1_bannerwrap h2           { font-size: 48px; }
  .sub1_bannerwrap h3           { font-size: 36px; }
  .sub1-1 .left_area            { width: 100%; }
  .sub1-2 .article              { width: 100%; }
  .sub1-2 .article > div       { float: none; }
  .sub1-2 .blueline             { display: block; }
  .sub1-2 .tbox                 { float: none; padding: 0; }
  .sub1-2 .tbox::before        { display: none; }
  .sub1-2 .tbox > h5,
  .sub1-2 .tbox > p            { text-align: center; }
  .sub1-3 .con3_sect1 .desc    { margin-bottom: 10px; }
  .sub1-3 .con3_sect1 .desc p  { width: 58%; }
  .sub1-3 .con3_sect1 .year::before { margin-right: 10px; background-size: 24px auto; }
  .sub1-3 .con3_sect1 .desc::before { margin-right: 10px; background-size: 14px auto; }
  .sub1-1 .con1wrap .s7_1 ul li {
    width: 48%; float: left; border-radius: 5px; border: 1px solid #3b6e22;
    font-size: 22px; line-height: 30px;
    box-shadow: inset 0 1px 0 #9acc85;
    background: linear-gradient(#74ad5a, #68a54b);
  }
  .sub1-1 .con1wrap .s7_1 ul li a   { color: #fff; }
  .sub1-1 .con1wrap .s7_1 ul li:hover { background: linear-gradient(#68a54b, #74ad5a); }
  .sub4-4 .con4wrap .title_wrap ul li { width: 98%; float: left; }
}
@media (max-width: 600px) {
  .sub1-3 .con3_sect1            { display: none; }
  .sub1-3 .swiper-container.sub_intro { display: block; }
  .sub1-3 .btnWrap               { display: block; }
  .sub_intro .section .title_wrap > h4 { font-size: 30px; line-height: 30px; }
  .sub_intro .section .title_wrap > p  { font-size: 18px; line-height: 30px; }
  .sub1_bannerwrap > .bnr_img    { height: 600px; }
  .sub1_bannerwrap h2             { font-size: 36px; line-height: 45px; }
  .sub1_bannerwrap h3             { font-size: 26px; line-height: 45px; }
  .sub1_bannerwrap p              { font-size: 14px; }
  .sub1-1 .con1_tbox             { width: 100%; padding-left: 0; }
  .sub1-1 .con1_tbox > h5       { font-size: 22px; }
  .sub1-1 .con1_tbox > p        { font-size: 16px; }
  .sub1-1 .art_wrap2             { padding: 30px 50px; }
  .sub1-1 .con1wrap .img_left    { width: 100%; float: left; margin: 0 0 30px; }
  .sub1-2 .tbox > h5            { font-size: 17px; }
  .sub1-2 .tbox > p             { font-size: 13px; }
  .sub1-2 .blueline > div        { height: 40px; }
  .sub1-2 .blueline              { padding: 20px 0; }
}
@media (max-width: 480px) {
  .sub_intro .section .title_wrap > h4 { font-size: 22px; font-weight: 700; line-height: 40px; color: #333; }
  .sub_intro .section .title_wrap > p  { font-size: 18px; line-height: 35px; color: #666; }
  .sub1_bannerwrap > .bnr_img    { height: 500px; }
  .sub1_bannerwrap h2             { font-size: 28px; line-height: 40px; }
  .sub1_bannerwrap h3             { font-size: 18px; line-height: 30px; }
  .sub1_bannerwrap p              { font-size: 12px; line-height: 20px; padding: 5px 0; }
  .sub_intro .section .title_wrap2 > h4 { font-size: 24px; line-height: 40px; }
  .sub1-1 .con1wrap h5           { font-size: 20px; }
}
@media (max-width: 450px) {
  .sub1-1 .box_area              { width: 100%; }
  .sub1-1 .box_left_area,
  .sub1-1 .box_right_area        { width: 100%; float: left; margin: 2%; }
}
@media (max-width: 400px) {
  .sub_intro .section .title_wrap img { width: 100%; }
}
@media (max-width: 360px) {
  .sub1_bannerwrap .imgtextwrap  { top: 22%; }
}

/* system2 / system1 — 1040px 이하 반응형 */
@media (max-width: 1040px) {
  .system2,
  .system1 { position: relative; width: 100%; display: table; }

  .system2 .sys_tit1,
  .system1 .sys_tit1 { width: 100%; margin: 0 auto 20px; font-size: 22px; display: block; text-align: center; padding: 20px; color: #fff; line-height: 30px; border-radius: 10px; }
  .system2 .sys_tit2,
  .system1 .sys_tit2 { width: 100%; margin: 0 auto 20px; font-size: 20px; display: block; text-align: center; padding: 10px; color: #6a3106; line-height: 30px; border-radius: 10px; border: 1px solid #ebd3c1; background: #f5f0eb; }

  .system2 ul.sys_side,
  .system1 ul.sys_side { width: 100%; position: relative; }
  .system2 ul.sys_side li,
  .system1 ul.sys_side li { font-size: 16px; border: 3px solid #0047AB; padding: 10px 0; margin: 5px 0; border-radius: 10px; }

  .system2 .bottom,
  .system1 .bottom { width: 100%; position: relative; margin-top: 150px; display: block; }
  .system2 .bottom .sys_half,
  .system1 .bottom .sys_half { width: 100%; }
  .system2 .bottom .sys_half .sys_tit3,
  .system1 .bottom .sys_half .sys_tit3 { width: 100%; margin: 0 auto 20px; font-size: 20px; display: block; text-align: center; padding: 15px; color: #fff; line-height: 30px; border-radius: 10px; background: #8d5022; }
  .system2 .bottom .sys_half .sys_tit4,
  .system1 .bottom .sys_half .sys_tit4 { width: 100%; margin: 0 auto 20px; font-size: 18px; display: block; text-align: center; padding: 10px; color: #000; line-height: 30px; border-radius: 10px; border: 1px solid #ebd3c1; background: #f5f0eb; }
  .system2 .bottom .sys_half .sys_tit5,
  .system1 .bottom .sys_half .sys_tit5 { width: 100%; margin: 0 auto 20px; font-size: 16px; display: block; text-align: center; padding: 10px; color: #000; line-height: 30px; border-radius: 10px; background: #f5dede; }

  .system2 ul.sys_side2,
  .system2 ul.sys_side3,
  .system1 ul.sys_side2,
  .system1 ul.sys_side3 { width: 100%; text-align: center; }
  .system2 ul.sys_side2 li,
  .system1 ul.sys_side2 li { background: #fff; width: 100%; display: inline-block; font-size: 14px; border: 1px solid #b2550f; padding: 10px 0; margin: 0.5% 0; border-radius: 10px; }
  .system2 ul.sys_side3 li,
  .system1 ul.sys_side3 li { width: 100%; display: inline-block; font-size: 14px; background: #fff; border: 1px solid #b2550f; padding: 10px 0; margin: 0.5% 0; border-radius: 10px; }
}
@media (max-width: 640px) {
  .sub1-1 .con1wrap ul.system span { width: 100%; }
  .system2 .bottom ul.sys_half li,
  .system1 .bottom ul.sys_half li  { width: 100%; float: left; margin: 0.5%; }
  .system1 .bottom .sys_tit1       { width: 100%; }
}


/* ============================================================
   14. 테이블
   ============================================================ */

/* ── s1_3_1_table ── */
.s1_3_1_table             { width: 100%; }
.s1_3_1_table table       { width: 100%; margin: 24px 0; }
.s1_3_1_table th          { border: 1px solid #e2e2e2; background: var(--bg-soft); text-align: center; padding: 15px; color: var(--bk-text); font-size: 20px; line-height: 40px; }
.s1_3_1_table td          { border: 1px solid #e2e2e2; text-align: center; padding: 15px; color: #666; font-size: 18px; line-height: 30px; }
.s1_3_1_table td.this     { font-weight: 500; color: var(--bk-primary-dk); }
.s1_3_1_table td.left     { text-align: left; padding: 20px; }
.s1_3_1_table td.right    { width: 50%; text-align: right; border-left-color: #fff; padding-right: 20px; }
.s1_3_1_table td p        { color: #6a3106; font-weight: bold; }
.s1_3_1_table .color      { color: #000; }

/* ── s1_3_2_table ── */
.s1_3_2_table             { width: 100%; }
.s1_3_2_table table       { width: 100%; margin: 24px 0; }
.s1_3_2_table th          { border: 1px solid #b2550f; background: #b2550f; text-align: center; padding: 15px 20px; color: #fff; font-size: 20px; line-height: 40px; }
.s1_3_2_table th.this     { background: #f5f5f5; padding: 15px 0; color: #666; font-size: 20px; line-height: 30px; }
.s1_3_2_table td          { padding: 15px 20px; color: #666; font-size: 18px; line-height: 30px; background: #faf6e9; }
.s1_3_2_table td.this     { border: 1px solid #e1dbd3; padding: 15px 20px; color: #000; font-size: 18px; line-height: 30px; }
.s1_3_2_table td span     { display: block; }
.s1_3_2_table td p        { color: #3652ff; }
.s1_3_2_table td.color    { border-top: 2px solid #6e6e6e; background: #fefdec; color: #000; font-size: 20px; line-height: 30px; text-align: center; }
.s1_3_2_table td.color2   { background: #f5f5f5; color: #000; font-size: 18px; line-height: 35px; text-align: left; }
.s1_3_2_table td img      { float: left; margin: 20px; border-radius: 10px; border: 5px solid #fff; }

/* ── s2_2_table ── */
.s2_2_table               { width: 100%; }
.s2_2_table table         { width: 100%; margin-bottom: 24px; }
.s2_2_table th            { border: 1px solid #e2e2e2; background: #f5f5f5; text-align: center; padding: 15px; color: #666; font-size: 20px; line-height: 40px; }
.s2_2_table td            { border: 1px solid #e2e2e2; text-align: left; padding: 15px; color: #666; font-size: 18px; line-height: 30px; }
.s2_2_table td p          { color: #6a3106; font-weight: bold; }
.s2_2_table td.center     { padding: 30px 0; text-align: center; }

/* ── s2_1_table ── */
.s2_1_table               { width: 100%; margin: 1% 0; }
.s2_1_table table         { width: 100%; border-collapse: collapse; border-top: 1px solid #ccc; border-left: 1px solid #ccc; }
.s2_1_table th            { color: #fff; background: #525252; border-bottom: 1px solid #ccc; border-right: 1px solid #ccc; font-size: 18px; padding: 24px; vertical-align: middle; }
.s2_1_table th.blue       { background: #0076cb; }
.s2_1_table tr            { border-bottom: 1px solid #ccc; }
.s2_1_table td            { font-size: 18px; padding: 20px; border-right: 1px solid #ccc; transition: all 0.2s; }
.s2_1_table td.grey       { border-right: 1px solid #ccc; padding: 15px 30px; color: #666; font-size: 16px; background: #f7f7f7; line-height: 25px; }

/* ── s1_5_table ── */
.s1_5_table               { width: 100%; }
.s1_5_table table         { margin-bottom: 24px; width: 100%; }
.s1_5_table th            { color: #fff; background: var(--bk-primary); border-bottom: 1px solid #ccc; font-size: 16px; padding: 15px 30px; text-align: center; }
.s1_5_table td            { border: 1px solid #e2e2e2; border-left: 5px solid #6a3106; text-align: left; padding: 15px 30px; color: #666; font-size: 16px; }
.s1_5_table td.center     { padding: 0 50px; text-align: center; border: none; }
.s1_5_table td.grey       { border: none; text-align: left; padding: 15px 30px; color: #666; font-size: 16px; background: #f7f7f7; line-height: 25px; }
.s1_5_table th i          { font-size: 1.5em; vertical-align: middle; }

/* ── prayer 테이블 ── */
.prayer-wrap { margin: 0 auto; padding: 10px 16px 60px; font-family: 'Noto Sans KR', sans-serif; }

.tbl-section-header { display: flex; align-items: center; gap: 12px; margin: 44px 0 14px; }
.tbl-section-icon   { width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #7a5c2e, #c9952a); border-radius: 9px; font-size: 1rem; flex-shrink: 0; }
.tbl-section-title  { font-family: 'BookkMyungjo'; font-size: 1.3rem; font-weight: 600; color: #2c1a08; letter-spacing: 0.04em; }

.tbl-card           { background: #fff; overflow: hidden; margin-bottom: 8px; }

.tbl-main           { width: 100%; border-collapse: collapse; }
.tbl-main thead tr  { background: linear-gradient(90deg, #3a2608, #6b4318); }
.tbl-main thead th  { padding: 14px 22px; font-size: 1.1rem; font-weight: 400; letter-spacing: 0.22em; color: #e8c97a; text-align: left; }
.tbl-main tbody tr  { border-bottom: 1px solid #f2ece0; transition: background 0.18s; }
.tbl-main tbody tr:last-child { border-bottom: none; }
.tbl-main tbody td  { padding: 14px 22px; font-size: 1.1rem; color: #3a2610; vertical-align: middle; line-height: 1.6; }
.tbl-main tbody td:first-child { font-weight: 500; color: #5a3915; width: 36%; position: relative; padding-left: 18px; }
.tbl-main tbody td:last-child  { color: #7a6040; font-size: 1.1rem; }

.tbl-grid           { width: 100%; border-collapse: collapse; }
.tbl-grid tbody tr  { border-bottom: 1px solid #f2ece0; transition: background 0.18s; }
.tbl-grid tbody tr:last-child  { border-bottom: none; }
.tbl-grid tbody tr:hover       { background: #fdf7ea; }
.tbl-grid tbody tr:nth-child(even)       { background: #faf5ee; }
.tbl-grid tbody tr:nth-child(even):hover { background: #fdf7ea; }
.tbl-grid tbody td  { padding: 13px 20px; font-size: 1.1rem; color: #3a2610; width: 50%; vertical-align: middle; line-height: 1.6; text-align: center; position: relative; padding-left: 16px; }
.tbl-grid tbody td + td { border-left: 1px solid #f2ece0; }

.tbl-divider { display: flex; align-items: center; gap: 10px; margin: 48px 0 0; color: #c9a84c; font-size: 0.7rem; letter-spacing: 0.3em; }
.tbl-divider::before, .tbl-divider::after { content: ''; flex: 1; height: 1px; background: linear-gradient(to right, transparent, #d4b87a55, transparent); }

.prayer-notice { margin-top: 32px; padding: 16px 20px; background: #faf5e9; border-left: 3px solid #c9a84c; border-radius: 0 8px 8px 0; font-size: 0.84rem; color: #7a6040; line-height: 1.7; }

/* ── 테이블 반응형 (@max 670px) ── */
@media (max-width: 670px) {
  /* s1_3_1_table */
  .s1_3_1_table table  { width: 100%; }
  .s1_3_1_table col    { width: 100%; }
  .s1_3_1_table tr     { display: block; width: 100%; border-bottom: 2px solid #000; }
  .s1_3_1_table th,
  .s1_3_1_table td     { display: block; width: 100%; padding: 10px 20px; border-width: 0 0 1px; }
  .s1_3_1_table td.left { font-size: 14px; text-align: left; }

  /* s1_3_2_table */
  .s1_3_2_table col    { width: 100%; }
  .s1_3_2_table tr     { display: block; width: 100%; }
  .s1_3_2_table th,
  .s1_3_2_table td     { display: block; width: 100%; padding: 10px 20px; border-width: 0 0 1px; }

  /* s2_1_table (가로 스크롤) */
  .s2_1_table tr       { width: 100%; display: inline-block; }
  .s2_1_table thead    { display: block; width: 50%; float: left; }
  .s2_1_table tbody    { display: block; width: 50%; overflow-x: auto; white-space: nowrap; }
  .s2_1_table th       { display: block; padding: 10px 20px; width: auto; }
  .s2_1_table th.blue  { line-height: 25px; padding: 15px 30px; }
  .s2_1_table td       { display: block; text-align: center; padding: 10px 20px; border-bottom: 1px solid #ccc; }

  /* s2_2_table */
  .s2_2_table col      { width: 100%; }
  .s2_2_table tr       { display: block; width: 100%; border-bottom: 2px solid #000; }
  .s2_2_table th,
  .s2_2_table td       { display: block; width: 100%; padding: 10px 20px; border-width: 1px; }
  .s2_2_table td p     { text-align: center !important; font-size: 18px !important; }

  /* s1_5_table */
  .s1_5_table col      { width: 100%; }
  .s1_5_table tr       { display: block; width: 100%; border-width: 0; }
  .s1_5_table th,
  .s1_5_table td       { display: block; width: 100%; text-align: center; padding: 10px 20px; border: 0; }
  .s1_5_table td       { background: #f6f6f6; }

  /* prayer 테이블 — 600px */
  .s1_3_1_table th { padding: 20px; }
  .s1_3_1_table td { padding: 20px; }
}


/* ============================================================
   15. 명상 (meditation / circle)
   ============================================================ */

/* ── circle 그룹 ── */
.img-circle-wrap {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 80px;
  width: 100%;
  flex-wrap: wrap;
  padding: 30px 0;
}
.circle-item { display: flex; flex-direction: column; align-items: center; gap: 30px; }
.circle {
  width: 180px; height: 180px;
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; flex-shrink: 0;
  color: #fff;
  box-shadow: inset 0 -3px 7px #29bbff;
  background: linear-gradient(#2dabf9, #0688fa);
}
.circle .en   { font-size: 18px; font-weight: 700; color: yellow; letter-spacing: 2px; }
.circle .ko   { font-size: 30px; font-weight: 700; color: #fff; margin-bottom: 5px; }
.circle .desc { font-family: 'BookkMyungjo'; font-size: 20px; color: #eee; line-height: 1.4; font-weight: 700; }
.circlebot    { width: 250px; text-align: center; font-size: 18px !important; line-height: 1.8; color: #2a4a40; margin: 0; }

/* ── meditation list ── */
ul.meditation-list { list-style: none; margin: 50px 0 0; padding: 0; display: flex; flex-wrap: wrap; column-gap: 5px; row-gap: 5px; }
ul.meditation-list > li {
  width: calc(25% - 4px);
  box-sizing: border-box;
  background: rgba(255,255,255,0.9);
  border: 1px solid #c8e6d8;
  border-radius: 8px;
  padding: 18px 10px;
  text-align: center;
  font-size: 15px; font-weight: 500; line-height: 1.5;
  color: #2a4a40;
  list-style: none;
  margin: 0;
}

/* ── 반응형 ── */
@media (max-width: 720px) {
  .img-circle-wrap     { gap: 20px; }
  .circle              { width: 130px; height: 130px; }
  .circle .ko          { font-size: 24px; }
  .circle .en          { font-size: 11px; }
  .circle .desc        { font-size: 13px; }
  .circlebot           { width: 130px; font-size: 13px; }
  ul.meditation-list > li { width: calc(33.333% - 4px); }
}
@media (max-width: 480px) {
  .img-circle-wrap     { flex-direction: column; align-items: center; gap: 20px; }
  .circle              { width: 140px; height: 140px; }
  .circle .ko          { font-size: 26px; }
  .circle .en          { font-size: 12px; }
  .circlebot           { width: 200px; font-size: 14px; }
  ul.meditation-list > li { width: calc(50% - 3px); }
}


/* ============================================================
   16. prayer / jong 컴포넌트
   ============================================================ */

/* ── jong ── */
.jong-wrap { max-width: 1400px; margin: 32px auto 60px; padding: 0 20px; }
.jong-wrap h2 { font-size: 1.3rem !important; color: var(--bk-text); font-family: 'BookkMyungjo'; margin-bottom: 10px; }
.jong-wrap p  { font-size: 1rem !important; color: var(--bk-text); font-family: 'BookkMyungjo'; margin-bottom: 20px; }
.jong-wrap .page-sub { font-size: 0.82rem; color: var(--bk-muted); text-align: center; margin-bottom: 24px; }

/* ── 카드 ── */
.j-card           { border: 1px solid var(--bk-border); overflow: hidden; margin-bottom: 50px; }
.j-ch             { padding: 13px 20px; color: #fff; text-align: center; }
.j-ch h2          { font-size: 1.1rem; font-weight: 700; letter-spacing: 2px; }
.j-ch .sub        { font-size: 0.8rem; color: rgba(255,255,255,0.75); margin-top: 3px; }
.bg-dk            { background: var(--bk-primary-dk); }
.bg-md            { background: var(--bk-primary); }
.bg-gdk           { background: var(--bk-green-dk); }

/* ── j-table ── */
.j-table                       { width: 100%; border-collapse: collapse; font-size: 1rem; text-align: center; }
.j-table th, .j-table td       { padding: 11px 16px; border-bottom: 1px solid var(--border-light); text-align: center; vertical-align: middle; }
.j-table tr:last-child th,
.j-table tr:last-child td      { border-bottom: none; }
.j-table .col-head             { background: var(--bg-soft); color: var(--bk-text); font-weight: 700; }
.j-table .role-cell            { font-weight: 700; color: var(--bk-primary-dk); }
.j-table .group-hd             { background: var(--bg-soft); color: var(--bk-text); font-weight: 700; letter-spacing: 2px; padding: 12px 16px; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.15); }
.j-table tr:first-child .group-hd { border-top: none; }
.j-table .grp-role             { color: var(--bk-primary-d2026-05-11k); font-weight: 700; }
.j-table .grp-name             { font-weight: 700; color: var(--bk-text); }
.j-table .left             {text-align:left;line-height:1.8;}
.j-table .grp-tmpl             { color: var(--bk-text); }
.j-table .grp-last             { border-bottom: 2px solid var(--bk-bg-dk); }

/* jong 반응형 */
@media (max-width: 1024px) { .main-cols  { grid-template-columns: 1fr; } }
@media (max-width: 640px)  {
  .dept-grid  { grid-template-columns: repeat(2, 1fr); }
  .gyogu-grid { grid-template-columns: repeat(2, 1fr); }
  .jb-grid    { grid-template-columns: 1fr; }
  .page-wrap  { padding: 16px 14px 40px; }
}




.timeline-wrap { padding: 0.5rem 0;}
.tl-item {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 0.5px solid var(--bk-border);
  align-items: flex-start;
}
.tl-item:last-child { border-bottom: none; }
.tl-year {
  min-width: 90px;
  font-size: 14px;
  font-weight: 500;
  color: var(--bk-primary-dk);
  padding-top: 2px;
  flex-shrink: 0;
}
.tl-desc {
  font-size: 15px;
  color: var(--bk-dark);
  line-height: 1.65;
}
.tl-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

@media (min-width: 520px) {
  .desktop-table { display: table;width:100%;}
  .mobile-list { display: none; }
}
@media (max-width: 519px) {
  .desktop-table { display: none; }
  .mobile-list { display: block; }
  .tl-year {max-width: 90px;}
}

.dt-wrap { overflow-x: auto; }
.dt-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.dt-wrap th {
  background: var(--bk-bg);
  color: var(--bk-text);
  font-weight: 500;
  padding: 10px 14px;
  border-bottom: 0.5px solid var(--bk-border);
  text-align: center;
}
.dt-wrap td {
  padding: 10px 14px;
  border-bottom: 0.5px solid var(--bk-border);
}
.dt-wrap tr:last-child td { border-bottom: none; }
.dt-wrap .yr { color: var(--bk-text); font-weight: 500; white-space: nowrap; text-align: center; }
.dt-wrap .desc { color: var(--bk-text); line-height: 1.7; }


/* ============================================================
   17. 기타 컴포넌트
   ============================================================ */

/* ── s4_1 ── */
.s4_1 ul { width: 100%; margin: 30px 0; text-align: center; }
.s4_1 ul li {
  padding: 40px 150px;
  border-radius: 200px;
  text-align: center;
  margin: 20px;
  background-image: linear-gradient(to right, #9dddf7 0%, #fff 51%, #9dddf7 100%);
  text-shadow: 0 1px 0 #fff;
  display: inline-block;
}
.s4_1 ul li .tit  { font-size: 30px; color: #000; font-weight: 500; }
.s4_1 ul li .tit2 { font-size: 22px; font-weight: 300; line-height: 35px; }

@media (max-width: 800px) {
  .s4_1 ul li          { width: 100%; border-radius: 50px; text-align: center; margin: 1%; padding: 40px; }
  .s4_1 ul li .tit     { font-size: 35px; }
  .s4_1 ul li .tit2    { font-size: 30px; }
}

/* ── s5_1 ── */
.s5_1 ul    { width: 100%; }
.s5_1 ul li { float: left; background: #eef9e8; font-size: 25px; line-height: 30px; color: #277500; }

/* ── s5_6 ── */
.sub_intro .section .title_wrap2 .s5_6 ul    { width: 100%; }
.sub_intro .section .title_wrap2 .s5_6 ul li {
  float: left; width: 48%; margin: 1%;
  border-radius: 20px;
  background: #f2eed7;
  border: 1px solid #cfc690;
  font-size: 18px; line-height: 30px;
}
.sub_intro .section .title_wrap2 .s5_6 ul li p { font-size: 22px; line-height: 50px; }

/* ── s5_6_1 ── */
.sub_intro .section .title_wrap2 .s5_6_1 ul    { width: 100%; }
.sub_intro .section .title_wrap2 .s5_6_1 ul li {
  float: left; width: 18%; margin: 1%;
  border-radius: 20px;
  background: #f5f5f5;
  font-size: 16px; line-height: 30px;
}
.sub_intro .section .title_wrap2 .s5_6_1 ul li p { font-size: 20px; line-height: 50px; }








/* ─── MAIN WRAP ─── */
.org-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0 0 0;
}

/* ─── SECTION TITLE ─── */
.sec-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--bk-primary-dk);
  letter-spacing: 3px;
  text-align: center;
  margin: 80px 0 50px 0;
  padding-bottom: 30px;
  position: relative;
}
.sec-title::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--bk-primary);
}

/* ─── ORG CHART CONTAINER ─── */
.org-chart {
  border-radius: 4px;
  padding: 32px 0;
  overflow-x: auto;
background: url('../img/sub/s1_3.png') no-repeat center top 30px;
position: relative;
  z-index: 0;
}

/* ─── CHART INNER (min-width for scroll) ─── */
.chart-inner {
  min-width: 680px;
}

/* ─── ROW / FLEX HELPERS ─── */
.row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
  position: relative;
}
.row + .row { margin-top: 0; }
.col-center { display: flex; flex-direction: column; align-items: center; }

/* ─── CONNECTOR LINES ─── */
.v-line {
  width: 1px;
  margin: 0 auto;
}
.h-line {
  height: 1px;
  background: var(--bk-border);
  flex: 1;
}
.connector-row {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0;
  padding: 0 60px;
}
.connector-block {
  display: flex;
  align-items: center;
  flex: 1;
}
.connector-block.left { justify-content: flex-end; }
.connector-block.right { justify-content: flex-start; }

/* ─── NODE BOX ─── */
.node {
  border: 1px solid var(--bk-border);
  border-radius: 2px;
  padding: 20px;
  min-width: 230px;
  max-width: 250px;
  text-align: center;
  position: relative;
z-index: 1; 
  background: var(--bk-white);
}
.node.primary {
  background: var(--bk-primary-dk);
  border-color: var(--bk-primary-dk);
  color: #fff;
  min-width: 230px;
}
.node.primary .node-title { color: #fff; }
.node.primary .node-row { color: rgba(255,255,255,0.85); }
.node.secondary {
  background: var(--bk-white);
  border-color: var(--bk-primary);
}
.node.gold {
  background: var(--bk-gold-lt);
  border-color: var(--bk-gold);
  background: var(--bk-white);
}
.node.green {
  background: var(--bk-white);
  border-color: var(--bk-border);
  background: var(--bk-white);
}

.node-title {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--bk-primary-dk);
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--bk-border);
}
.node.primary .node-title { border-bottom-color: rgba(255,255,255,0.2); }
.node.gold .node-title { color: var(--bk-primary-dk); rgba(255,255,255,0.2);  }
.node.green .node-title { color: var(--bk-green); rgba(255,255,255,0.2);  }

.node-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 1rem;
  color: var(--bk-muted);
  padding: 5px 0;
  border-top: 1px solid transparent;
  gap: 8px;
}
.node-row:first-of-type { border-top: none; }
.node-row .role {
  color: var(--bk-muted);
  font-size: 1rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.node-row .name {
  font-weight: 600;
  color: var(--bk-text);
  font-size: 1rem;
  text-align: right;
}
.node.primary .node-row .name { color: #fff; }
.node.primary .node-row .role { color: var(--bk-yellow); }
.node.secondary .node-row .name { color: var(--bk-text); }
.node.gold .node-row .name {color: var(--bk-text); }
.node.green .node-row .name { color: var(--bk-text); }

.node-row .role-sub {
  font-size: 1rem;
  color: #999;
  display: block;
  margin-top: 1px;
}

/* ─── TIGHT LIST variant ─── */
.node-list {
  margin-top: 4px;
  font-size: 1rem;
  color: var(--bk-muted);
  text-align: left;
}
.node-list li {
  display: flex;
  justify-content: space-between;
  padding: 0;
  list-style: none;
	line-height:1.3;
}
.node-list li .nm { font-weight: 600; color: var(--bk-text); font-size: 0.74rem; }

/* ─── LEVEL SPACERS ─── */
.lv { height: 20px; }
.lv-sm { height: 10px; }

/* ─── BRANCH LINE SYSTEM ─── */
.branch-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.branch-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  padding: 0 8px;
}
.branch-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

/* SVG lines */
.svg-connector {
  overflow: visible;
  display: block;
}

/* ─── TABLE SECTIONS (for 총무원 / 교구) ─── */
.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
@media (max-width: 700px) {
  .section-grid { grid-template-columns: 1fr; }
}

.info-card {
  background: var(--bk-white);
  border: 1px solid var(--bk-border);
  border-radius: 4px;
  overflow: hidden;
}
.info-card-head {
  background: var(--bk-primary-dk);
  color: #fff;
  padding: 10px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-align: center;
}
.info-card-head.gold-head { background: var(--bk-gold); }
.info-card-head.green-head { background: var(--bk-green); }

.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
}
.info-table tr { border-bottom: 1px solid #f0ece6; }
.info-table tr:last-child { border-bottom: none; }
.info-table td {
  padding: 7px 14px;
  color: var(--bk-text);
  vertical-align: middle;
}
.info-table .td-role {
  color: var(--bk-muted);
  font-size: 0.74rem;
  width: 34%;
  white-space: nowrap;
}
.info-table .td-role-2col {
  color: var(--bk-primary-dk);
  font-weight: 600;
  font-size: 0.76rem;
  width: 30%;
  white-space: nowrap;
}
.info-table .td-name {
  font-weight: 700;
  color: var(--bk-primary-dk);
  font-size: 0.82rem;
}
.info-table .td-temple {
  color: var(--bk-muted);
  font-size: 0.75rem;
}
.info-table .td-dept {
  background: #f7f5f2;
  color: var(--bk-text);
  font-weight: 600;
  font-size: 0.76rem;
}
.info-table tr:nth-child(even) { background: #faf9f7; }

/* ─── LEGEND BOX ─── */
.notice-box {
  background: var(--bk-primary-lt);
  border: 1px solid #cad9ec;
  border-radius: 4px;
  padding: 14px 18px;
  font-size: 1rem;
  color: var(--bk-primary-dk);
  margin-bottom: 50px;
  letter-spacing: 0.5px;
  line-height: 1.9;
	text-align:center;
}
.notice-box strong {color: var(--bk-text);}

/* ════════════════════════════════════════════════
   조직도 모바일 반응형 패치
   기존 CSS 파일 하단에 추가하거나 별도 파일로 로드
   ════════════════════════════════════════════════ */

@media (max-width: 760px) {

  /* ─── 전체 래퍼 ─── */
  .org-wrap {
    padding: 20px 0 0 0;
  }

  /* ─── 섹션 타이틀 ─── */
  .sec-title {
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin: 40px 0 30px 0;
  }

  /* ─── 차트 컨테이너: 가로 스크롤 제거, 세로 흐름으로 ─── */
  .org-chart {
    padding: 20px 16px;
    background-position: center top 20px;
    background-size: 90% auto;   /* 배경 이미지가 있다면 비율 조정 */
    overflow-x: hidden;           /* 가로 스크롤 차단 */
  }

  /* ─── chart-inner: 최소폭 해제 ─── */
  .chart-inner {
    min-width: 0;
    width: 100%;
  }

  /* ─── 행 레이아웃: 가로 → 세로 스택 ─── */
  .row {
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
  }

  /* ─── 커넥터 라인: 모바일에선 단순화 ─── */
  .connector-row {
    padding: 0 20px;
  }
  .h-line {
    display: none;               /* 가로선 숨김 (세로 흐름이므로 불필요) */
  }
  .v-line {
    height: 20px;
  }

  /* ─── 노드 박스: 전체 너비 사용 ─── */
  .node {
    min-width: 0;
    max-width: 100%;
    width: 100%;
    padding: 14px 16px;
    box-sizing: border-box;
    margin: 0 auto;
  }
  .node.primary {
    min-width: 0;
    width: 100%;
  }

  /* ─── 노드 텍스트 ─── */
  .node-title {
    font-size: 0.9rem;
    letter-spacing: 2px;
    padding-bottom: 8px;
    margin-bottom: 8px;
  }
  .node-row .role,
  .node-row .name {
    font-size: 0.82rem;
  }

  /* ─── 브랜치 레이아웃: 세로 스택 ─── */
  .branch-wrap {
    width: 100%;
  }
  .branch-row {
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0;
  }
  .branch-col {
    width: 100%;
    flex: none;
  }

  /* ─── 레벨 스페이서 축소 ─── */
  .lv  { height: 12px; }
  .lv-sm { height: 6px; }

  /* ─── 섹션 그리드: 2열 → 1열 ─── */
  .section-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 24px;
  }

  /* ─── 인포 카드 ─── */
  .info-card-head {
    font-size: 0.78rem;
    letter-spacing: 2px;
    padding: 9px 12px;
  }
  .info-table {
    font-size: 0.76rem;
  }
  .info-table td {
    padding: 6px 10px;
  }
  .info-table .td-role,
  .info-table .td-role-2col {
    font-size: 0.7rem;
    width: 38%;
  }
  .info-table .td-name {
    font-size: 0.76rem;
  }

  /* ─── 노드 리스트 ─── */
  .node-list li .nm {
    font-size: 0.72rem;
  }

  /* ─── 공지 박스 ─── */
  .notice-box {
    font-size: 0.8rem;
    padding: 12px 14px;
    margin-bottom: 30px;
    line-height: 1.7;
  }

  /* ─── SVG 커넥터: 모바일에서는 숨기고 여백으로 대체 ─── */
  .svg-connector {
    display: none;
  }

  /* ─── col-center: 모바일에서 최상단으로 ─── */
  .col-center {
  width: 100%;
  order: 0;
}

#col-center-main {
  order: -1;
}

  /* ─── 연결선 대체: 노드 사이 구분선 ─── */
  .branch-col + .branch-col::before {
    content: '';
    display: block;
    width: 1px;
    height: 16px;
    background: var(--bk-border);
    margin: 0 auto;
  }
.node-list {margin:0 !important;}
.node-list li {padding:1px 0 !important;font-size:0.8rem;}
}

/* ─── 초소형 화면 (360px 미만) ─── */
@media (max-width: 360px) {
  .node {
    padding: 10px 12px;
  }
  .node-title {
    font-size: 0.8rem;
    letter-spacing: 1.5px;
  }
  .node-row .role,
  .node-row .name {
    font-size: 0.76rem;
  }
  .info-table .td-role,
  .info-table .td-role-2col {
    width: 42%;
  }
}