/* ========== 서브 공통 ========== */

.sub-hero {
  position: relative;
  width: 100%;
  /* height: 100vh; */
  height: 1164px;
  /* overflow: hidden; */
  color: #fff;
  background: url('../../images/user/sub/sub-common/sub-hero-bg.jpg') no-repeat;
  background-size: cover;
}

.sub-hero-inner {
    width: 100%;
  height: 100%;
  overflow: hidden;
}

.sub-hero-inner .breadcrumb {
  /* margin: 200px auto auto; */
  margin: 0 auto;
  padding-top: 200px;
  width: fit-content;
}

.sub-hero-inner .breadcrumb ol {
  display: flex;
}

.sub-hero-inner .breadcrumb li {
  display: flex;
  align-items: center;
}

.sub-hero-inner .breadcrumb li:not(:last-child)::after {
  content: '';
  margin: 0 15px;
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.5);
}

.sub-hero-inner .breadcrumb a {
  display: inline-block;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s ease;
}

.sub-hero-inner .breadcrumb li:first-child a {
  background: url("../../images/user/sub/sub-common/ico-home.png") no-repeat center center;
  background-size: 14px 15px;
  text-indent: -9999px;
  overflow: hidden;
  width: 14px;
  height: 15px;
  opacity: 0.5;
}

.sub-hero-inner .breadcrumb a:hover,
.sub-hero-inner .breadcrumb a:focus {
  color: rgba(255, 255, 255, 1);
  opacity: 1 !important;
}

.sub-hero-inner .breadcrumb li[aria-current="page"] a {
  font-weight: 700;
  color: rgba(255, 255, 255, 1);
}

.sub-hero-inner .breadcrumb li[aria-current="page"] a:hover {
  color: #fff;
  cursor: default;
}

.sub-hero-inner .page-title {
  position: sticky;
  top: 100px;
  margin-bottom: 145px;
  padding-top: 45px;
  text-align: center;
  z-index: 4;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.2)
}

.sub-hero-inner .page-title .page-subtitle {
  font-family: var(--font-en);
  font-size: 1.5rem;
}

.sub-hero-inner .page-title .page-main-title {
  font-size: 5rem;
}

.sub-nav {
  position: sticky;
  /* bottom: 35vh; */
  /*padding-top: 145px;*/
  top: 330px;
  display: flex;
  justify-content: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
  /* will-change: transform, opacity; */
  z-index: 4;
}

.sub-nav ul {
  display: flex;
  gap: 8px;
  padding: 8px;
  border: 1px solid #d7dbe7;
  border-radius: 14px;
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.sub-nav li {
  flex: 1;
}

.sub-nav a {
  display: inline-block;
  padding: 11px 40px;
  border-radius: 14px;
  width: max-content;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 300;
  color: #000;
  transition: all 0.1s ease;
}

.sub-nav a:hover,
.sub-nav a:focus,
.sub-nav a[aria-current="page"] {
  font-weight: 600;
  color: #fff;
  background: #000;
}

.sub-nav a:focus-visible {
  outline: 2px solid #fff; /* 또는 프로젝트 톤에 맞춘 고대비 */
  outline-offset: 2px;
}

.sub-nav.is-fixed {
  position: fixed;
  /*top: 70px;*/
  left: 0;
  right: 0;
  bottom: auto;
  width: 100%;
  z-index: 10;
  transform: translateY(0);
  opacity: 1;
    top: 0;
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px);
}

.sub-nav.is-fixed.is-hidden {
  transform: translateY(calc(-100% + -70px));
  opacity: 0;
}

.sub-hero-bg {
  position: absolute;
  top: 490px;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-radius: 16px;
  width: 90%;
  height: 755px;
  background: #575d6e;
  z-index: 3;
  overflow: hidden;
  will-change: top, width, height, transform, border-radius;
}

.sub-hero-bg img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: 50% 100%;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.dropdown-nav {
    display: none;
}

/* 서브 컨텐츠 영역 */
.sub-content {
  padding: 185px 0 85px;
  width: 100%;
  overflow: hidden;
}

/* .sub-content-header {
  padding: 0 var(--page-padding-x);
} */

.content-body {
  padding: 0 var(--page-padding-x);
}

.content-wrap {
    margin: 0 auto;
    max-width: 1340px;
}

.board-total {
  margin-bottom: 10px;
  font-size: 1.25rem;
  font-weight: 300;
  color: #424755;
}

.board-total strong {
  font-weight: 700;
}

.space-separator {
  position: relative;
  margin-top: 90px;
  padding-top: 90px;
}

.space-separator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100vw - 120px);
    height: 1px;
    background: #878b9d;
}

/* 스와이퍼 공통 */
.swiper-pagination-bullet-active {
  transform: none;
}

.swiper-navigation-icon {
  display: none;
}

/* ========== 서브 페이지 ========== */

/* 분양소식 */
.calendar-wrap {
  max-width: 1340px;
  margin: 0 auto;
  position: relative;
  isolation: isolate;
}

.fc table {
  font-size: 1.25rem !important;
  font-family: var(--font-en);
}

.fc .fc-daygrid-day-top {
  flex-direction: unset !important;
}

.fc .fc-day-other .fc-daygrid-day-top {
  opacity: 1;
  color: #878b9d;
}

.fc-day-today {
  background: none !important;
  border: none !important;
}

.fc-theme-standard td,
.fc-theme-standard th {
  border-left: none !important;
  border-right: none !important;
}

.fc-theme-standard .fc-scrollgrid {
  border: none !important;
}

.fc .fc-toolbar.fc-header-toolbar {
  margin-bottom: 2.8em;
}

/* FullCalendar toolbar 중앙 정렬 - 화살표와 타이틀 모두 가운데 모음 */
.fc .fc-toolbar {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 20px !important;
}

.fc .fc-toolbar-chunk {
  display: flex !important;
  align-items: center !important;
}

/* FullCalendar 화살표 버튼 스타일 - 배경 제거 */
.fc .fc-button-primary {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  color: #000 !important;
  font-size: 24px !important;
}

.fc .fc-button-primary:hover {
  background: none !important;
  opacity: 0.6 !important;
}

.fc .fc-button-primary:focus {
  box-shadow: none !important;
}

.fc .fc-button-primary:not(:disabled):active,
.fc .fc-button-primary:not(:disabled).fc-button-active {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
}

.fc .fc-toolbar-title {
  line-height: 1;
  font-size: 40px;
  padding: 0 40px;
}

.fc-daygrid-day-events {
    margin-bottom: 10px !important;
    min-height: 4.938rem !important
}

.fc-event {
  border-radius: 6px !important;
}

.fc-event-main {
  padding: 6px 15px;
  font-family: var(--font-ko);
  font-size: 1rem !important;
  font-weight: 500;
}

.fc .fc-col-header-cell-cushion,
.fc .fc-daygrid-day-number {
  font-weight: 700;
}

.fc .fc-col-header-cell-cushion {
  padding: 8px 4px;
}

.fc .fc-daygrid-day-number {
  padding: 10px 4px;
}

.fc-day-sun {
  color: #ff3131;
}

.fc-day-sat {
  color: #0065d6;
}

.fc .fc-daygrid-body {
  position: relative;
  overflow: hidden;
  background: #fff;
  z-index: 0;
}

.fc .fc-col-header th {
  border-bottom: none !important;
}

.fc .fc-scrollgrid-sync-table > tbody > tr:first-child > td {
  border-top: none !important;
}

.fc .fc-scrollgrid-sync-table > tbody > tr:last-child > td {
  border-bottom: none !important;
}

.fc .fc-scrollgrid,
.fc .fc-scrollgrid-liquid,
.fc .fc-scrollgrid-sync-table {
  border-bottom: none !important;
}

.fc .fc-daygrid-day-frame {
  border-bottom: none !important;
}

.fc .fc-daygrid-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: #000;
  z-index: 5;
}

.fc .fc-button .fc-icon{
    position: relative;
}
.fc-icon-chevron-left::before{
    content:"";
    position: absolute;
    left:50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 14px;
    height: 26px;
    background: url("../../images/user/sub/sales/ico-calandar-arw-left.png") no-repeat center / cover;
}
.fc-icon-chevron-right::before{
    content:"";
    position: absolute;
    left:50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 14px;
    height: 26px;
    background: url("../../images/user/sub/sales/ico-calandar-arw-right.png") no-repeat center / cover;
}

.calendar-wrap::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 2px;
  background: #fff;
  z-index: 10;
  pointer-events: none;
}

.calendar-wrap::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 1px;
  background: #000;
  z-index: 11;
  pointer-events: none;
}

/* FAQ */
/* .faq-wrap {
  margin: 0 auto;
  max-width: 1340px;
} */
.faq-list {
  margin-top: 20px;
}
.faq-item {
  border: 1px solid #e5eaf2;
  border-radius: 10px;
}
.faq-controls {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-top: 30px;
}

.faq-item + .faq-item {
  margin-top: 15px;
}

.faq-toggle {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  padding: 48px 50px;
  text-align: left;
  line-height: 1;
  font-size: 1.5rem; font-weight:600; background:none; border:none; cursor:pointer;
  word-break: auto-phrase;
}
.faq-qbadge, .faq-abadge { margin-right: 10px; font-size: 2rem; font-weight:700; color:#0065d6; }
.faq-abadge {
  color: #07080c;
}
.faq-arrow {
  flex-shrink: 0;
  margin-left: auto;
  width: 24px;
  height: 12px;
  background: url("../../images/user/sub/sub-common/ico-accordian-down.png") no-repeat center / contain;
  transition: transform .25s ease;
}
.faq-item.is-open {
  border: 1px solid #0065d6;
}
.faq-item.is-open .faq-arrow { transform: rotate(180deg); }
.faq-panel { padding: 0 50px 48px 95px; display:none; }
.faq-answer {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 1.25em;
  font-weight:300;
  color:#424755;
  line-height:1;
}

.faq-catbadge {
  flex-shrink: 0;
  display: inline-block;
  padding: 2px 10px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  color: #0065d6;
  background: #e5effb;
}

/* @media (max-width:768px){
  .ui-field-group { grid-template-columns:1fr; }
  .faq-toggle { font-size:1rem; padding:18px 0; }
  .faq-panel { padding-bottom:18px; }
  .faq-catbadge { font-size:0.75rem; padding:2px 6px; }
} */

.sub-content-header {
  /* margin: 0 auto;
  width: 1340px; */
  padding: 0 var(--page-padding-x);
}

.sub-content-title {
    margin: 0 auto; /* 첨삭보류*/
    width: 1340px; /* 첨삭보류 */
    font-size: 3.75rem;
}

/* 보도자료 */
.content-wrap.press-release-list {
    margin-top: 60px;
}
/* 발행물  */
.grid-list--publication {
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 100px;
}

.grid-card--publication {
  display: flex;
  align-items: stretch;
  gap: 40px;
  border-bottom: 1px solid #575d6e;
  padding-bottom: 50px;
}

.grid-card--publication .grid-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.grid-card--publication .grid-card-thumb {
  flex-shrink: 0;
  border: 1px solid #e5eaf2;
  border-radius: 10px;
  aspect-ratio: 146/207;
  margin-bottom: 0;
  width: 146px;
  overflow: hidden;
}

.grid-card--publication .grid-card-date {
  margin-bottom: 15px;
}

.grid-card--publication .grid-card-title {
  font-weight: 700;
  margin-bottom: 16px;
}

.grid-card--publication .grid-card-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
}

.grid-card--publication .grid-card-actions .btn {
  gap: 7px;
  font-weight: 400;
}
.grid-card--publication .grid-card-actions .btn-download {
  background: #0065d6;
}

.grid-card--publication .grid-card-actions .btn-preview::before {
  content: '';
  width: 20px;
  height: 15px;
  background: url("../../images/user/sub/sub-common/ico-preview.png") no-repeat;
}

.grid-card--publication .grid-card-actions .btn-download::before {
  content: '';
  width: 17px;
  height: 16px;
  background: url("../../images/user/sub/sub-common/ico-download-wh.png") no-repeat;
}

/* 사업소개 */
.project-intro {
  margin-bottom: 70px;
}

.project-heading {
  line-height: 1.3;
  font-size: 3.75rem;
  font-weight: 700;
}

.project-desc {
  margin-top: 90px;
  font-size: 2rem;
  font-weight: 700;
}

.project-desc .text-point {
  line-height: 1.6;
  font-weight: 700;
  color: #0065d6;
}

.project-summary {
  margin-left: auto;
  margin-bottom: 100px;
  width: 556px;
}

.summary-title {
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 2rem;
  font-weight: 700;
  word-break: keep-all;
}

.summary-desc {
  margin-bottom: 40px;
  font-size: 1.25rem;
  font-weight: 300;
  color: #424755;
  line-height: 1.7;
}

.project-info table {
  width: 100%;
  margin-bottom: 35px;
}
.project-info th,
.project-info td {
  padding: 23px 15px;
  border-top: 1px solid #d7dbe7;
  text-align: left;
  font-size: 1.25rem;
  font-weight: 300;
  color: #424755;
}
.project-info th {
  width: 17%;
  font-weight: 700;
  color: #101218;
}

.project-map {
  display: flex;
  gap: 7px;
  justify-content: space-between;
  margin-bottom: 100px;
}
.project-map figure {
  flex: 1;
}
.project-map img {
  width: 100%;
  border-radius: 10px;
}

.project-partners {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 100px;
  padding-top: 100px;
}

/*.project-partners*/ .section-heading {
  font-size: 2.5rem;
  font-weight: 700;
  word-break: keep-all;
}

.partners-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.partner-thumb {
  margin-bottom: 35px;
}

.partner-thumb img {
  width: 100%;
}

.partner-text {
  display: flex;
  align-items: baseline;
}

.partner-name {
  width: 47.72%;
  font-size: 1.5rem;
  font-weight: 700;
}

.partner-role li {
  font-size: 1.25rem;
  font-weight: 300;
  color: #424755;
}

.partner-role li::before {
  content: '✓';
  margin-right: 15px;
  font-size: 1.625rem;
  font-weight: 700;
  color: #0065d6;
}

.partner-role li + li {
  margin-top: 20px;
}

/* 반응형 */
/*@media (max-width: 1024px) {
  .project-partners {
    flex-direction: column;
    gap: 40px;
  }

  .project-partners .section-heading {
    flex: none;
    font-size: 1.5rem;
  }

  .partners-content {
    gap: 40px;
  }

  .partner-item {
    flex-direction: column;
  }

  .partner-thumb {
    width: 100%;
  }
}*/

.project-step {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 80px;
}
.step-method {
  display: flex;
  flex-direction: column;
  width: 34.32%;
}
.step-progress {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.step-bubble,
.step-list {
  flex: 1;
  display: flex;
  margin-top: 55px;
  font-size: 1.25rem;
}

.step-bubble {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 60px;
  color: #fff;
  line-height: 1.5;
  aspect-ratio: 460/235;
  text-align: center;
  background: url("../../images/user/sub/overview/step-method-bg.png") no-repeat;
  background-size: contain;
}

.step-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 50px;
  font-size: 1.25rem;
  color: #fff;
}

.step-list .step-item:first-child {
  width: 52.69%;
  aspect-ratio: 421.58/234.92;
  background: url("../../images/user/sub/overview/step-01-bg.png") no-repeat;
  background-size: contain;
}

.step-list .step-item:last-child {
  aspect-ratio: 378.55/234.92;
  flex: 1;
  background: url("../../images/user/sub/overview/step-02-bg.png") no-repeat;
  background-size: contain;
}

.step-num {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.step-num .num-box {
  padding: 5px 15px;
  border: 1px solid #fff;
  border-radius: 18px;
  line-height: normal;
  background: #000;
}

.step-name {
  font-size: 1.5rem;
  font-weight: 700;
}

.step-item .step-name {
  margin-top: auto;
}

.step-desc {
  display: block;
  margin-top: 5px;
  font-weight: 200;
}

/* 반응형 */
/* @media (max-width: 1024px) {
  .project-summary,
  .project-map,
  .project-step,
  .partner-item {
    flex-direction: column;
  }
  .summary-figure img,
  .partner-thumb img {
    width: 100%;
  }
} */

/* 갤러리 상세 */
.gallery-view {
  margin: 0 auto;
  padding-bottom: 100px;
  text-align: center;
}

.gallery-main {
  margin-top: 45px;
  padding-top: 80px;
  border-top: 1px solid #e5eaf2;
}

.gallery-main-inner {
  position: relative;
  margin: 0 auto;
  max-width: 1340px;
}

.gallery-main-inner .swiper-wrapper {
    width: auto;
    height: 500px;
}

.gallery-main .swiper {
  position: relative;
  width: 100%;
  /*aspect-ratio: 1 / 1;*/
  /*border-radius: 10px;*/
  overflow: hidden;
}

.gallery-main img {
  margin: 0 auto;
  border-radius: 10px;
  width: auto;
  height: 100%;
  object-fit: cover;
}

.gallery-main button img {
    width: auto;
    height: auto;
}

.gallery-main .swiper-button-prev,
.gallery-main .swiper-button-next {
  top: 50%;
  transform: translateY(-50%);
  border: none;
  color: #000;
  /*width: fit-content;
  height: fit-content;*/
  border-radius: 100%;
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.3);
  transition: background 0.2s;
}


.gallery-main .swiper-button-prev::after,
.gallery-main .swiper-button-next::after {
  display: none;
}

.gallery-main .swiper-button-prev {
  left: 15px !important;
}

.gallery-main .swiper-button-next {
  right: 15px !important;
}

.gallery-main .swiper-pagination {
  position: static;
  margin-top: 30px;
}

.gallery-main .swiper-pagination-bullet {
  margin: 0 5px !important;
  width: 10px !important;
  height: 10px !important;
  background: #878b9d;
  opacity: 1;
}

.gallery-main .swiper-pagination-bullet-active {
  background: #0065d6;
}

.gallery-desc {
  margin-top: 70px;
  line-height: 1.3;
  font-size: 1.25rem;
  font-weight: 300;
  color: #424755;
}

.gallery-desc p + p {
  margin-top: 6px;
}

/* 영상 상세 */
.gallery-main-inner.video{
    max-width: 760px;
}

/* 반응형 */
/*@media (max-width: 768px) {
  .gallery-main .swiper {
    aspect-ratio: 4 / 3;
  }
  .swiper-button-prev,
  .swiper-button-next {
    width: 36px;
    height: 36px;
  }
}*/

/* 비전 */


.project-vision .section-heading {
    flex: 1;
  font-size: 3.75rem;
  margin-bottom: 40px;
}

.project-vision-core {
  text-align: center;
  margin-bottom: 90px;
}

.vision-visual {
  margin: 0 auto 65px;
}

.vision-desc {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
}

.project-goal {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 130px;
  margin-bottom: 100px;
  padding-top: 85px;
}

.goal-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 55px;
  margin-top: 120px;
}

.goal-item {
  flex: 1;
}

.goal-item:last-child {
    padding-top: 55px;
    border-top: 1px solid #878b9d;
}

.goal-thumb img {
  width: 100%;
}

.goal-caption {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  gap: 20px;
}

.goal-title {
  font-size: 2.5rem;
  font-weight: 700;
}

.goal-desc {
  font-size: 2rem;
  font-weight:300;
}

/* ===== 핵심 전략 ===== */
.project-strategy {
  position: relative;
  margin-bottom: 120px;
  padding-top: 85px;
}

.project-strategy .section-heading {
  margin-bottom: 70px;
  text-align: center;
}

.strategy-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 235px; /* 세로 간격 크게, 좌우 살짝 */
  position: relative;
}

/* 기본 카드 */
.strategy-item {
  position: relative;
  z-index: 1;
}

.strategy-item:nth-child(even) {
  margin-top: 235px; /* ✅ 세로 겹침 표현 */
}
/* .strategy-list > li {
  margin-top: 240px;
}

.strategy-list > li:first-child {
  margin-top: 0;
} */
.strategy-item {
  position: relative;
}

.strategy-num {
  position: absolute;
  top: -15px;
  right: -25px;
  line-height: 1;
  font-size: 19.74rem;
  font-weight: 800;
  color: rgba(0, 101, 214, 0.1);
  pointer-events: none;
}

.strategy-thumb img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.strategy-text {
  margin-top: 20px;
}

.strategy-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 45px;
  line-height: 1.3;
}

.strategy-title .strategy-kicker {
  display: block;
  font-weight: 300;
  letter-spacing: -0.01em;
}

.strategy-desc {
  margin-bottom: 55px;
}

.strategy-desc li {
  position: relative;
  padding-left: 30px;
  font-size: 1.25rem;
  font-weight: 300;
  color: #424755;
}

.strategy-desc li + li {
  margin-top: 20px;
}

.strategy-desc li::before {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  line-height: 1;
  font-size: 1.625rem;
  font-weight: 700;
  color: #0065d6;
}

/* ===== 반응형 ===== */
/* @media (max-width: 1024px) {
  .strategy-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .vision-text .vision-en {
    font-size: 1.5rem;
  }
  .goal-list {
    flex-direction: column;
    gap: 30px;
  }
  .strategy-num {
    font-size: 3.5rem;
  }
} */

/* 추진일정 */
.project-timeline {
  margin-top: 40px;
}

.timeline-section {
  position: relative;
  margin-top: 90px;
  padding-top: 90px;
}

.timeline-section::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 1px;
  transform: translateX(-50%);
  background: #878b9d;
}

.timeline-intro {
  display: flex;
  justify-content: end;
}

.timeline-desc {
  font-size: 2rem;
  font-weight: 500;
}

/* 섹션 레이아웃 */
.timeline-wrap {
  display: flex;
  gap: 210px;
}

.project-timeline .section-heading {
  margin-bottom: 50px;
}

.timeline-right {
  flex: 1;
}

.timeline-right .timeline-block + .timeline-block {
  margin-top: 150px;
}
.timeline-year {
  margin-top: -10px;
  margin-bottom: 70px;
  line-height: 1;
  font-size: 5rem;
  font-weight: 700;
}

.timeline-list {
  position: relative;
  border-left: 1px solid #101218;
  padding-left: 30px;
}

.timeline-list li {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  position: relative;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1;
  height: 105px;
}

.timeline-list li:last-child {
  height: fit-content;
}

/* .timeline-list li + li {
  margin-top: 55px;
} */

.timeline-list li::before {
  content: "";
  position: absolute;
  top: 0;
  left: -40px;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  background-color: #b8dbff;

}

.timeline-list li::after {
  content: "";
  position: absolute;
  top: 5px;
  left: -35px;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  background-color: #0065d6;
}

.timeline-date {
  display: inline-block;
  padding-right: 30px;
  width: 80px;
  font-family: var(--font-en);
  font-weight: 700;
  color: #0065d6;
}

.timeline-text .br {
  display: block;
  margin-top: 10px;
}

.timeline-note {
  margin-top: 150px;
  color: #878b9d;
  font-weight: 200;
}


/* 반응형 */
/* @media (max-width: 768px) {
  .timeline-year { font-size: 2rem; margin-bottom: 25px; }
  .timeline-list { margin-left: 30px; }
  .timeline-date { width: 70px; font-size: 1rem; }
  .timeline-text { font-size: 1rem; }
} */

/* 기대효과 */
.benefit-intro {
  margin-bottom: 130px;
}

.benefit-desc {
  line-height: 1.3;
  font-size: 3.75rem;
  font-weight: 700;
}

.benefit-step {
  position: relative;
  margin-top: 75px;
  padding-bottom: 75px;
}

.benefit-step-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 75px;
}

.benefit-step-badge {
  display: inline-block;
  padding: 12px 15px;
  border-radius: 50px;
  line-height: 1;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  background: #000;
}

.benefit-step-title {
  font-size: 2.5rem;
  font-weight: 700;
}

.benefit-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.benefit-grid .benefit-group:last-child .benefit-label {
  margin-top: 45px;
}
.benefit-grid .benefit-group:last-child .benefit-list {
  padding-top: 45px;
  border-top:  1px solid #575d6e;
}

/* .benefit-group + .benefit-group {
  border-top: 1px solid #000;
} */

.benefit-grid .benefit-group:last-child {
  margin-top: 45px;
  padding-top: 45px;
}

.benefit-label {
  position: relative;
  line-height: 1;
  font-size: 2rem;
  font-weight: 700;
}

.benefit-label::after {
  content: '';
  position: absolute;
  top: 0;
  right: -20px;
  border-radius: 100%;
  width: 10px;
  height: 10px;
  background: #0065d6;
}

.benefit-grid .benefit-group:last-child .benefit-label::after {
  background: #5f5ad5;
}

.benefit-list {
  flex: 0 65.67%;
}

.benefit-list li {
  padding: 0 0 25px 0;
}
.benefit-list li + li {
  border-top: 1px solid #e5eaf2;
}

.benefit-list li:nth-child(n+2) {
  padding-top: 30px;
}
.benefit-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  line-height: 1;
}

.benefit-left {
  display: flex;
  align-items: baseline;
  gap: 20px;
  flex-shrink: 0;
}

.benefit-value {
  font-size: 5rem;
  font-weight: 700;
}

.benefit-value.is-blue {
  color: #0065d6;
}

.benefit-value.is-purple {
  color: #5f5ad5;
}

.benefit-unit {
  font-size: 1.5rem;
  font-weight: 500;
}

.benefit-right {
  flex: 0 52.27%;
}

.benefit-desc-title {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.benefit-desc-title::before {
  content: '';

}

.benefit-desc-title.ico-home::before {
  width: 20px;
  height: 22px;
  background: url("../../images/user/sub/overview/ico-benefit-home.png") no-repeat;
}

.benefit-desc-title.ico-people::before {
  width: 22px;
  height: 20px;
  background: url("../../images/user/sub/overview/ico-benefit-people.png") no-repeat;
}

.benefit-desc-title.ico-job::before {
  width: 22px;
  height: 22px;
  background: url("../../images/user/sub/overview/ico-benefit-job.png") no-repeat;
}

.benefit-desc-title.ico-industry::before {
  width: 22px;
  height: 22px;
  background: url("../../images/user/sub/overview/ico-benefit-industry.png") no-repeat;
}

.benefit-desc-text {
  line-height: 1.5;
  font-size: 1.25rem;
  font-weight: 300;
  color: #424755;
}

.benefit-bg {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  z-index: -1;
}

.benefit-step.is-private .benefit-bg img {
  margin-left: auto;
}

.developer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 130px;
}

/* Brand */
.project-brand .section-heading {
  font-size: 3.75rem;
}

.project-brand h4 {
  font-size: 2.5rem;
}

.brand-intro {
  margin-bottom: 60px;
  padding: 105px 0;
  text-align: center;
  background: url("../../images/user/sub/overview/bg-brand-intro.png") no-repeat center center;
}

.brand-sub-title {
  font-size: 2.5rem;
  font-weight: 700;
}

.brand-main-title {
  position: relative;
  font-size: 6.25rem;
}

.brand-main-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 10px;
  width: 100%;
  height: 2px;
  background: #000;
}

.brand-desc {
  display: block;
  margin-top: 30px;
  font-size: 1.5rem;
  font-weight: 300;
}

.brand-desc b {
  font-weight: 700;
}

.brand-name-meaning {
  display: flex;
}

.brand-name-meaning li {
  padding: 0 60px 45px;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 300;
  color: #424755;
}

.brand-name-meaning li + li {
  border-left: 1px solid #878b9d;
}

.brand-name-meaning li strong {
  font-size: 1.5rem;
  font-weight: 700;
  color: #101218;
}
.brand-name-meaning li:first-child {
  background: url("../../images/user/sub/overview/bg-name-meaning-blue.png") center bottom no-repeat;
}
.brand-name-meaning li:nth-child(2) {
  background: url("../../images/user/sub/overview/bg-name-meaning-green.png") center bottom no-repeat;
}
.brand-name-meaning li:last-child {
  background: url("../../images/user/sub/overview/bg-name-meaning-purple.png") center bottom no-repeat;
}

.brand-symbol-wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 75px;
}

.brand-symbol-desc {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: end;
  margin-bottom: 30px;
  font-size: 1.5rem;
  font-weight: 300;
}

.brand-symbol-desc p {
  margin-top: 50px;
  line-height: 1.6;
  word-break: keep-all;
}

.brand-symbol-desc p b {
  font-weight: 700;
}

.brand-symbol-list {
  width: 555px;
}

.brand-symbol-list li {
  display: flex;
  align-items: center;
  padding: 0 40px;
  border-radius: 16px;
  width: 100%;
  height: 130px;
  color: #fff;
}

.brand-symbol-list li + li {
  margin-top: 8px;
}

.brand-symbol-list li:first-child {
  background: url("../../images/user/sub/overview/bg-symbol-blue.png") no-repeat;
}

.brand-symbol-list li:nth-child(2) {
  background: url("../../images/user/sub/overview/bg-symbol-green.png") no-repeat;
}

.brand-symbol-list li:last-child {
  background: url("../../images/user/sub/overview/bg-symbol-purple.png") no-repeat;
}

.brand-symbol-list li p {
  position: relative;
  margin-right: 115px;
  font-size: 1.5rem;
  font-weight: 700;
}

.brand-symbol-list li p img {
  position: absolute;
  top: 50%;
  right: -60px;
  transform: translateY(-50%);
}

.brand-symbol-list li {
  font-size: 1.25rem;
}

.brand-slogan-wrap {
  display: flex;
  gap: 110px;
  align-items: end;
  margin-top: 180px;
}

.brand-slogan-main {
  position: absolute;
  top: -125px;
  right: -390px;
  line-height: 1;
  font-size: 6.25rem;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 12px;
  white-space: nowrap;
}

.brand-slogan-visual {
  position: relative;
  width: fit-content;
}

.brand-slogan-text h4 {
  margin-bottom: 15px;
}

.brand-slogan-text p {
  line-height: 1.6;
  font-size: 1.25rem;
  font-weight: 300;
  color: #424755;
  word-break: keep-all;
}

.brand-slogan-text p + p {
  margin-top: 20px;
}

.brand-logotype-wrap {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-top: 75px;
}

.brand-logo-visual {
  flex: 0 0 31.34%;
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 20px;
}

.brand-logo-visual .logo-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e7e7e7;
  border-radius: 10px;
  height: 50%;
  background: url("../../images/user/sub/overview/bg-logo-grid.png")
}

.brand-logo-visual .logo-item:first-child img {
  width: 343px;
}

.brand-logo-visual .logo-item figcaption {
  position: absolute;
  top: 15px;
  right: 20px;
}

.logotype-symbol {
  flex: 1;
  padding: 20px;
  border: 1px solid #e7e7e7;
  border-radius: 10px;
}

.logotype-symbol h4 {
  padding-top: 5px;
  padding-left: 15px;
}

.logotype-symbol-wrap {
  display: flex;
  align-items: stretch;
  gap: 23px;
}

.logotype-symbol-wrap .symbol-set:first-child {
  width: 37.5%;
}

.logotype-symbol-wrap .symbol-set:first-child .symbol-image {
  margin-top: 44px;
}

.logotype-symbol-wrap .symbol-set:last-child {
  flex: 1;
}

.symbol-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 45px;
  padding: 12px 30px;
  border-radius: 12px;
  height: 165px;
  background: #f5f6ff;
}

.symbol-table table {
  width: 100%;
}

.symbol-table table thead {
  border-bottom: 1px solid #878b9d;
}

.symbol-table table th, .symbol-table table td {
  padding: 4px 0;
  color: #424755;
}

.symbol-table table th {
  padding-bottom: 8px;
  text-align: left;
}
.symbol-table table td {
  font-weight: 300;
}

.symbol-table tbody tr:first-child td {
  padding-top: 12px;
}

.symbol-table table .color {
  font-weight: 700;
}

.symbol-table table .color.blue {
  color: #0066ba;
}

.symbol-table table .color.green {
  color: #00bda2;
}

.symbol-table table .color.purple {
  color: #8784d6;
}

.logotype-symbol-wrap .symbol-set {
  display: flex;
  flex-direction: column;
}

.logotype-symbol-wrap .symbol-set .symbol-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-color {
  display: flex;
  justify-content: space-between;
}

.color-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 880px;
  color: #fff;
}

.color-item {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  padding: 40px 0 40px 55px;
  border-radius: 16px;
  background-size: cover !important;
  overflow: hidden;
}

.color-bg--blue {
  background: url("../../images/user/sub/overview/bg-brandcolor-blue.png") no-repeat;
}

.color-bg--green {
  background: url("../../images/user/sub/overview/bg-brandcolor-green.png") no-repeat;
}

.color-bg--purple {
  background: url("../../images/user/sub/overview/bg-brandcolor-purple.png") no-repeat;
}

.color-item h4 {
  flex: 0 0 25%;
  line-height: 1;
}

.color-item .color-info {
  display: flex;
  flex-direction: column;
  margin-right: auto;
}

.color-item .color-meaning {
  font-size: 1.5rem;
  font-weight: 700;
}

.color-item .color-desc {
  margin-top: auto;
  font-size: 1.25rem;
  font-weight: 300;
}

.color-code {
  width: 258px;
}

.color-code >  div {
  position: relative;
  display: flex;
  padding: 4px 0;
  font-weight: 300;
}

.color-code >  div + div {
  border-top: 1px solid #8a919a;
}

.color-code >  div dt {
  width: 42.63%;
}

.color-item .color-code::before {
  position: absolute;
  content: '';
  top: 50%;
  right: -70px;
  transform: translateY(-50%);
  border-radius: 100%;
  width: 140px;
  height: 140px;
  background: #0066ba;
}

.color-bg--green .color-code::before {
  background: #00bda2;
}

.color-bg--purple .color-code::before {
  background: #8784d6;
}

/* 시행자 */
.project-developer h4 {
  font-size: 2.5rem;
}

.project-developer h5 {
  font-size: 2rem;
}

.developer-org {
  display: flex;
  justify-content: space-between;
  gap: 204px;
  margin-top: 100px;
}

.org-item {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.org-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 50px;
}

.org-badge {
  padding: 2px 12px;
  border-radius: 6px;
  font-size: 1.25rem;
  font-weight: 300;
  color: #fff;
  background: #0065d6;
}

.org-list {
  margin-bottom: 55px;
}

.org-list li {
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 300;
  color:#424755;
}

.org-list li + li {
  margin-top: 20px;
}

.org-list li::before {
  content: '✓';
  margin-right: 15px;
  font-size: 1.625rem;
  font-weight: 700;
  color: #0065d6;
}

.org-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  border-radius: 10px;
  height: 160px;
  background: #f0f3f8;
}

.developer-note {
  margin-top: 55px;
  color: #878b9d;
  font-weight: 300;
  word-break: keep-all;
}

.developer-info-grid {
  display: flex;
  justify-content: space-between;
}

.developer-header h4 {
  margin-top: 50px;
  line-height: 1.3;
}

.developer-vision {
  width: 48.5%;
}

.vision-list dt, .core-title {
  font-size: 2rem;
  font-weight: 700;
}

.vision-list > div {
  display: flex;
  align-items: flex-start;
  gap: 70px;
}

.vision-list > div + div {
  margin-top: 50px;
}

.vision-list dd {
  font-size: 1.5rem;
  font-weight: 300;
  word-break: keep-all;
}

.core-values {
  margin-top: 50px;
}

.core-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.core-list li {
  position: relative;
  padding: 25px;
  border-radius: 10px;
  background: #e7f9ff;
}

.core-list li:nth-child(2), .core-list li:nth-child(3) {
  background: #f0f3f8 !important;
}

.core-list strong {
  font-size: 1.5rem;
}

.core-list p {
  margin-top: 15px;
  line-height: 1.6;
  font-size: 1.25rem;
  font-weight: 300;
  color: #424755;
}

.core-list li::after {
  content: '';
  position: absolute;
  top: 30px;
  right: 30px;
}

.core-list li:first-child::after {
  width: 28px;
  height: 32px;
  background: url("../../images/user/sub/overview/ico-developer-safety.png") no-repeat;
}

.core-list li:nth-child(2)::after {
  width: 32px;
  height: 32px;
  background: url("../../images/user/sub/overview/ico-developer-trust.png") no-repeat;
}

.core-list li:nth-child(3)::after {
  width: 26px;
  height: 32px;
  background: url("../../images/user/sub/overview/ico-developer-innovation.png") no-repeat;
}

.core-list li:last-child::after {
  width: 32px;
  height: 32px;
  background: url("../../images/user/sub/overview/ico-developer-mobility.png") no-repeat;
}

.developer-desc {
  display: flex;
  gap: 185px;
  margin-top: 70px;
  padding-top: 70px;
  border-top: 1px solid #e5eaf2;
}

.developer-desc h5 {
  flex: 1;
}

.developer-desc-list {
  line-height: 1.6;
  width: 63.43%;
  font-size: 1.25rem;
  font-weight: 300;
  color: #424755;
}

.developer-desc-list li {
  display: flex;
  gap: 20px;
  align-items: baseline;
}

.developer-desc-list li::before {
  flex-shrink: 0;
  content: '';
  width: 10px;
  height: 10px;
  background: url("../../images/user/sub/overview/ico-bullet.png") no-repeat;
}

.developer-desc-list li + li {
  margin-top: 25px;
}

.developer-project {
  margin-top: 70px;
  padding-top: 70px;
  border-top: 1px solid #e5eaf2;
}

.developer-project-list {
  display: flex;
  gap: 40px;
  margin-top: 50px;
}

.developer-project-list li {
  flex: 1;
}

.developer-project-name {
  margin-bottom: 20px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0065d6;
}

.developer-project-desc {
  margin-top: 15px;
  font-size: 1.25rem;
  font-weight: 300;
  color: #424755;
  word-break: keep-all;
}

.developer-section.sh .core-list li {
  padding: 25px 25px 35px;
  background: #defcf8;
}

.developer-section.sh .core-list li:first-child::after {
  width: 32px;
  height: 32px;
  background: url("../../images/user/sub/overview/ico-developer-happiness.png") no-repeat;
}

.developer-section.sh .core-list li:nth-child(2)::after {
  width: 32px;
  height: 32px;
  background: url("../../images/user/sub/overview/ico-developer-growth.png") no-repeat;
}

.developer-section.sh .core-list li:nth-child(3)::after {
  width: 32px;
  height: 32px;
  background: url("../../images/user/sub/overview/ico-developer-cooperation.png") no-repeat;
}

.developer-section.sh .core-list li:last-child::after {
  width: 32px;
  height: 32px;
  background: url("../../images/user/sub/overview/ico-developer-responsibility.png") no-repeat;
}

.developer-section.sh .developer-desc {
  gap: 70px;
}

.developer-section.sh .developer-project-name {
  color: #25897b;
}




/*  ========== 정주환경 ==========  */
.content-intro{
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}
.content-intro .project-heading{
    margin-right: 0;
}
.content-intro .content-desc {
    margin-left: auto;
    margin-top: 60px;
    font-size: 2rem;
    font-weight: 500;
    word-break: keep-all;
}
#sub-sticky-list{
    position: static;
    width:210px;
    max-width:100%;
    height: auto;
    transition: all 0.6s;
}
#sub-sticky-list.is-fixed {
    position: fixed;
    top: 150px;
    z-index: 1;
}
#sub-sticky-list ul li{
    padding: 0 0 30px;
}
#sub-sticky-list ul li a{
    display: inline-block;
    position: relative;
    font-weight: 700;
    font-size: 1.25rem;
    color: #878b9d;
}
#sub-sticky-list ul li.on a{
    color: #0065d6;
}
#sub-sticky-list ul li.on a::after{
    content: "";
    position: absolute;
    left:0;
    bottom:0;
    width:100%;
    height:1px;
    background-color: #0065d6;
}
#sub-sticky-list ul li.double.on a::after{
    display: none;
}
#sub-sticky-list ul li.double.on a span{
    position: relative;
}
#sub-sticky-list ul li.double.on a span::after{
    content: "";
    position: absolute;
    left:0;
    bottom:0;
    width:100%;
    height:1px;
    background-color: #0065d6;
}
.table-outer .table-tit{
    display: none;
}
.content-section-wrap{
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin: 100px 0 0;
    padding:100px 0 0;
    height: auto;
    border-top:1px solid #878b9d;
}
.content-section-wrap .content-sections{
    margin-left: auto;
    width:calc( 100% - 230px);
}
.content-section-wrap .content-sections .content-section +.content-section{
    margin-top:100px;
    padding-top: 100px;
    border-top: 1px solid #424755;
}
.content-section-wrap .content-sections .content-tit-box{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0 0 60px;
}
.content-section-wrap .content-sections .content-tit-box .section-heading{
    width:50%;
}
.content-section-wrap .content-sections .summary-title{
    font-size: 1.125rem;
}
.content-section-wrap .content-sections .summary-text{
    line-height: 1.5;
    font-size: 1.125rem;
    color: #424755;
    word-break: keep-all;
}
.content-section-wrap .content-sections .summary-text strong{
    font-weight: 700;
}
.content-section-wrap .content-sections .content-txt-box{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.content-section-wrap .content-sections .left{
    width:50%
}
.content-section-wrap .content-sections .right{
    width:50%
}
.content-section-wrap .content-sections .herb .summary-title{
    margin:10px 0 0;
    width:50%;
}
.content-section-wrap .content-sections .herb .content-txt-box > div{
    width: calc((100% - 8px) / 2);
}
.content-section-wrap .content-sections .herb .content-txt-box .figure-txt{
    padding: 30px 0 0;
    width: 94%;
    line-height: 1.5;
    font-size: 1.125rem;
    color: #424755;
    word-break: keep-all;
}
.content-section-wrap .content-sections .herb .content-txt-box .figure-txt strong{
    font-weight: 700;
}
.content-section-wrap .content-sections .infra .summary-title{
    margin:30px 0 40px;
}
.content-section-wrap .content-sections .infra .right ul{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}
.content-section-wrap .content-sections .infra .right ul li{
    padding-bottom: 20px;
    width: calc((100% - 8px) / 2);
}
.content-section-wrap .content-sections .infra .right ul li:nth-child(2){
    margin: 60px 0 0;
}
.content-section-wrap .content-sections .infra .right ul li:nth-child(4){
    margin: 60px 0 0;
}
.content-section-wrap .content-sections ul li dl{
    padding: 30px 0 0;
}
.content-section-wrap .content-sections ul li dl dt{
    padding: 0 0 10px;
    line-height: 1.5;
    font-weight: 700;
    font-size: 1.25rem;
    color: #101218;
}
.content-section-wrap .content-sections ul li dl dd{
    line-height: 1.5;
    font-size: 1.125rem;
    color: #424755;
    word-break: keep-all;
}
.content-section-wrap .content-sections .mobility .summary-title{
    margin: 10px 0 40px;
}
.content-section-wrap .content-sections .mobility .content-txt-box{
    padding: 0 0 50px;
}
.content-section-wrap .content-sections .safe .summary-title{
    margin: 10px 0 40px;
}
.content-section-wrap .content-sections .safe .content-txt-box{
    padding: 0 0 50px;
}
.content-section-wrap .content-sections .safe ul{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.content-section-wrap .content-sections .safe ul li{
    width: calc((100% - 16px) / 3);
}
.content-section-wrap .content-sections .content-section .leading-text-box{
    position: relative;
    margin: 80px 0 0;
    text-align: center;
    color: rgba(186,192,201,0.4)
}
.content-section-wrap .content-sections .content-section .leading-text-box p{
    display: inline-block;
    position: relative;
    text-align: center;
    font-weight: 700;
    font-size: 2rem;
    background: linear-gradient(to right, #222, #222) no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    background-size: 0;
    transition: background-size cubic-bezier(.1,.5,.5,1) 0.5s;
    word-break: keep-all;
}
.content-section-wrap .content-sections .content-section .leading-text-box p::before{
    content: "";
    position: absolute;
    left: -64px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 22px;
    background:url("../../images/user/sub/environment/ico-quotes-mark-before.png") no-repeat center/cover;
}
.content-section-wrap .content-sections .content-section .leading-text-box p::after{
    content: "";
    position: absolute;
    right: -64px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 22px;
    background:url("../../images/user/sub/environment/ico-quotes-mark-after.png") no-repeat center/cover;
}
.content-section-wrap .content-sections .section-heading em{
    display: block;
    font-style: normal;
    font-size: 2.25rem;
    color: #878b9d;
}
.content-wrap.environment .content-section-wrap .content-sections .section-heading{
    line-height: 1.3;
}
.content-wrap.environment .content-section-wrap .content-sections .summary-title{
    margin: 50px 0;
    line-height: 1.5;
    font-size: 1.5rem;
}
.content-wrap.environment .content-section-wrap .content-sections .content-tit-box .summary-title{
    margin: 0;
}
.content-wrap.environment .content-section-wrap .content-sections .right .summary-title{
    margin: 0 0 50px;
}
.content-section-wrap .content-sections .sky .content-txt-box{
    flex-direction: row-reverse;
}
.content-section-wrap .content-sections .sky .content-txt-box .left{
    width: calc(50% - 60px);
}
.content-section-wrap .content-sections .nature .content-txt-box {
    padding: 0 0 50px;
}
.content-section-wrap .content-sections .nature .content-txt-box .summary-title{
    margin: 10px 0 0;
}
.content-section-wrap .content-sections .nature ul{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.content-section-wrap .content-sections .nature ul li{
    width: calc((100% - 16px) / 3);
}
.content-section-wrap .content-sections .plan .btn-go-master-plan{
    display: inline-block;
    margin: 60px 0 0;
    padding: 8px 14px;
    border: 1px solid #0065d6;
    border-radius: 6px;
    box-sizing: border-box;
}
.content-section-wrap .content-sections .plan .btn-go-master-plan span{
    position: relative;
    padding-right: 24px;
    font-weight: 500;
    font-size: 1.125rem;
    color: #0065d6;
}
.content-section-wrap .content-sections .plan .btn-go-master-plan span::after{
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform:translateY(-50%);
    width: 15px;
    height: 12px;
    background:url("../../images/user/sub/environment/ico-arw-left.png") no-repeat center/cover;
}

.content-section-wrap .content-sections .plan .box figure{
    position: relative;
}
.content-section-wrap .content-sections .plan .box figure strong{
    position: absolute;
    top: 10px;
    right: 10px;
    width: 84px;
    height: 84px;
    line-height: 84px;
    text-align: center;
    font-weight: 500;
    font-size: 1rem;
    color: #0065d6;
    border-radius: 50%;
    background-color: #fff;
    box-sizing: border-box;
}
.content-section-wrap .content-sections .plan .box figure strong span{
    display: inline-block;
    margin-left: 2px;
    font-weight: 700;
    font-size: 1.125rem;
}
.content-section-wrap .content-sections .plan .box .figure-caption{
    display:flex;
    align-items: center;
    justify-content: center;
    padding:20px 0 40px;
    color: #424755;
}
.content-section-wrap .content-sections .plan .box.btm .figure-caption{
    padding:20px 0 0 0;
}
.content-section-wrap .content-sections .plan .box .figure-caption span{
    position: relative;
    padding: 0 0 0 30px;
    font-size: 1.25rem;
}
.content-section-wrap .content-sections .plan .box .figure-caption span::before{
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform:translateY(-50%);
    width: 17px;
    height: 13px;
    background:url("../../images/user/sub/environment/ico-chck.png") no-repeat center/cover;
}
.content-section-wrap .content-sections .plan .box .figure-caption em{
    padding-left: 6px;
    font-style: normal;
    font-size: 1rem;
}
.content-section-wrap .content-sections .walk .content-txt-box{
    align-items: center;
}
.content-section-wrap .content-sections .walk .content-txt-box .right{
    width: calc(50% - 60px);
}
.content-section-wrap .content-sections .future .content-txt-box ul{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}
.content-section-wrap .content-sections .future .content-txt-box ul li{
    width: calc((100% - 8px) / 2);
}
.content-section-wrap .content-sections .future .content-txt-box ul li:nth-child(2){
    margin: 60px 0 0;
}
.content-section-wrap .content-sections .future .content-txt-box ul li:nth-child(4){
    margin: 60px 0 0;
}
.content-section-wrap .content-sections .housing .content-txt-box{
    padding: 0 0 50px;
}
.content-section-wrap .content-sections .education .content-txt-box{
    align-items: center;
}
.content-section-wrap .content-sections .education .right{
    width: calc( 50% - 60px);
}
.content-section-wrap .content-sections .education .summary-title{
    margin-top: 0;
}
.content-section-wrap .content-sections .medical .content-txt-box{
    align-items: center;
}
.content-section-wrap .content-sections .medical .content-txt-box .summary-title{
    margin-top: 0;
}
.btm-environ-box{
    margin: 100px 0 0;
    position: relative;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100vw - 120px);
    height: auto;
    background: url("../../images/user/sub/environment/bg-btm-environ.png") no-repeat center/cover;
    border-radius: 10px;
}
.content-section-wrap .content-sections .culture .content-txt-box{
    align-items: center;
}
.content-section-wrap .content-sections .culture .right {
    width: calc(50% - 60px);
}
.btm-environ-box .btm-environ-box-inner{
    margin: 0 auto;
    padding: 100px 20px;
    max-width: 1340px;
    width: 100%;
}
.btm-environ-box .btm-environ-box-inner .section-heading{
    padding: 0 0 56px;
    color: #fff;
}
.btm-environ-box .btm-environ-box-inner ul{
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.btm-environ-box .btm-environ-box-inner ul li{
    position: relative;
    width: calc( (100% - 20px) / 3);
    background-color: rgba(255,255,255,0.3);
    border-radius: 10px;
    box-sizing: border-box;
    transition: 0.35s cubic-bezier(.4,0,.6,1);
    z-index: 1;
}
.btm-environ-box .btm-environ-box-inner ul li .bg{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    z-index: -1;
}
.btm-environ-box .btm-environ-box-inner ul li .bg::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}
.btm-environ-box .btm-environ-box-inner ul li a{
    display: block;
    width: 100%;
    padding: 32px 0;
    text-align: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    transition: all 0.4s;
}
.btm-environ-box .btm-environ-box-inner ul li:hover a{
    position: relative;
    background-color:#000;
    transition: all 0.4s;
    z-index: 1;
}

/*  ========== 입지 ========== */
/* - 헤리티지 */
.content-wrap.location .content-intro .content-desc strong{
    color: #0065d6;
}
.content-wrap.location .content-section-wrap .content-sections .content-tit-box .section-heading{
    width: 100%;
    font-size: 2rem;
}
.content-wrap.location .content-section-wrap .content-sections .content-tit-box .section-heading em{
    display: inline-block;
    padding: 0 10px;
    vertical-align: bottom;
    font-style: normal;
    color: #0065d6;
}
.content-wrap.location .content-section-wrap .content-sections .summary-title{
    font-size: 1.5rem;
}
.content-wrap.location .content-section-wrap .content-sections .summary-text{
    font-size: 1.25rem;
}
.content-wrap.location .content-section-wrap .content-sections .left .leading-text-box{
    margin: 134px 0 0;
    text-align: left;
}
.content-wrap.location .content-section-wrap .content-sections .left .leading-text-box p{
    text-align: left;
}
.content-wrap.location .content-section-wrap .content-sections .left .leading-text-box p::before{
    left: 0;
    top: -35px;
    transform: initial;
}
.content-wrap.location .content-section-wrap .content-sections .left .leading-text-box p::after{
    top: initial;
    left: 0;
    bottom: -35px;
    transform: initial;
}
.content-wrap.location .content-section-wrap .content-sections .modern figure{
    padding: 50px 0 0;
}


/* - 최적의 교통허브 */
.content-wrap.transport .content-intro{
    padding: 0 0 60px;
}
.content-wrap.transport .content-intro .content-desc em{
    display: inline-block;
    padding: 2px 6px;
    font-style: normal;
    font-size: 1.125rem;
    color: #424755;
    border:1px solid #424755;
    border-radius:20px;
    box-sizing: border-box;
}
.content-wrap.transport .content-section-wrap .content-sections .content-section.access .left{
    width: calc( 100% - 670px);
}
.content-wrap.transport .content-section-wrap .content-sections .content-section.access .right{
    width: 670px;
}
.content-wrap.transport .content-section-wrap .content-sections .content-section.access .right .pos-txt strong{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 10px;
    width: 100%;
    max-width: 300px;
    height: 95px;
    line-height: 95px;
    text-align: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: #fff;
    background-color: #000;
    border-radius: 50px;
    box-sizing: border-box;
}
.content-wrap.transport .content-section-wrap .content-sections .content-section.access .right .pos-txt strong.first{
    margin-right: 50px;
}
.content-wrap.transport .content-section-wrap .content-sections .content-section.access .right .pos-txt strong.first::after{
    content: "";
    position: absolute;
    right: -47px;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 56px;
    background:url("../../images/user/sub/location/ico-arw.png") no-repeat center/cover;
}
.content-wrap.transport .content-section-wrap .content-sections .content-section.access .right .pos-txt strong img{
    width: auto;
}
.content-wrap.transport .content-section-wrap .content-sections .content-section.access .right .method-txt{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 50px 0 0;
}
.content-wrap.transport .content-section-wrap .content-sections .content-section.access .right .method-txt p{
    width: 50%;
}
.content-wrap.transport .content-section-wrap .content-sections .content-section.access .right .method-txt p em{
    display: block;
    position: relative;
    font-style: normal;
    font-weight: 700;
    font-size: 1.5rem;
    color: #101218;
}
.content-wrap.transport .content-section-wrap .content-sections .content-section.access .right .method-txt p em::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
}
.content-wrap.transport .content-section-wrap .content-sections .content-section.access .right .method-txt p em.car{
    padding-left: 70px;
}
.content-wrap.transport .content-section-wrap .content-sections .content-section.access .right .method-txt p em.car::before{
    width: 40px;
    height: 34px;
    background: url("../../images/user/sub/location/ico-car.png") no-repeat center/cover;
}
.content-wrap.transport .content-section-wrap .content-sections .content-section.access .right .method-txt p em.public{
    padding-left:110px;
}
.content-wrap.transport .content-section-wrap .content-sections .content-section.access .right .method-txt p em.public::before{
    width: 84px;
    height: 39px;
    background: url("../../images/user/sub/location/ico-public.png") no-repeat center/cover;
}
.content-wrap.transport .content-section-wrap .content-sections .content-section.access .right .method-txt p span{
    display: block;
    padding: 15px 0 0;
    font-weight: 700;
    font-size: 2rem;
    color: #0065d6;
}
.content-wrap.transport .content-section-wrap .content-sections .content-section.access .right .btm{
    padding: 100px 0 0;
}
.content-wrap.transport .content-txt-box .list li + li{
    border-top: 1px solid #575d6e;
}
.content-wrap.transport .content-section-wrap .content-sections .content-section.whole .content-tit-box{
    flex-direction: column;
}
.content-wrap.transport .content-section-wrap .content-sections .content-section.whole .content-tit-box .section-heading{
    width:100%;
}
.content-wrap.transport .content-section-wrap .content-sections .content-section.whole .summary-title{
    padding: 100px 0 0;
    font-weight: 700;
    font-size: 2rem;
    color: #101218;
}
.content-wrap.transport .content-section-wrap .content-sections .content-section.whole .summary-title strong{
    font-weight: 700;
    color: #0065d6;
}
.content-wrap.transport .content-section-wrap .content-sections .content-section.whole .content-txt-box{
    align-items: flex-end;
    margin-top: -400px;
}
.content-wrap.transport .content-section-wrap .content-sections .content-section.whole .list{
    max-width: 460px;
    width: 100%;
}
.content-wrap.transport .content-section-wrap .content-sections .content-section.whole .list li{
    padding: 30px 0;
}
.content-wrap.transport .content-section-wrap .content-sections .content-section.whole .list li p{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    width: 100%;
    padding-left: 30px;
}
.content-wrap.transport .content-section-wrap .content-sections .content-section.whole .list li p::before{
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 18px;
    height: 20px;
    background: url("../../images/user/sub/location/ico-pos.png") no-repeat center/cover;
}
.content-wrap.transport .content-section-wrap .content-sections .content-section.whole .list li p strong{
    display: inline-block;
    width: 180px;
    font-weight: 700;
    font-size: 1.25rem;
    color: #101218;
}
.content-wrap.transport .content-section-wrap .content-sections .content-section.whole img{
    margin-left: auto;
    margin-right: 50px;
}
.content-wrap.transport .content-section-wrap .content-sections .content-section.whole .list li p span{
    font-weight: 400;
    font-size: 1.25rem;
    color: #101218;
}
.content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .content-txt-box{
    flex-direction: column;
}
.content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 60px 0 0;
    width: 100%;
}
.content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.top .right{
    padding-left: 50px;
    box-sizing: border-box;
}
.content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.btm{
    flex-direction: column;
}
.content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.btm .summary-title{
    width:100%;
    font-size:1.75rem;
}
.content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.btm .btm_box{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: -62px;
}
.content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.btm .left{
    padding-right: 50px;
    width: 460px;
}
.content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box ul li + li{
    margin: 28px 0 0;
    padding: 28px 0 0;
}
.content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.top dl{
    padding: 0;
}
.content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.top dl dt{
    position: relative;
    padding-left: 40px;
    font-size: 1.5rem;
}
.content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.top dl dt::before{
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
}
.content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.top li:nth-child(1) dl dt::before{
    width: 27px;
    height: 30px;
    background: url("../../images/user/sub/location/ico-railroad.png") no-repeat center/cover;
}
.content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.top li:nth-child(2) dl dt::before{
    width: 31px;
    height: 28px;
    background: url("../../images/user/sub/location/ico-bus.png") no-repeat center/cover;
}
.content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.top li:nth-child(3) dl dt::before{
    width: 27px;
    height: 27px;
    background: url("../../images/user/sub/location/ico-road.png") no-repeat center/cover;
}
.content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.top dl dd{
    font-weight: 400;
    font-size: 1.25rem;
}
.content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.top dl dd strong{
    font-weight: 400;
    color: #0065d6;
}
.content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.btm .right{
    width: calc( 100% - 510px);
}
.content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.btm .list{
    padding: 80px 0 0;
}
.content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.btm .list li{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
.content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.btm .list li strong{
    width: 40%;
    font-weight: 700;
    font-size: 1.25rem;
    color: #101218;
}
.content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.btm .list li strong em{
    font-style: normal;
    font-weight: 700;
    font-size: 1.5rem;
}
.content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.btm .list li span{
    width: 60%;
    font-weight: 400;
    font-size: 1.25rem;
}
.content-wrap.green .content-section-wrap{
    margin: 0;
    border-top: none;
}
/* - 풍부한 자연환경 */
.content-wrap.green .content-section-wrap .content-section.network .content-txt-box{
    align-items: stretch;
}
.content-wrap.green .content-section-wrap .content-section.network .content-txt-box .left{
    display: flex;
    flex-direction: column;
}
.content-wrap.green .content-section-wrap .content-section.network .summary-title{
    font-weight: 700;
    font-size: 2.5rem;
    color: #101218;
}
.content-wrap.green .content-section-wrap .content-section.network .summary-text{
    font-weight: 400;
    font-size: 2rem;
    color: #101218;
}
.content-wrap.green .content-section-wrap .content-section.network figure{
    margin-top: auto;
}
.content-wrap.green .content-section-wrap .content-section.downtown .content-tit-box{
    flex-direction: column;
}
.content-wrap.green .content-section-wrap .content-section.downtown .content-tit-box .summary-title{
    width: 100%;
    text-align: center;
    font-weight: 400;
    font-size: 2rem;
    color: #101218;
}
.content-wrap.green .content-section-wrap .content-section.downtown .content-tit-box .section-heading{
    padding: 0;
    width: 100%;
    text-align: center;
    font-weight: 700;
    font-size: 2.5rem;
    color: #101218;
}
.content-wrap.green .content-section-wrap .content-section.downtown .content-txt-box{
    align-items: center;
    justify-content: center;
}

/* - 글로벌 비즈니스 지구 */
.content-wrap.business .content-section-wrap{
    margin: 0;
    border-top: none;
}
.content-wrap.business .content-section-wrap .content-sections{
    width: 100%;
}
.content-wrap.business .content-section-wrap .content-section.headquarter .content-txt-box .left{
    width: calc(100% - 810px);
}
.content-wrap.business .content-section-wrap .content-section.headquarter .content-txt-box .right{
    width: 810px;
}
.content-wrap.business .content-section-wrap .content-section.headquarter .content-txt-box ul{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}
.content-wrap.business .content-section-wrap .content-section.headquarter .content-txt-box ul li{
    width: calc( (100% - 60px) / 2);
}
.content-wrap.business .content-section-wrap .content-section.headquarter .content-txt-box ul li:nth-child(2){
    margin-top: 150px;
}
.content-wrap.business .content-section-wrap .content-section.headquarter .content-txt-box ul li:nth-child(3){
    margin-top: -150px;
}
.content-wrap.business .content-section-wrap .content-section.headquarter .content-txt-box ul li:nth-child(5){
    margin-top: -115px;
}
.content-wrap.business .content-section-wrap .content-section.headquarter .content-txt-box ul li .figure-info{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin: 20px 0 90px;
}
.content-wrap.business .content-section-wrap .content-section.headquarter .content-txt-box ul li:last-child .figure-info{
    margin-bottom: 0;
}
.content-wrap.business .content-section-wrap .content-section.headquarter .content-txt-box ul li .figure-info em{
    flex-shrink: 0;
    display: inline-block;
    width: 50px;
    font-style: normal;
    font-weight: 700;
    font-size: 1.5rem;
    color: #0065d6;
}
.content-wrap.business .content-section-wrap .content-section.headquarter .content-txt-box ul li .figure-info p{
    font-weight: 500;
    font-size: 1.5rem;
    color: #101218;
    word-break: keep-all;
}
.content-wrap.business .content-section-wrap .content-section.hub .content-txt-box{
    align-items: center;
    justify-content: center;
}
.content-wrap.business .content-section-wrap .content-section.hub .content-txt-box .section-heading{
    padding: 80px 0 30px;
    text-align: right;
    color: #101218;
}
.content-wrap.business .content-section-wrap .content-section.hub .content-txt-box .section-heading strong{
    font-weight: 700;
    color: #0065d6;
}
.content-wrap.business .content-section-wrap .content-section.hub .content-txt-box figure p{
    padding: 12px 0 0;
    text-align: center;
    font-weight: 400;
    font-size: 1rem;
    color: #424755;
}
.content-wrap.business .content-section-wrap .content-section.potential .left{
    width: calc(100% - 690px);
}
.content-wrap.business .content-section-wrap .content-section.potential .right{
    width: 690px;
}
.content-wrap.business .content-section-wrap .content-section.potential ul li + li{
    padding-top: 80px;
}
.content-wrap.business .content-section-wrap .content-section.potential ul li dl{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0;
}
.content-wrap.business .content-section-wrap .content-section.potential ul li dl dt{
    padding: 0;
    width: 270px;
    font-weight: 700;
    font-size: 2rem;
    color: #101218;
}
.content-wrap.business .content-section-wrap .content-section.potential ul li dl dd{
    width: calc(100% - 270px);
}
.content-wrap.business .content-section-wrap .content-section.potential ul li dl dd div{
    padding: 0 0 50px;
    font-size: 1.5rem;
    color: #101218;
}
.content-wrap.business .content-section-wrap .content-section.potential ul li dl dd p{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-bottom: 20px;
}
.content-wrap.business .content-section-wrap .content-section.potential ul li dl dd p strong{
    display: inline-block;
    padding-right: 30px;
    font-weight: 700;
    font-size: 1.25rem;
    color: #0065d6;
}
.content-wrap.business .content-section-wrap .content-section.potential ul li dl dd p span{
    font-weight: 400;
    font-size: 1.25rem;
    color: #424755;
}
.content-wrap.business .content-section-wrap .content-section.potential ul li figure img{
    margin-left: auto;
}
.content-wrap.business .content-section-wrap .content-section.info .content-txt-box{
    align-items: stretch;
}
.content-wrap.business .content-section-wrap .content-section.info .content-txt-box > div{
    width: calc( (100% - 80px) / 2);
}
.content-wrap.business .content-section-wrap .content-section.info .top{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0 0 60px;
}
.content-wrap.business .content-section-wrap .content-section.info .summary-desc{
    margin: 5px 0 0 60px;
    font-weight: 400;
    font-size: 1.5rem;
    color: #101218;
    word-break: keep-all;
}
.content-wrap.business .content-section-wrap .content-section.info .btm{
    padding: 40px;
    background-color: #424755;
    border-radius: 10px;
    box-sizing: border-box;
}
.content-wrap.business .content-section-wrap .content-section.info .left .btm{
    background-color: #0065d6;
}
.content-wrap.business .content-section-wrap .content-section.info .btm dl{
    padding: 0;
}
.content-wrap.business .content-section-wrap .content-section.info .btm dl.last{
    padding: 50px 0 0;
}
.content-wrap.business .content-section-wrap .content-section.info .btm dl dt{
    display: inline-block;
    padding: 5px 20px;
    font-weight: 500;
    font-size: 1.5rem;
    color: #101218;
    background-color: #fff;
    border-radius: 20px;
    box-sizing: border-box;
}
.content-wrap.business .content-section-wrap .content-section.info .btm dl dd{
    padding: 22px 0 0;
    font-weight: 500;
    font-size: 1.25rem;
    color: #fff;
    word-break: keep-all;
}

/* - 해외 사례 비교 */
.content-wrap.cases .content-intro{
    position: relative;
    z-index: 1;
}
.content-wrap.cases .content-intro .summary{
    margin-left: auto;
    padding: 40px 0 0;
}
.content-wrap.cases .content-intro .summary .summary-title{
    margin-bottom: 30px;
    font-weight: 700;
    font-size:2rem;
    color: #101218;
}
.content-wrap.cases .content-intro .summary .summary-title strong{
    font-weight: 700;
    color: #0065d6;
}
.content-wrap.cases .content-intro .summary .summary-text{
    line-height: 1.6;
    font-size: 1.5rem;
}
.content-wrap.cases .content-intro .bg{
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: -1;
}
.content-wrap.cases .content-intro ul{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 250px 0 0;
}
.content-wrap.cases .content-intro ul li{
    margin:0 3px 10px
}
.content-wrap.cases .content-intro ul li p{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 10px;
}
.content-wrap.cases .content-intro ul li p em{
    display: inline-block;
    margin-right: 10px;
    width: 30px;
    height: 30px;
    line-height: 32px;
    text-align: center;
    font-style: normal;
    font-weight: 700;
    font-size: 1.25rem;
    color: #fff;
    background-color: #424755;
    border-radius: 50%;
}
.content-wrap.cases .content-intro ul li p span{
    font-weight: 700;
    font-size: 1.25rem;
    color: #101218;
}
.content-wrap.cases .content-intro .center-box{
    position: relative;
    margin: 140px auto 0;
}
.content-wrap.cases .content-intro .center-box .section-heading{
    position: absolute;
    top: -90px;
    left: -45px;
}
.content-wrap.cases .content-intro .center-box .section-heading span{
    position: relative;
    text-transform: uppercase;
}
.content-wrap.cases .content-intro .center-box .section-heading span::after{
    content: "";
    position:absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 4px;
    background-color:#101218;
}
.content-wrap.cases .content-section-wrap .content-sections{
    width: 100%;
}
.content-wrap.cases .content-section-wrap .content-section.world .content-tit-box{
    padding: 0 0 70px;
}
.content-wrap.cases .content-section-wrap .content-section.world .section-heading{
    font-size: 2.5rem;
    color: #101218;
}
.content-wrap.cases .content-section-wrap .content-section.world .section-heading strong{
    font-weight: 700;
    color: #0065d6;
}
.content-wrap.cases .content-section-wrap .content-section.world .summary-desc{
    font-weight: 500;
    font-size: 1.5rem;
    color: #101218;
}
.content-wrap.cases .content-section-wrap .content-section.world .summary-desc strong{
    font-weight: 700;
    color: #0065d6;
}
.content-wrap.cases .content-section-wrap .content-section.world ul{
    display: flex;
    align-items: center;
    justify-content: center;
}
.content-wrap.cases .content-section-wrap .content-section.world ul li{
    position: relative;
}
.content-wrap.cases .content-section-wrap .content-section.world ul li:nth-child(2){
    margin: 0 100px;
}
.content-wrap.cases .content-section-wrap .content-section.world ul li:nth-child(2)::before{
    content: "";
    position: absolute;
    left: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 102px;
    background: url("../../images/user/sub/location/cases-prev.png") no-repeat center/cover;
}
.content-wrap.cases .content-section-wrap .content-section.world ul li:nth-child(2)::after{
    content: "";
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 102px;
    background: url("../../images/user/sub/location/cases-next.png") no-repeat center/cover;
}
.content-wrap.cases .content-section-wrap .content-section.world ul li .txt{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    text-align: center;
    color: #fff;
}
.content-wrap.cases .content-section-wrap .content-section.world ul li .txt em{
    font-style: normal;
    font-weight: 700;
}
.content-wrap.cases .content-section-wrap .content-section.world ul li .txt p{
    line-height: 1.3;
    font-weight: 600;
    font-size: 1.5rem;
}
.content-wrap.cases .content-section-wrap .content-section.world ul li .txt strong{
    display: block;
    padding: 15px 0;
    font-weight: 700;
    font-size: 1.875rem;
}
.content-wrap.cases .content-section-wrap .content-section.world ul li .txt strong em{
    font-size: 2.5rem;
}
.content-wrap.cases .content-section-wrap .content-section.world ul li .txt span{
    line-height: 1.1;
    font-weight: 700;
    font-size: 1.5rem;
}
.content-wrap.cases .content-section-wrap .content-section.world ul li .txt span em{
    font-size: 2.5rem;
}
.content-wrap.cases .content-section-wrap .content-section.world ul li:nth-child(2) .txt p{
    font-weight: 700;
    font-size: 2.5rem;
}
.content-wrap.cases .content-section-wrap .content-section.world ul li:nth-child(2) .txt strong{
    padding-bottom: 0;
    font-size: 3.125rem;
}
.content-wrap.cases .content-section-wrap .content-section.world ul li:nth-child(2) .txt strong em{
    font-size: 4.375rem;
}

.content-wrap.cases .content-section-wrap .content-section.three .content-tit-box{
    flex-direction: column;
    padding: 0;
}
.content-wrap.cases .content-section-wrap .content-section.three .content-txt-box{
    align-items: flex-end;
    margin-top:-100px;
}
.content-wrap.cases .content-section-wrap .content-section.three .content-txt-box .left{
    max-width: 360px;
    width: 100%;
}
.content-wrap.cases .content-section-wrap .content-section.three .content-txt-box .right{
    width: calc( 100% - 420px );
}
.content-wrap.cases .content-section-wrap .content-section.three .section-heading{}
.content-wrap.cases .content-section-wrap .content-section.three .summary-desc{
    margin: 0;
    padding: 30px 0 0;
    font-weight: 500;
    font-size: 1.5rem;
    color: #101218;
}
.content-wrap.cases .content-section-wrap .content-section.three .section-heading strong{
    font-weight: 700;
    color: #0065d6;
}
.content-wrap.cases .content-section-wrap .content-section.three figure .caption{
    padding: 0 0 10px;
    font-size: 1rem;
    color: #424755;
}
.content-wrap.cases .content-section-wrap .content-section.three .right figure img{
    margin-left: auto;
}

/*  ========== 개발계획 ========== */
/* -컨셉 */
.content-wrap.concept .content-intro .project-heading{
    font-weight: 700;
    font-size: 3.75rem;
}
.content-wrap.concept .content-intro figure{
    position: relative;
    padding-top: 90px;
}
.content-wrap.concept .content-intro figure .figure-tit{
    position: absolute;
    right: 110px;
    top: 0;
}
.content-wrap.concept .content-intro figure p{
    position: relative;
    font-weight: 600;
    font-size: 2.5rem;
    color: #101218;
}
.content-wrap.concept .content-intro figure p span{
    position: relative;
}
.content-wrap.concept .content-intro figure p span::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #101218;
}
.content-wrap.concept .content-section-wrap{
    margin:0;
    border-top: none;
}
.content-wrap.concept .content-section-wrap .content-sections{
    margin:0;
    width: 100%;
}
.content-wrap.concept .content-section-wrap .content-sections .content-tit-box .section-heading{
    width:100%;
}
.content-wrap.concept .content-section-wrap .content-sections .content-section .content-txt-box .chk-list li{
    padding: 12px 0;
}

.content-wrap.plan .content-section-wrap .content-sections .content-section .content-txt-box .chk-list p{
    position: relative;
    padding-left: 40px;
    font-size: 1.25rem;
    font-weight: 500;
    color: #101218;
    word-break: keep-all;
}
.content-wrap.plan .content-section-wrap .content-sections .content-section .content-txt-box .chk-list p::before{
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 17px;
    height: 13px;
    background: url("../../images/user/sub/plan/ico-chck.png") no-repeat center/cover;
}

.content-wrap.concept .content-section-wrap .content-sections .content-section.first .left{
    width: 600px;
}
.content-wrap.concept .content-section-wrap .content-sections .content-section.first .right{
    width:calc( 100% - 600px);
}
.content-wrap.concept .content-section-wrap .content-sections .content-section.first .content-txt-box{
    align-items: center;
}
.content-wrap.concept .content-section-wrap .content-sections .content-section.first .content-txt-box .chk-list li + li{
    border-top: 1px solid #d7dbe7;
}
.content-wrap.concept .content-section-wrap .content-sections .content-section.list .left{
    width: calc( 100% - 900px);
}
.content-wrap.concept .content-section-wrap .content-sections .content-section.list .right{
    width: 900px;
}
.content-wrap.concept .content-section-wrap .content-sections .content-section.list .en{
    font-weight: 700;
    font-size: 1.5rem;
    color: #bac0c9;
}
.content-wrap.concept .content-section-wrap .content-sections .content-section.list .summary-text{
    padding-top: 60px;
    font-size: 1.25rem;
    color: #424755;
}
.content-wrap.concept .content-section-wrap .content-sections .content-section.list .flex-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width:100%;
    padding-right: 40px;
    box-sizing: border-box;
}
.content-wrap.concept .content-section-wrap .content-sections .content-section.list .chk-list{
    max-width: 450px;
}
.content-wrap.concept .content-section-wrap .content-sections .content-section.list .chk-list p{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.content-wrap.concept .content-section-wrap .content-sections .content-section.list .chk-list p strong{
    width: 180px;
    font-weight: 500;
    font-size: 1.25rem;
    color: #101218;
}
.content-wrap.concept .content-section-wrap .content-sections .content-section.list .chk-list p span{
    font-weight: 400;
    font-size: 1rem;
    color: #101218;
}
.content-wrap.concept .content-section-wrap .content-sections .content-section.list.scd figure{
    padding-right: 50px;
}
.content-wrap.concept .content-section-wrap .content-sections .content-section.center .section-heading{
    text-align: center;
}
.content-wrap.concept .content-section-wrap .content-sections .content-section.center .content-txt-box{
    width: 100%;
}
.content-wrap.concept .content-section-wrap .content-sections .content-section.center ul{
    display: flex;
    align-items: stretch;
    justify-content: center;
    width:100%;
}
.content-wrap.concept .content-section-wrap .content-sections .content-section.center ul li{
    padding: 50px 30px;
    width: calc((100% - 20px) / 3);
    text-align: center;
    border-radius: 10px;
    box-sizing: border-box;
}
.content-wrap.concept .content-section-wrap .content-sections .content-section.center ul li:nth-child(1){
    background: url("../../images/user/sub/plan/concept-bg01.png") no-repeat center/cover;
}
.content-wrap.concept .content-section-wrap .content-sections .content-section.center ul li:nth-child(2){
    margin: 0 10px;
    background: url("../../images/user/sub/plan/concept-bg02.png") no-repeat center/cover;
}
.content-wrap.concept .content-section-wrap .content-sections .content-section.center ul li:nth-child(3){
    background: url("../../images/user/sub/plan/concept-bg03.png") no-repeat center/cover;
}
.content-wrap.concept .content-section-wrap .content-sections .content-section.center ul li dl{
    padding: 0;
}
.content-wrap.concept .content-section-wrap .content-sections .content-section.center ul li dl dt{
    position: relative;
    padding: 0 0 30px;
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
}
.content-wrap.concept .content-section-wrap .content-sections .content-section.center ul li dl dt::after{
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}
.content-wrap.concept .content-section-wrap .content-sections .content-section.center ul li:nth-child(1) dl dt::after{
    background-color: #4293f5;
}
.content-wrap.concept .content-section-wrap .content-sections .content-section.center ul li:nth-child(2) dl dt::after{
    background-color: #00bda2;
}
.content-wrap.concept .content-section-wrap .content-sections .content-section.center ul li:nth-child(3) dl dt::after{
    background-color: #7e7bc7;
}
.content-wrap.concept .content-section-wrap .content-sections .content-section.center ul li dl dd{
    font-size: 1.25rem;
    color: #fff;
}
/* 마스터 */
.content-wrap.master .content-intro figure{
    padding-top: 60px;
}
.content-wrap.master .master-plan .content-txt-box{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding:100px 0 0;
}
.content-wrap.master .master-plan .content-txt-box .left{
    width: calc( 100% - 880px);
}
.content-wrap.master .master-plan .content-txt-box .right{
    max-width: 880px;
    width: 100%;
}
.content-wrap.master .master-plan .content-txt-box .summary-text{
    padding: 50px 0;
    font-size: 1.25rem;
}
.content-wrap.master .master-plan .content-txt-box .zone-list{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding:12px 0;
}
.content-wrap.master .master-plan .content-txt-box .zone-list li{
    padding: 8px 0;
    width: 50%;
    font-weight: 400;
    font-size: 1.25rem;
    color: #101218;
}
.content-wrap.master .master-plan .content-txt-box .zone-list li span{
    position: relative;
    padding-left: 40px;
}
.content-wrap.master .master-plan .content-txt-box .zone-list li span::before{
    content: "";
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border: 1px solid #bac0c9;
    border-radius: 50%;
    box-sizing: border-box;
}
.content-wrap.master .master-plan .content-txt-box .zone-list li:nth-child(1) span::before{
    background-color: #66a3d6;
}
.content-wrap.master .master-plan .content-txt-box .zone-list li:nth-child(2) span::before{
    background-color: #66d7c7;
}
.content-wrap.master .master-plan .content-txt-box .zone-list li:nth-child(3) span::before{
    background-color: #b7b5e6;
}
.content-wrap.master .master-plan .content-txt-box .zone-list li:nth-child(4) span::before{
    background-color: #86eff8;
}
.content-wrap.master .master-plan .content-txt-box .zone-list li:nth-child(5) span::before{
    background-color: #bcffca;
}
.content-wrap.master .master-plan .content-txt-box .zone-list li:nth-child(6) span::before{
    background-color: #f8ff88;
}
.content-wrap.master .master-plan .content-txt-box .zone-list li:nth-child(7) span::before{
    background-color: #828282;
}
.content-wrap.plan table{
    width: 100%;
    border-top: 1px solid #878b9d;
}
.content-wrap.plan table tr{
    border-bottom: 1px solid #d7dbe7;
}
.content-wrap.plan table th{
    padding: 10px 0;
    text-align: center;
    font-weight: 700;
    font-size: 1.125rem;
    color: #424755;
}
.content-wrap.plan table td{
    padding: 10px 0;
    text-align: center;
    font-size: 1.125rem;
    color: #424755;
}
.content-wrap.plan table td.bd{
    font-weight: 700;
}
.content-wrap.plan table td.bd.pd20{
    padding: 10px 20px;
}
.content-wrap.master .content-section-wrap{
    margin: 0;
    border-top: none;
}
.content-wrap.master .content-sections #plan2{
    margin: 0;
    border-top: none;
}
.content-wrap.master .master-plan.zone{
    margin: 100px 0 0;
    padding: 100px 0 0;
    border-top: 1px solid #878b9d;
}
.content-wrap.master .master-plan .section-heading{
    width: 100%;
}
.content-wrap.master .master-plan .zone-detail-list li{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 0;
    border-bottom: 1px solid #d7dbe7;
    box-sizing: border-box;
}
.content-wrap.master .master-plan .zone-detail-list li:last-child{
    border-bottom: none;
}
.content-wrap.master .master-plan .zone-detail-list li .initial{
    margin: 0 auto;
    text-align: center;
    width: 260px;
}
.content-wrap.master .master-plan .zone-detail-list li .initial .tit{
    display: inline-block;
    width: 160px;
    padding: 5px 0;
    text-align: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: #fff;
    background-color: #0065d6;
    border-radius: 30px;
    box-sizing: border-box;
}
.content-wrap.master .master-plan .zone-detail-list li .initial img{
    margin: 24px auto 0;
}
.content-wrap.master .master-plan .zone-detail-list li .initial span{
    display: block;
    padding: 20px 0 0;
    color: #878b9d;
}
.content-wrap.master .master-plan .zone-detail-list li:nth-child(2) .initial .tit{
    background-color: #00bda2;
}
.content-wrap.master .master-plan .zone-detail-list li:nth-child(3) .initial .tit{
    background-color: #8784d6;
}
.content-wrap.master .master-plan .zone-detail-list li .info{
    margin-left: auto;
    width: calc( 100% - 280px);
}
.content-wrap.master .master-plan .zone-detail-list li .info dt{
    padding: 0 0 30px;
    font-weight: 700;
    font-size: 1.25rem;
    color: #101218;
}
.content-wrap.master .master-plan .zone-detail-list li .info dd{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.content-wrap.master .master-plan .zone-detail-list li .info dd p{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 0 8px;
    width: 100%;
    font-weight: 700;
    font-size: 1.25rem;
    color: #101218;
}
.content-wrap.master .master-plan .zone-detail-list li:nth-child(1) .info dd p{
    width: 50%;
}
.content-wrap.master .master-plan .zone-detail-list li .info dd p strong{
    width: 66px;
    font-weight: 700;
    font-size: 1.125rem;
    color: #424755;
}
.content-wrap.master .master-plan .zone-detail-list li .info dd p span{
    font-weight: 400;
    font-size: 1.125rem;
    color: #424755;
}
.content-wrap.master .master-plan .zone-detail-list li .info dd p span em{
    display: inline-block;
    margin: 0 10px 0 0;
    padding: 3px 0;
    width: 68px;
    text-align: center;
    vertical-align: middle;
    font-style: normal;
    font-size: 0.875rem;
    color: #424755;
    background-color: #ecf0f6;
    border-radius: 20px;
    box-sizing: border-box;
}
.content-wrap.master .master-plan.zone .content-txt-box{
    align-items: center;
}
.content-wrap.master .master-plan.zone .content-txt-box .left{
    width: 725px;
}
.content-wrap.master .master-plan.zone .content-txt-box .right{
    width: calc( 100% - 785px);
}
.content-wrap.master .master-plan.zone .content-txt-box .right figure{
    margin-left: auto;
}
.content-wrap.master .master-plan.zone .content-txt-box .right figure .figure-txt{
    display: block;
    text-align: center;
}
.content-wrap.master .master-plan.zone .content-txt-box .right figure .figure-txt p{
    margin: 20px 0 10px;
    padding: 10px 20px 9px;
    text-align: center;
    font-weight: 700;
    font-size: 1.125rem;
    color: #101218;
    word-break: keep-all;
    background-color: #ecf0f6;
    border-radius: 30px;
    box-sizing: border-box;
}
.content-wrap.master .master-plan.zone .content-txt-box .right figure .figure-txt span{
    color: #878b9d;
}
.content-wrap.master .master-plan.zone .zone-box{
    margin: 100px 0 0;
    padding: 100px 0 0;
    height: auto;
    border-top: 1px solid #878b9d;
}
.content-wrap.master .master-plan.zone .zone-box ul li + li{
    padding-top: 100px;
}
.content-wrap.master .master-plan.zone .zone-box ul li h4{
    padding: 0 0 40px;
    font-weight: 700;
    font-size:2rem;
    color: #101218;
}
.content-wrap.master .master-plan.zone .zone-box ul li .flex-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.content-wrap.master .master-plan.zone .zone-box ul li .flex-inner .left{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 725px;
}
.content-wrap.master .master-plan.zone .zone-box ul li .flex-inner .left img{
    margin-right:50px;
}
.content-wrap.master .master-plan.zone .zone-box ul li .flex-inner .left .major{
    margin-right:auto;
}
.content-wrap.master .master-plan.zone .zone-box ul li .flex-inner .left .major p{
    padding: 15px 0;
    width: 280px;
    text-align: center;
    font-weight: 700;
    font-size:1.25rem;
    color: #c8e6ff;
    background-color:#000;
    border-radius: 30px;
    box-sizing: border-box;
}
.content-wrap.master .master-plan.zone .zone-box ul li .flex-inner .left .major p + p{
    margin: 10px 0 0;
}
.content-wrap.master .master-plan.zone .zone-box ul li:nth-child(2) .flex-inner .left .major p{
    color: #a1fff2;
}
.content-wrap.master .master-plan.zone .zone-box ul li:nth-child(3) .flex-inner .left .major p{
    color: #cbc9ff;
}
.content-wrap.master .master-plan.zone .zone-box ul li .flex-inner .right{
    width: calc( 100% - 760px);
}
.content-wrap.master .master-plan.zone .zone-box ul li .chk-list li{
    padding: 12px 0;
}
.content-wrap.master .master-plan.zone .zone-box ul li .chk-list p{
    position: relative;
    padding-left: 40px;
    font-size: 1.25rem;
    font-weight: 400;
    color: #101218;
    word-break: keep-all;
}
.content-wrap.master .master-plan.zone .zone-box ul li .chk-list p::before{
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 17px;
    height: 13px;
    background: url("../../images/user/sub/plan/ico-chck.png") no-repeat center/cover;
}

/* - 녹지계획 */
.content-wrap.green .content-section-wrap .content-sections {
    margin: 0;
    width: 100%;
}
.content-wrap.green .content-section .section-heading{
    padding:0 0 60px;
}
.content-wrap.green .content-section-wrap .content-sections .content-tit-box{
    align-items: center;
}
.content-wrap.green .content-tit-box .summary-title{
    margin-bottom: 0;
    font-size: 1.5rem;
}
.content-wrap.green .content-tit-box .summary-text{
    text-align: right;
    font-size: 1.25rem;
}
.content-wrap.green figure{
    text-align: center;
}
.content-wrap.green figure .figure-caption{
    padding: 30px 0 50px;
    font-size: 1.125rem;
    color:#424755;
    word-break: keep-all;
}
.content-wrap.green figure .figure-txt{
    line-height: 1.5;
    font-size: 1.25rem;
    color:#424755;
    word-break: keep-all;
}
.content-wrap.green figure .figure-txt strong{
    font-weight: 700;
}
.content-wrap.green .content-sections .strategy-list{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 0;
}
.content-wrap.green .content-sections .strategy-list li{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: calc( (100% - 20px) / 3);
}
.content-wrap.green .content-sections .strategy-list li p{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 16px 10px;
    width: 100%;
    border-radius: 80px;
    box-sizing: border-box;
}
.content-wrap.green .content-sections .strategy-list li:nth-child(1) p{
    background-color: #0065d6;
}
.content-wrap.green .content-sections .strategy-list li:nth-child(2) p{
    background-color: #00bda2;
}
.content-wrap.green .content-sections .strategy-list li:nth-child(3) p{
    background-color: #8784d6;
}
.content-wrap.green .content-sections .strategy-list li p span{
    display: block;
    font-weight: 700;
    font-size: 1.75rem;
    color: rgba(255,255,2550.5);
}
.content-wrap.green .content-sections .strategy-list li p strong{
    font-weight: 400;
    font-size: 1.25rem;
    color: #fff;
}
.content-wrap.green .content-sections .strategy-list li .txt{
    padding: 50px 10px;
    width: 100%;
    text-align: center;
    font-weight: 400;
    font-size: 1.25rem;
    color: #424755;
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
    background: linear-gradient(0deg, #edf0f6, #fff);
}
.content-wrap.green .content-sections .strategy-list li .txt strong{
    font-weight: 700;
    color: #101218;
}
.content-wrap.green .content-section-wrap .content-sections .content-txt-box.city{
    flex-direction: column;
}
.content-wrap.green .content-section-wrap .content-sections .content-txt-box.city .summary-title{
    margin: 0 0 60px;
    width: 100%;
    font-size: 1.5rem;
}
.content-wrap.green .content-section-wrap .content-sections .content-txt-box.city .city-list{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap:wrap;
}
.content-wrap.green .content-section-wrap .content-sections .content-txt-box.city .city-list li{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0 0 30px;
    width: 50%;
}
.content-wrap.green .content-section-wrap .content-sections .content-txt-box.city .city-list li figure{
    width: calc( 100% - 350px);
}
.content-wrap.green .content-section-wrap .content-sections .content-txt-box.city .city-list li dl{
    padding: 0 0 0 30px;
    width: 350px;
    box-sizing: border-box;
}
.content-wrap.green .content-section-wrap .content-sections .content-txt-box.city .city-list li dl dt{
    font-weight: 700;
    font-size: 1.25rem;
    color: #101218;
}
.content-wrap.green .content-section-wrap .content-sections .content-txt-box.city .city-list li dl dd{
    font-weight: 400;
    font-size: 1.125rem;
    color: #424755;
}
.content-wrap.green .content-section-wrap .content-sections .content-txt-box.city .city-list li dl dd p{
    padding: 0 0 8px;
    font-weight: 700;
    font-size: 1rem;
    color: #bac0c9;
}
.content-wrap.green .content-section-wrap .content-sections .content-txt-box.city.last{
    margin: 60px 0 0;
    padding: 60px 0 0;
    border-top:1px solid #bac0c9;
}

/* - 교통계획 */
.content-wrap.traffic .content-section-wrap .content-sections{
    width: 100%;
}
.content-wrap.traffic .content-section-wrap .content-sections .content-desc{
    padding: 60px 0 0;
    font-size: 1.25rem;
    word-break: keep-all;
}
.content-wrap.traffic .content-section-wrap .content-sections .traffic-box.last{
    padding: 80px 0 0;
}
.content-wrap.traffic .content-section-wrap .content-sections .traffic-box .section-heading{
    font-weight: 700;
    font-size: 2rem;
    color: #101218;
}
.content-wrap.traffic .content-section-wrap .content-sections .traffic-box .section-heading em{
    display:block;
    font-style: normal;
    font-weight: 700;
    font-size: 1.5rem;
    color: #878b9d;
}
.content-wrap.traffic .content-section-wrap .content-sections .traffic-box ul{
    padding: 50px 0 0;
}
.content-wrap.traffic .content-section-wrap .content-sections .traffic-box ul li{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0 0 20px;
    background-color: #eff2f7;
    border-radius: 10px;
    box-sizing: border-box;
}
.content-wrap.traffic .content-section-wrap .content-sections .traffic-box ul li figure{
    width: 50%;
}
.content-wrap.traffic .content-section-wrap .content-sections .traffic-box ul li figure img{
    width: 100%;
}
.content-wrap.traffic .content-section-wrap .content-sections .traffic-box ul li dl{
    margin-left: 30px;
    padding: 0;
    width: calc(50% - 30px);
}
.content-wrap.traffic .content-section-wrap .content-sections .traffic-box ul li dl dt{
    font-weight: 700;
    font-size: 1.25rem;
    color: #101218;
}
.content-wrap.traffic .content-section-wrap .content-sections .traffic-box ul li dl dd{
    font-size: 1.125rem;
    color: #424755;
}
.content-wrap.traffic .content-section.table .content-txt-box .left {
    width: calc(100% - 880px);
}
.content-wrap.traffic .content-section.table .content-txt-box .right{
    max-width: 800px;
    width: 100%;
}
.content-wrap.traffic .content-section.table .content-txt-box .section-heading{
    padding: 0 0 60px;
}
.content-wrap.traffic .content-section.table .content-txt-box .summary-title{
    margin: 0 0 60px;
    font-size: 1.5rem;
}
.content-wrap.traffic .content-section.table figure img{
    width: 100%;
}
.content-wrap.traffic .content-section.table .chk-list{
    padding: 30px 0 0;
}
.content-wrap.traffic .content-section.table .chk-list li{
    padding: 0 0 14px;
}
.content-wrap.traffic .content-section.table .chk-list li p strong{
    display: block;
    font-weight: 500;
    font-size: 1.25rem;
    color: #101218;
}
.content-wrap.traffic .content-section.table .chk-list li p span{
    font-weight: 400;
    font-size: 1rem;
    color: #424755;
    word-break: keep-all;
}
.content-wrap.traffic .content-section .public-transit-box{
    margin: 60px 0 0;
    padding: 60px;
    width: 100%;
    border:1px solid #bac0c9;
    border-radius: 10px;
    box-sizing: border-box;
}
.content-wrap.traffic .content-section .public-transit-box .box.btm {
    margin: 60px 0 0;
    padding: 60px 0 0;
    border-top: 1px solid #d7dbe7;
}
.content-wrap.traffic .content-section .public-transit-box .box .content-txt-box .left{
    width: 50%;
}
.content-wrap.traffic .content-section .public-transit-box .box .content-txt-box .right{
    width: 50%;
}
.content-wrap.traffic .content-section .public-transit-box .box .tit{
    margin: 0 0 54px;
}
.content-wrap.traffic .content-section .public-transit-box .box .tit span{
    display: inline-block;
    position: relative;
    padding: 7px 30px 7px 50px;
    font-weight: 700;
    font-size: 1.5rem;
    color: #fff;
    background-color: #000;
    border-radius: 30px;
    box-sizing: border-box;
}
.content-wrap.traffic .content-section .public-transit-box .box .tit span::before{
    content: "";
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 17px;
    height: 13px;
    background: url("../../images/user/sub/plan/ico-chck.png") no-repeat center / cover;
}
.content-wrap.traffic .content-section .public-transit-box .box .content-txt-box dl{
    padding: 0 0 40px;
}
.content-wrap.traffic .content-section .public-transit-box .box .content-txt-box dl.last{
    padding: 0;
}
.content-wrap.traffic .content-section .public-transit-box .box .content-txt-box dl dt{
    padding: 0 0 10px;
    font-weight: 700;
    font-size: 1.5rem;
    color: #101218;
}
.content-wrap.traffic .content-section .public-transit-box .box dl dd{
    font-weight: 400;
    font-size: 1.25rem;
    color: #424755;
    word-break: keep-all;
}
.content-wrap.traffic .content-section .public-transit-box .box .txt{
    padding: 0 0 60px;
    font-weight: 400;
    font-size: 1.25rem;
    color: #424755;
    word-break: keep-all;
}
.content-wrap.traffic .content-section .public-transit-box .box.btm figure{
    width: calc( (100% - 10px) /2);
}
.content-wrap.traffic .content-section .public-transit-box .box.btm figure .figure-caption{
    padding: 20px 0 0;
    text-align: center;
    font-size: 1.125rem;
    color: #424755;
}
.content-wrap.traffic .content-section .content-txt-box.island{
    align-items: flex-end;
}
.content-wrap.traffic .content-section .content-txt-box.island .left{
    width: 365px;
}
.content-wrap.traffic .content-section .content-txt-box.island .left figure{
    padding:60px 0 0;
}
.content-wrap.traffic .content-section .content-txt-box.island figure .figure-caption{
    padding: 20px 0 0;
    text-align: center;
    font-size: 1.125rem;
    color: #424755;
}

/* - 스마트시티 */
.content-wrap.smart .content-section-wrap .content-sections .content-section .summary-title{
    margin: 50px 0;
    font-size: 1.5rem;
}
.content-wrap.smart .content-section-wrap .content-sections .content-section .content-desc{
    font-size: 1.25rem;
    color: #424755;
}
.content-wrap.smart .content-section.mobility ul{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}
.content-wrap.smart .content-section.mobility ul li{
    padding-bottom: 20px;
    width: calc((100% - 8px) / 2);
}
.content-wrap.smart .content-section.mobility ul li:nth-child(2) {
    margin: 60px 0 0;
}
.content-wrap.smart .content-section.mobility ul li:nth-child(4) {
    margin: 60px 0 0;
}
.content-wrap.smart .content-section.mobility ul li .figure-caption{
    margin-top: 20px;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: #101218;
}
.content-wrap.smart .content-section.mobility ul li .figure-caption span{
    position: relative;
    padding-left: 30px;
    word-break: keep-all;
}
.content-wrap.smart .content-section.mobility ul li .figure-caption span::before{
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 17px;
    height: 13px;
    background: url("../../images/user/sub/plan/ico-chck.png") no-repeat center/cover;
}
.content-wrap.smart .content-section.mobility ul li .figure-caption em{
    font-style: normal;
    font-weight: 400;
    font-size: 1rem;
}
.content-wrap.smart .content-section-wrap .content-sections .content-section.data .section-heading{
    width: 100%;
}
.content-wrap.smart .content-section-wrap .content-sections .content-section.data .section-heading span{
    display: block;
    font-size: 1.5rem;
    color: #878b9d;
}
.content-wrap.smart .content-section-wrap .content-sections .content-section.data .content-txt-box div{
    width: calc( (100% - 8px) /2);
}
/* - 첨단물류 */
.content-wrap.logistics .content-intro{
    flex-direction: row;
    padding: 60px 0 0;
}
.content-wrap.logistics .content-intro .summary-title{
    margin: 0;
    width: 50%;
}
.content-wrap.logistics .content-intro .content-desc{
    margin: 8px 0 0;
    width: 50%;
}
.content-wrap.logistics .content-sections .content-section .summary-title{
    font-weight: 400;
    font-size: 1.25rem;
    color: #424755;
}
.content-wrap.logistics .content-sections .content-section.fast .content-txt-box{
    flex-direction: column;
}
.content-wrap.logistics .content-sections .content-section.fast .content-txt-box .box{
    width: 100%;
}
.content-wrap.logistics .content-sections .content-section.fast .content-tit-box .summary-title.first{
    margin-top: 10px;
}
.content-wrap.logistics .content-sections .content-section.fast .content-tit-box .summary-title.last{
    margin-bottom: 0;
}
.content-wrap.logistics .content-sections .content-section.fast .content-tit-box .summary-title span{
    display: block;
    font-weight: 400;
    font-size: 1.25rem;
    color: #424755;
}
.content-wrap.logistics .content-sections .content-section.fast .content-tit-box .summary-title strong{
    font-weight: 700;
    font-size: 1.5rem;
    color: #101218;
}
.content-wrap.logistics .content-sections .content-section .content-txt-box .flex-inner{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.content-wrap.logistics .content-sections .content-section .content-txt-box .figure-caption{
    padding: 20px 0 0;
    text-align: center;
}
.content-wrap.logistics .content-sections .content-section .content-txt-box .figure-caption span{
    position: relative;
    padding-left: 40px;
    font-size: 1.25rem;
    color: #424755;
}
.content-wrap.logistics .content-sections .content-section .content-txt-box .figure-caption span::before{
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 17px;
    height: 13px;
    background: url("../../images/user/sub/plan/ico-chck.png") no-repeat center / cover;
}
.content-wrap.logistics .content-sections .content-section .content-txt-box .box.btm .flex-inner{
    background-color: #eff2f7;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
.content-wrap.logistics .content-sections .content-section .content-txt-box .box.btm .right{
    padding: 0 0 0 60px;
    box-sizing: border-box;
}
.content-wrap.logistics .content-sections .content-section .content-txt-box .box.btm dl.first{
    padding: 0 0 25px;
}
.content-wrap.logistics .content-sections .content-section .content-txt-box .box.btm dl dt{
    padding: 0 0 6px;
    font-weight: 700;
    font-size: 1.25rem;
    color: #101218;
}
.content-wrap.logistics .content-sections .content-section .content-txt-box .box.btm dl dd{
    font-size:1.125rem;
    color:#424755;
}
.content-wrap.logistics .content-sections .content-section .content-txt-box .box.btm dl dd strong{
    font-weight: 700;
}
.content-wrap.logistics .content-sections .content-section .content-txt-box .box.mid{
    padding: 55px 0;
}
/*
.content-wrap.logistics .content-sections .content-section .content-txt-box .box.btm .flex-inner{
    justify-content: space-between;
}
.content-wrap.logistics .content-sections .content-section .content-txt-box .box.btm .flex-inner div{
    width: calc((100% - 10px) / 2);
}*/
.content-wrap.logistics .content-sections .content-section.safe .summary-title{
    margin-top: 60px;
}
.content-wrap.logistics .content-sections .content-section.safe .content-txt-box{
    padding: 0;
}
.content-wrap.logistics .content-sections .content-section.eco .summary-title{
    margin: 10px 0 0;
}
.content-wrap.logistics .content-sections .content-section.eco .content-txt-box div{
    width: calc((100% - 10px) / 2);
}

/* - 친환경계획 */
.content-wrap.eco .content-intro{
    flex-direction: row;
    padding: 60px 0 0;
}
.content-wrap.eco .content-intro .summary-title{
    margin: 0;
    width: 50%;
}
.content-wrap.eco .content-intro .content-desc{
    margin: 0;
    width: 50%;
    line-height: 1.7;
    font-size: 1.5rem;
}
.content-wrap.eco .content-sections .content-section .summary-title{
    font-weight: 400;
    font-size: 1.25rem;
    color: #424755;
}
.content-wrap.eco .content-sections .content-section.fast .content-txt-box{
    flex-direction: column;
}
.content-wrap.eco .content-section-wrap .content-sections{
    width: 100%;
}
.content-wrap.eco .content-section-wrap .content-sections .section-heading{
    padding: 0 0 50px;
}
.content-wrap.eco .content-section-wrap .content-sections .content-txt-box{
    width: 100%;
}
.content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list{
    width: 100%;
}
.content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list > li + li{
    margin:50px 0 0;
    padding: 50px 0 0;
    border-top: 1px solid #d7dbe7;
}
.content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list h4{
    font-weight: 700;
    font-size: 1.5rem;
    color: #101218;
}
.content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list h4 strong{
    font-weight: 700;
    color: #0065d6;
}
.content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 60px 0 0;
}
.content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .left{
    width: 760px;
}
.content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .box-outer{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .box-outer .box{
    position: relative;
    padding: 30px;
    width: calc( (100% - 56px) / 2);
    text-align: center;
    border:1px solid #bac0c9;
    border-radius: 90px;
    box-sizing: border-box;
}
.content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .box-outer .box.big::before{
    content: "";
    position: absolute;
    left: -35px;
    top: 50%;
    transform: translateY(-50%);
    width: 17px;
    height: 41px;
    background: url("../../images/user/sub/plan/ico-arw.png") no-repeat center / cover;
}
.content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .box-outer .year{
    display: inline-block;
    padding: 8px 20px;
    text-align: center;
    font-size: 1.25rem;
    color: #fff;
    background-color: #000;
    border-radius: 30px;
    box-sizing: border-box;
}
.content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .box-outer .box.big .year{
    font-size: 1.5rem;
    background-color: #0065d6;
}
.content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .box-outer .txt{
    padding: 18px 0 8px;
    font-size: 1.25rem;
    color: #101218;
}
.content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .box-outer .box.big .txt{
    font-weight: 700;
    font-size: 1.5rem;
}
.content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .box-outer .txt em{
    font-style: normal;
    font-weight: 700;
    color: #0065d6;
}
.content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .box-outer .refer{
    display: inline-block;
    padding: 0 0 5px;
    font-weight: 400;
    font-size: 1rem;
    color: #424755;
}
.content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .box-outer .refer em{
    font-style: normal;
    font-weight: 700;
}
.content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .right{
    width: calc( 100% - 820px);
}
.content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .right .box{
    padding: 40px;
    background: #eff2f7 url("../../images/user/sub/plan/eco01.png") no-repeat right bottom/209px 269px;
    border-radius: 10px;
    box-sizing: border-box;
}
.content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .right h5{
    font-weight: 700;
    font-size: 1.5rem;
    color: #101218;
}
.content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .right .sub-tit{
    font-weight: 400;
    font-size: 1rem;
    color: #424755;
}
.content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .right .grade{
    padding: 22px 0 0;
}
.content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .right .grade p{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 24px 30px;
    background-image: linear-gradient(to right, rgba(255,255,255,0.9), rgba(255,255,255,0.3));
    border-radius: 10px;
    box-sizing: border-box;
}
.content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .right .grade p.last{
    margin: 16px 0 0;
}
.content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .right .grade p strong{
    padding-right: 20px;
    font-weight: 700;
    font-size: 1.25rem;
    color: #101218;
}
.content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .right .grade p.last strong{
    color: #0065d6;
}
.content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .right .grade p span{
    font-weight: 400;
    font-size: 1.125rem;
    color: #424755;
}
.content-wrap.eco .content-section-wrap .content-sections .content-txt-box .note{
    padding: 30px 0 0;
    font-weight: 400;
    font-size: 1rem;
    color: #424755;
    word-break: keep-all;
}
.content-wrap.eco .content-section-wrap .content-sections .content-txt-box .note strong{
    font-weight: 700;
}
.content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .txt{
    padding: 25px 0 0;
    font-weight: 400;
    font-size: 1.25rem;
    color: #424755;
}
.content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .txt strong{
    font-weight: 700;
}
.content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .img-list{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .img-list > li{
    width: calc( (100% - 20px) / 3);
}
.content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .img-list.scd > li{
    width: calc( (100% - 10px) / 2);
}
.content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .img-list > li p{
    padding: 15px 0;
    text-align: center;
    font-size: 1.125rem;
    color: #424755;
}
.content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .dl-box{
    padding: 40px;
    background-color: #eff2f7;
    border-radius: 10px;
    box-sizing: border-box;
}
.content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .dl-box dl{
    padding: 0;
}
.content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .dl-box dl.last{
    margin: 30px 0 0;
    padding: 20px 0 0;
    border-top: 1px solid #d7dbe7;
    box-sizing: border-box;
}
.content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .dl-box.row{
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .dl-box.row dl{
    width: 50%;
    text-align: center;
}
.content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .dl-box.row dl.last{
    margin: 0 0 0 30px;
    padding: 0 0 0 30px;
    border-left: 1px solid #d7dbe7;
    border-top: none;
    box-sizing: border-box;
}
.content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .dl-box.row dl dd img{
    margin:0 auto;
}
.content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .dl-box.row dl:first-child dd img{
    margin-top: 20px;
}
.content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .dl-box.row dl.last p{
    padding: 0 0 20px;
    font-size: 0.875rem;
}
.content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .dl-box.row figure{
    padding: 10px;
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    box-sizing: border-box;
}
.content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .dl-box.row figure.last{
    margin-top: 5px;
}

/* - 타운매니지먼트 */
.content-wrap.town .project-heading em{
    font-style: normal;
    font-size:2.5rem;
    color: #424755;
}
.content-wrap.town .content-intro {
    flex-direction: row;
    padding: 60px 0 50px;
}
.content-wrap.town .content-intro .content-desc{
    margin-top: 4px;
}
.content-wrap.town .content-intro .content-desc strong{
    color:#0065d6;
}
.content-wrap.town .content-section-wrap{
    margin: 0;
    border-top: 0;
}
.content-wrap.town .content-section-wrap .content-sections{
    width: 100%;
}
.content-wrap.town .content-section-wrap .content-sections .content-section .section-heading{
    padding: 0 0 60px;
}
.content-wrap.town .content-section .content-txt-box .chk-list li p{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    width: 100%;
}
.content-wrap.town .content-section .content-txt-box .chk-list li p::before{
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 17px;
    height: 13px;
    background: url("../../images/user/sub/plan/ico-chck.png") no-repeat center / cover;
}
.content-wrap.town .content-section .content-txt-box .chk-list li p strong{
    display: inline-block;
    width: 278px;
    font-weight: 700;
    font-size: 1.25rem;
    color: #101218;
}
.content-wrap.town .content-section .content-txt-box .chk-list li p span{
    font-weight: 400;
    font-size: 1.125rem;
    color: #424755;
}
.content-wrap.town .content-section.why .content-txt-box{
    flex-direction: column;
}
.content-wrap.town .content-section.why .content-txt-box div > ul{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.content-wrap.town .content-section.why .content-txt-box .top{
    padding: 0 0 60px;
}
.content-wrap.town .content-section.why .content-txt-box .top > ul{
    justify-content: space-between;
}
.content-wrap.town .content-section.why .content-txt-box .top > ul > li{
    width: calc( (100% - 20px) / 3 );
    text-align: center;
}
.content-wrap.town .content-section.why .content-txt-box .top > ul > li p{
    position: relative;
}
.content-wrap.town .content-section.why .content-txt-box .top > ul > li .gray{
    padding: 27px 0;
    font-weight: 400;
    font-size: 1rem;
    color: #424755;
    border: 1px solid #bac0c9;
    border-radius: 40px;
    box-sizing: border-box;
}
.content-wrap.town .content-section.why .content-txt-box .top > ul > li .blue{
    margin-top: 40px;
    padding: 24px 0;
    font-weight: 700;
    font-size: 1.25rem;
    color: #0065d6;
    border: 1px solid #0065d6;
    border-radius: 40px;
    box-sizing: border-box;
}
.content-wrap.town .content-section.why .content-txt-box .top > ul > li .blue::before{
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -30px;
    width: 41px;
    height: 17px;
    background: url("../../images/user/sub/plan/ico-arw-down.png") no-repeat center / cover;
}
.content-wrap.town .content-section.why .content-txt-box .btm > ul::after{
    content: "";
    position: absolute;
    left: 50%;
    top: 30%;
    transform: translate(-50%,-50%);
    width: 50%;
    height: 1px;
    border-bottom:1px dashed #0065d6;
    z-index: -1;
}
.content-wrap.town .content-section.why .content-txt-box .btm > ul{
    align-items: flex-start;
}
.content-wrap.town .content-section.why .content-txt-box .btm > ul > li{
    margin: 0 30px;
}
.content-wrap.town .content-section.why .content-txt-box .btm > ul > li figure{
    position: relative;
    margin: 0 auto 30px;
    width: 200px;
}
.content-wrap.town .content-section.why .content-txt-box .btm > ul > li figure strong{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: #fff;
}
.content-wrap.town .content-section.why .content-txt-box .btm > ul > li > .chk-list > li{
    line-height: 2;
}
.content-wrap.town .content-section.why .content-txt-box .btm > ul > li > .chk-list > li p{
    padding-left: 30px;
    font-weight: 500;
    font-size: 1rem;
    color: #424755;
}
.content-wrap.town .content-section.why .content-txt-box .btm > ul > li > .chk-list > li p::before{
    top: 8px;
}
.content-wrap.town .content-section.why .content-txt-box > div{
    width: 100%;
}
.content-wrap.town .content-section.core .content-txt-box{
    align-items: center;
}
.content-wrap.town .content-section.core .content-txt-box .left{
    width: calc( 100% - 670px);
}
.content-wrap.town .content-section.core .content-txt-box .right{
    margin-left: 50px;
    width: 620px;
}
.content-wrap.town .content-section.core .content-txt-box .chk-list li{
    padding: 20px 0;
}
.content-wrap.town .content-section.core .content-txt-box .chk-list li + li{
    border-top: 1px solid #d7dbe7;
}

/* ========== 분양정보 - 투자자커뮤니티 ========== */
.content-wrap.community .info-box{
    margin: 0 0 60px;
    padding: 50px;
    background-color: #f0f3f8;
    border-radius: 10px;
    box-sizing: border-box;
}
.content-wrap.community .info-box dl dt{
    position: relative;
    padding-left: 33px;
    font-weight: 700;
    font-size: 1.5rem;
    color: #101218;
}
.content-wrap.community .info-box dl dt::before{
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 23px;
    height: 23px;
    background: url("../../images/user/sub/sub-common/ico-briefing.png") no-repeat center / cover;
}
.content-wrap.community .info-box dl dd{
    padding: 30px 0 0;
}
.content-wrap.community .info-box dl dd ul li{
    position: relative;
    padding-left: 40px;
    font-weight: 500;
    font-size: 1.25rem;
    color: #101218;
    word-break: keep-all;
}
.content-wrap.community .info-box dl dd ul li + li{
    margin: 14px 0 0;
}
.content-wrap.community .info-box dl dd ul li::before{
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 17px;
    height: 13px;
    background: url("../../images/user/sub/sub-common/ico-chck.png") no-repeat center / cover;
}
.chk_box input[type="checkbox"],
.chk_box input[type="radio"]{
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    border: 0;
    overflow: hidden;
    margin: -1px;
    clip-path: inset(50%);
}
.content-wrap.community .chk-wrap .chk-box{
    position: relative;
    margin: 4px 30px 4px 0;
}
.content-wrap.community .chk-wrap .chk-box label{
    cursor:pointer;
}
.content-wrap.community .chk-wrap .chk-box input + label{
    padding-left: 10px;
    font-weight: 500;
    font-size: 1.25rem;
    color: #101218;
}
.content-wrap.community .chk-wrap .chk-box input + label::before{
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: url("../../images/user/sub/sub-common/ico-chkbox.png") no-repeat center/cover;
}
.content-wrap.community .chk-wrap .chk-box input:checked + label::before {
    background: url("../../images/user/sub/sub-common/ico-chkbox-active.png") no-repeat center/cover;
}
.content-wrap.community .chk-wrap.radio .chk-box input + label::before{
    background: url("../../images/user/sub/sub-common/ico-radio.png") no-repeat center/cover;
}
.content-wrap.community .chk-wrap.radio .chk-box input:checked + label::before {
    background: url("../../images/user/sub/sub-common/ico-radio-active.png") no-repeat center/cover;
}
/* 리스트 */
.content-wrap.community .filter-outer{
    margin: 0 0 60px;
    padding: 50px;
    width: 100%;
    border: 1px solid #878b9d;
    border-radius: 10px;
    box-sizing: border-box;
}
.content-wrap.community .filter-outer ul{
    width: 100%;
}
.content-wrap.community .filter-outer ul li{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
.content-wrap.community .filter-outer ul li + li{
    margin: 26px 0 0;
    padding: 26px 0 0;
    border-top: 1px solid #d7dbe7;
    box-sizing: border-box;
}
.content-wrap.community .filter-outer ul li:nth-child(3) .chk-box{
    display: inline-block;
    margin: 4px 0 4px 0;
    width: 102px;
}
.content-wrap.community .filter-outer ul li:nth-child(4){
    align-items: center;
}
.content-wrap.community .filter-outer ul li strong{
    margin: 4px 0;
    width: 110px;
    font-weight: 700;
    font-size: 1.25rem;
    color: #101218;
}
.content-wrap.community .filter-outer ul li > div{
    width: calc( 100% - 110px);
}
.content-wrap.community .filter-outer ul li .chk-wrap{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.content-wrap.community .board-total-top{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 20px;
    width: 100%;
}
.content-wrap.community .board-total-top .board-total{
    margin-bottom: 4px;
}
.content-wrap.community .board-table{
    width: 100%;
}
.content-wrap .no-result{
    padding: 60px 0;
    width: 100%;
    border-top: 1px solid #878b9d;
    border-bottom: 1px solid #e5eaf2;
    box-sizing: border-box;
}
.content-wrap .no-result .txt{
    text-align: center;
    font-weight: 500;
    font-size: 1.125rem;
    color:#424755;
}
.content-wrap .no-result .txt.en{
    font-size: 1rem;
    color: #878b9d;
}
.content-wrap.community .board-table table{
    width: 100%;
    border-top: 1px solid #878b9d;
}
.content-wrap.community .board-table table tr{
    border-bottom: 1px solid #e5eaf2;
}
.content-wrap.community .board-table table th{
    padding: 40px 20px;
    font-weight: 700;
    font-size: 1.25rem;
    color: #101218;
}
.content-wrap.community .board-table table td{
    text-align: center;
    font-size: 1.25rem;
    color: #101218;
}
.content-wrap.community .board-table table td:first-child,
.content-wrap.community .board-table table td:last-child{
    color: #878b9d;
}
.content-wrap.community .board-table table td a{
    display: block;
    padding: 40px 10px;
    font-weight: 700;
    color: #101218;
}
.content-wrap.community .board-table table td img{
    margin: 0 auto;
}

/* 등록 */
.content-wrap.community .insert-form-outer{
    margin: 0 auto;
    max-width: 690px;
    width: 100%;
}
.content-wrap.community .insert-form-outer .insert-tit{
    padding: 40px 0;
    font-weight: 700;
    font-size: 2rem;
    color: #07080c;
    border-bottom: 1px solid #878b9d;
    box-sizing: border-box;
}
.content-wrap.community .insert-form-outer .insert-tit span{
    position: relative;
    padding-left: 55px;
}
.content-wrap.community .insert-form-outer .insert-tit span::before{
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: url("../../images/user/sub/sub-common/ico-community-insert.png") no-repeat center / cover;
}
.content-wrap.community .insert-form-outer ul li{
    padding: 30px 0 0;
}
.content-wrap.community .insert-form-outer ul li .tit-box{
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 0 0 10px;
}
.content-wrap.community .insert-form-outer ul li .tit-box label{
    font-weight: 700;
    font-size: 1.5rem;
    color: #101218;
}
.content-wrap.community .insert-form-outer ul li .tit-box label .essen{
    padding-left: 4px;
    color: #e13d2c;
}
.content-wrap.community .insert-form-outer ul li .tit-box .add-txt{
    display: inline-block;
    padding:0 0 5px 15px;
    font-weight: 400;
    font-size: 1rem;
    color: #1a1c24;
}
.content-wrap.community .insert-form-outer ul li .chk-wrap{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 12px 0 0;
}
.content-wrap.community .insert-form-outer ul li .chk-wrap.land .chk-box{
    margin: 0 0 15px 0;
    width: calc( 100% / 5);
}
.content-wrap.community .insert-form-outer ul li textarea{
    resize: none;
    margin: 10px 0 0;
    width: 100%;
    height: 180px;
    padding: 20px;
    font-size: 1.125rem;
    background: #f0f3f8;
    border-radius: 10px;
    border: none;
    box-sizing: border-box;
}
.content-wrap.community .insert-form-outer ul li textarea::-webkit-scrollbar {
    width: 8px;
}
.content-wrap.community .insert-form-outer ul li textarea::-webkit-scrollbar-track {
    background-color: #f0f3f8;
    border-radius: 16px;
}
.content-wrap.community .insert-form-outer ul li textarea::-webkit-scrollbar-thumb:vertical {
    background-color: #8187A2;
    border-radius: 16px;
}
.content-wrap.community .insert-form-outer ul li textarea::placeholder {
    color: #878b9d;
}
.content-wrap.community .insert-form-outer ul li .tit-box .add-txt.intro{
    margin-left: auto;
    padding: 0;
    color: #e13d2c;
}
.content-wrap.community .insert-form-outer ul li .attach-wrap{
    padding: 30px 30px 22px;
    width: 100%;
    border: 1px solid #878b9d;
    border-radius: 10px;
    box-sizing: border-box;
}
.content-wrap.community .insert-form-outer ul li .attach-wrap strong{
    display: block;
    padding: 20px 0 0;
    font-weight: 400;
    font-size: 1rem;
    color:#e13d2c;
}
.content-wrap.community .insert-form-outer ul li input[type="file"]{
    width: 100%;
}
.content-wrap.community .insert-form-outer ul li input[type="file"]::placeholder{
    color: #878b9d;
}
.content-wrap.community .insert-form-outer ul li .attach-wrap input[type=file]::file-selector-button {
    margin-right: 10px;
    width: 120px;
    height: 44px;
    color: #fff;
    background: #424755;
    border: 1px solid #424755;
    border-radius: 6px;
    box-sizing: border-box;
    cursor: pointer;
}
.content-wrap.community .insert-form-outer ul li .attach-wrap .attach-list{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 25px 0 0;
    gap: 0;
}
.content-wrap.community .insert-form-outer ul li .attach-wrap .attach-list strong{
    display:inline-flex;
    align-items: center;
    justify-content: flex-start;
    margin:0 8px 8px 0;
    padding: 10px 20px;
    background-color:#f0f3f8;
    border-radius: 6px;
    box-sizing: border-box;
}
.content-wrap.community .insert-form-outer ul li .attach-wrap .attach-list strong span{
    font-weight:500;
    font-size: 1.125rem;
    color: #424755;
}
.content-wrap.community .insert-form-outer ul li .attach-wrap .attach-list strong em{
    display: inline-block;
    width: 30px;
    height: 30px;
    background: url("../../images/user/sub/sub-common/ico-download-del.png") no-repeat center/12px;
}
.content-wrap.community .insert-form-outer .btn-box{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 0 0;
}
.content-wrap.community .insert-form-outer .btn-box .btn{
    padding: 25px;
    width: calc( (100% - 20px) /2);
    font-weight: 500;
    font-size: 1.25rem;
    box-sizing: border-box;
}
.content-wrap.community .insert-form-outer .btn-box .btn.btn-cancel{
    background-color: #878b9d;
}
.content-wrap.community .insert-form-outer .btn-box .btn.btn-register{
    background-color: #0065d6;
}


/* 상세 */
.content-wrap.community .board-view-content{
    margin: 0 auto;
    padding: 40px;
    max-width: 690px;
    width: 100%;
    border: 1px solid #424755;
    border-radius: 10px;
    box-sizing: border-box;
}
.content-wrap.community .board-view-content h3{
    margin: 0 0 30px;
    padding: 0 0 30px;
    font-weight: 700;
    font-size: 1.5rem;
    color: #101218;
    border-bottom: 1px solid #878b9d;
    box-sizing: border-box;
}
.content-wrap.community .board-view-content .com-list li{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
.content-wrap.community .board-view-content .com-list li + li{
    margin-top: 26px;
}
.content-wrap.community .board-view-content .com-list li .tit{
    display: inline-block;
    width: 170px;
    line-height: 1.2;
    font-weight: 700;
    font-size: 1.25rem;
    color: #101218;
}
.content-wrap.community .board-view-content .com-list li p{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    line-height: 1.2;
    font-weight: 500;
    width: calc( 100% - 170px );
    word-break: keep-all;
}
.content-wrap.community .board-view-content .com-list li p em{
    font-style: normal;
}
.content-wrap.community .board-view-content .com-list li p a{
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0 8px 8px 0;
    padding: 12px;
    background-color: #f0f3f8;
    border-radius: 6px;
    box-sizing: border-box;
}
.content-wrap.community .board-view-content .com-list li p a strong{
    position: relative;
    margin-right: 6px;
    padding-right: 22px;
    font-weight: 400;
}
.content-wrap.community .board-view-content .com-list li p a strong::after{
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform:translateY(-50%);
    width: 16px;
    height: 16px;
    background: url("../../images/user/sub/sub-common/ico-download.png") no-repeat center / cover;
}
.content-wrap.community .board-view-content .com-list li p a em{
    font-weight: 400;
    font-size: 1rem;
    color: #878b9d;
}
.content-wrap.community .board-view-footer .btn{
    padding: 25px;
    max-width: 400px;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 1500px) {
    .developer-vision {
        width: 55%;
    }
}

@media (max-width: 1440px) {

    :root {
        --page-padding-x: 30px;
    }

    .btm-environ-box{
        width: calc(100vw - 60px);
    }


    .sub-content-title {
        font-size: 3rem;
    }

    .space-separator::before {
        width: calc(100vw - 60px)
    }
    .sub-content-title {
        width: auto;
    }

    .strategy-list {
        gap: 0 150px;
    }

}
@media (max-width: 1280px) {

    /* ========== 서브공통 ======== */
    .sub-hero {
        height: 320px;
    }
    .sub-hero-inner .breadcrumb {
        display: none;
    }
    .sub-hero-inner .page-title {
        top: 60px;
    }
    .sub-hero-inner .page-title .page-subtitle {
        font-size: 1.125rem;
    }
    .sub-content-title {
        font-size: 2.75rem;
    }
    .sub-hero-inner .page-title .page-main-title {
        font-size: 2.8125rem;
    }
    .sub-nav {
        display: none;
    }
    .sub-hero-bg {
        top: 200px;
        border-radius: 10px;
        width: calc(100% - 60px);
        height: 230px;
    }
    .sub-content {
        padding: 125px 0 85px;
    }

    /* 서브메뉴 셀렉트*/
    .dropdown-nav {
        display: block;
        position: relative;
        margin: 0 auto 50px;
        max-width: 550px;
        width: 100%;
    }
    .dropdown-nav-trigger {
        position: relative;
        width: 100%;
        padding: 15px 20px;
        font-size: 1rem;
        font-weight: 700;
        background: #fff;
        border: 1px solid #000;
        border-radius: 10px;
        cursor: pointer;
        text-align: left;
    }

    .dropdown-nav-trigger:after {
        content: '';
        display: block;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 20px;
        width: 13px;
        height: 7px;
        background: url("../../images/user/sub/sub-common/ico-arrow-slct-down-02.png") no-repeat;
        background-size: cover;
    }

    .dropdown-nav-list {
        position: absolute;
        top: 63px;
        padding: 5px;
        border: 1px solid #000;
        border-radius: 10px;
        width: 100%;
        height: 0;
        transition: height 0.3s ease;
        background: #fff;
        overflow: hidden;
        z-index: 9;
    }

    .dropdown-nav-item a {
        display: block;
        padding: 12px 16px;
        border-radius: 10px;
        text-decoration: none;
        color: #424755;
        font-size: 0.875rem;
    }

    .dropdown-nav-item a:hover {
        background: #000;
        color: #fff;
    }

    .dropdown-nav.open .dropdown-nav-list {
        display: block;
        height: auto;
    }
    .board-total {
        font-size: 1.125rem;
    }
    .board-total strong {
        font-weight: 500;
    }

    .project-heading{
        font-size: 2.75rem;
    }
    .content-section-wrap {
        position: relative;
        margin: 70px 0 0;
        padding: 70px 0 0;
    }
    .content-section-wrap .content-sections {
        width: calc(100% - 200px);
    }
    .content-section-wrap .content-sections .content-section +.content-section {
        margin-top: 70px;
        padding-top: 70px;
    }
    .content-intro .content-desc{
        margin-left: 0;
        margin-top: 40px;
        font-size: 1.5rem;
    }
    .section-heading{
        font-size: 2rem;
    }
    .content-section-wrap .content-sections .summary-title{
        font-size: 1.25rem;
    }
    #sub-sticky-list{
        width: 180px;
    }
    #sub-sticky-list ul li {
        padding: 0 0 20px;
    }
    #sub-sticky-list ul li a{
        font-size: 1.125rem;
    }
    .content-section-wrap .content-sections .content-section .leading-text-box {
        margin: 60px 0 0;
    }
    .content-section-wrap .content-sections .content-section .leading-text-box p{
        font-size: 1.75rem;
    }



    /* ========== 정주환경 ========== */
    /* - 오피스 */
    .content-wrap.environment .content-section-wrap .content-sections .summary-title{
        margin: 30px 0;
        font-size: 1.25rem;
    }
    .content-wrap.environment .content-section-wrap .content-sections .right .summary-title {
        margin: 0 0 30px;
    }
    .content-section-wrap .content-sections .herb .content-txt-box .figure-txt{
        font-size: 1rem;
    }
    .content-section-wrap .content-sections ul li dl {
        padding: 20px 0 0;
    }
    .content-section-wrap .content-sections ul li dl dt {
        padding: 0 0 7px;
        font-size: 1.125rem;
    }
    .content-section-wrap .content-sections ul li dl dd {
        font-size: 1rem;
    }
    .content-section-wrap .content-sections .infra .right ul li:nth-child(2) {
        margin: 40px 0 0;
    }
    .btm-environ-box .btm-environ-box-inner {
        padding: 80px 20px;
    }
    .btm-environ-box .btm-environ-box-inner .section-heading {
        padding: 0 0 40px;
    }
    .btm-environ-box .btm-environ-box-inner ul li a {
        padding: 24px 0;
        font-size: 1.25rem;
    }

    /* - 관광 및 문화시설 */
    .content-section-wrap .content-sections .section-heading em{
        font-size: 1.75rem;
    }
    .content-section-wrap .content-sections .artband .content-txt-box .left{
        width: calc(50% - 30px);
    }
    .content-section-wrap .content-sections .sky .content-txt-box .left {
        width: calc(50% - 30px);
    }

    /* ========== 입지 ========== */
    /* - 헤리티지 */
    .content-wrap.location .content-section-wrap .content-sections .left .leading-text-box{
        margin: 80px 0 0;
    }
    /* - 교통의 중심 */
    .content-section-wrap .content-sections .content-section.access .content-txt-box{
        flex-direction: column;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.access .left{
        width: 100%;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.access .left .section-heading br{
        display: none;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.access .right{
        margin: 20px 0 0;
        width: 100%;
        text-align: center;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.access .right .method-txt p em{
        display: inline-block;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.access .right .method-txt{
        justify-content: center;
        padding: 30px 0 0;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.access .right .method-txt p {
        width: 35%;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.access .right .btm {
        padding: 60px 0 0;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.access .right .pos-txt strong {
        height: 82px;
        line-height: 82px;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.access .right .method-txt p span {
        display: block;
        font-size: 1.75rem;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section .section-heading{
        font-size: 1.75rem;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.whole .content-txt-box {
        margin-top: -280px;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.whole .summary-title {
        padding: 50px 0 0;
        font-size: 1.75rem;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.whole .left{
        width:60%;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.whole .list li {
        padding: 20px 0;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.whole .right{
        width:40%;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.whole img{
        margin-left: auto;
        margin-right: 0;
        width: 90%;
    }


    .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box {
        padding: 60px 0 0;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.top .right{
        padding-left: 20px;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.top dl dt {
        padding-left: 30px;
        font-size: 1.25rem;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.top li:nth-child(1) dl dt::before {
        top: 4px;
        width: 19px;
        height: 21px;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.top li:nth-child(2) dl dt::before {
        top: 3px;
        width: 21px;
        height: 21px;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.top li:nth-child(3) dl dt::before {
        top: 2px;
        width: 21px;
        height: 21px;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.top dl dd{
        font-size: 1.125rem;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box ul li + li{
        margin: 16px 0 0;
        padding: 16px 0 0;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.btm .list {
        padding: 40px 0 0;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.btm .left {
        padding-right: 20px;
        width: 400px;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.btm .right {
        width: calc(100% - 420px);
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.btm .list li strong {
        font-size: 1.125rem;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.btm .list li span {
        font-size: 1.125rem;
    }



    /* 친환경 녹지 네트워크 */
    .content-wrap.green .content-intro .project-heading br{
        display: none;
    }
    .content-wrap.green .content-section-wrap .content-section.network .summary-title {
        font-size: 2rem;
    }
    .content-wrap.green .content-section-wrap .content-section.network .summary-text {
        font-size: 1.5rem;
    }
    .content-wrap.green .content-section-wrap .content-section.downtown .content-tit-box .summary-title {
        font-size: 1.5rem;
    }
    .content-wrap.green .content-section-wrap .content-section.downtown .content-tit-box .section-heading{
        font-size: 2rem;
    }
    .content-wrap.green .content-section-wrap .content-section.downtown .content-tit-box .section-heading br{
        display: none;
    }
    /* - 글로벌 비즈니스 지구 */
    .content-wrap.business .content-section-wrap .content-section.headquarter .content-txt-box .left {
        width: calc(100% - 800px);
    }
    .content-wrap.business .content-section-wrap .content-section.headquarter .content-txt-box .right {
        width: 780px;
    }
    .content-wrap.business .content-section-wrap .content-section.headquarter .content-txt-box ul li {
        width: calc((100% - 20px) / 2);
    }
    /* - 해외사례비교 */
    .content-wrap.cases .content-intro .summary {
        padding: 30px 30px 0 0;
    }
    .content-wrap.cases .content-intro .summary .summary-title{
        margin-bottom: 20px;
        line-height: 1.3;
        font-size: 1.75rem;
    }
    .content-wrap.cases .content-intro .summary .summary-text {
        font-size: 1.25rem;
    }
    .content-wrap.cases .content-intro ul {
        padding: 180px 0 0;
    }
    .content-wrap.cases .content-section-wrap .content-section.world .content-tit-box {
        flex-direction: column;
        padding: 0 0 60px;
    }
    .content-wrap.cases .content-section-wrap .content-section.world .left{
        width: 100%;
    }
    .content-wrap.cases .content-section-wrap .content-section.world .right{
        width: 100%;
    }
    .content-wrap.cases .content-section-wrap .content-section.world .section-heading {
        font-size: 2rem;
    }
    .content-wrap.cases .content-section-wrap .content-section.world .summary-desc {
        margin: 10px 0 0;
        font-size: 1.25rem;
    }
    .content-wrap.cases .content-section-wrap .content-section.world ul li:nth-child(2) {
        margin: 0 70px;
    }
    .content-wrap.cases .content-section-wrap .content-section.world ul li:nth-child(2)::before {
        left: -55px;
        width: 38px;
        height: 70px;
    }
    .content-wrap.cases .content-section-wrap .content-section.world ul li:nth-child(2)::after {
        right: -55px;
        width: 38px;
        height: 70px;
    }
    .content-wrap.cases .content-section-wrap .content-section.world ul li:nth-child(2) .txt p {
        font-weight: 700;
        font-size: 2rem;
    }
    .content-wrap.cases .content-section-wrap .content-section.world ul li:nth-child(2) .txt strong {
        font-size: 3rem;
    }
    .content-wrap.cases .content-section-wrap .content-section.world ul li:nth-child(2) .txt strong em {
        font-size: 4rem;
    }
    .content-wrap.cases .content-section-wrap .content-section.world ul li .txt p {
        font-weight: 500;
        font-size: 1.25rem;
    }
    .content-wrap.cases .content-section-wrap .content-section.world ul li .txt strong {
        padding: 5px 0;
        font-size: 1.5rem;
    }
    .content-wrap.cases .content-section-wrap .content-section.world ul li .txt span em {
        font-size: 2rem;
    }
    .content-wrap.cases .content-section-wrap .content-section.world ul li .txt span {
        font-weight: 500;
        font-size: 1.25rem;
    }
    .content-wrap.cases .content-section-wrap .content-section.three .summary-desc {
        padding: 20px 0;
        font-size: 1.25rem;
    }
    .content-wrap.cases .content-section-wrap .content-section.three .content-txt-box {
        margin-top: -30px;
    }

    /* ========== 개발계획 ========== */
    /* -  개발컨셉 */
    .content-wrap.concept .content-intro .project-heading {
        font-size: 2.75rem;
    }
    .content-wrap.concept .content-intro figure .figure-tit{
        right: 60px;
        top: 38px;
    }
    .content-wrap.concept .content-intro figure p {
        font-size: 2rem;
    }
    .content-section-wrap .content-sections .content-tit-box {
        padding: 0 0 40px;
    }
    .content-wrap.concept .content-section-wrap .content-sections .content-section .content-txt-box{
        flex-direction: column;
    }
    .content-wrap.concept .content-section-wrap .content-sections .content-section .content-txt-box .left{
        width: 100%;
    }
    .content-wrap.concept .content-section-wrap .content-sections .content-section .content-txt-box .right{
        width: 100%;
    }
    .content-wrap.concept .content-section-wrap .content-sections .content-section.first .content-txt-box figure img{
        margin: 0 auto;
        width: 70%;
    }
    .content-wrap.concept .content-section-wrap .content-sections .content-section .content-txt-box figure img{
        width: 100%;
    }
    .content-wrap.concept .content-section-wrap .content-sections .content-section.list .flex-inner{
        justify-content: flex-start;
        padding: 0;
    }
    .content-wrap.concept .content-section-wrap .content-sections .content-section.list .summary-text{
        padding:20px 0 40px;
    }
    .content-wrap.concept .content-section-wrap .content-sections .content-section.scd .flex-inner{
        justify-content: flex-end;
        flex-direction: row-reverse;
    }
    .content-wrap.concept .content-section-wrap .content-sections .content-section.first .content-txt-box .right{
        padding: 30px 0 0;
    }
    .content-wrap.concept .content-section-wrap .content-sections .content-section.list figure{
        padding-right:50px;
    }
    .content-wrap.concept .content-section-wrap .content-sections .content-section.list .chk-list{
        max-width: 100%;
    }

    /* -  마스터플랜 */
    .content-wrap.master .master-plan .content-txt-box{
        padding: 70px 0 0;
    }
    .content-wrap.master .master-plan.land .content-txt-box .left {
        width: calc(100% - 770px);
    }
    .content-wrap.master .master-plan .content-txt-box .right {
        max-width: 760px;
    }
    .content-wrap.master .master-plan .content-txt-box .zone-list li{
        font-size: 1.125rem;
    }
    .content-wrap.master .master-plan .content-txt-box .zone-list li span {
        padding-left: 15px;
    }
    .content-wrap.master .master-plan .content-txt-box .zone-list li span::before{
        left: 0;
        width: 8px;
        height: 8px;
    }
    .content-wrap.master .master-plan.zone {
        margin: 70px 0 0;
        padding: 70px 0 0;
    }
    .content-wrap.master .master-plan.zone .content-txt-box {
        padding: 20px 0 0;
        align-items: flex-start;
    }
    .content-wrap.master .master-plan.zone .content-txt-box .left {
        width: 680px;
    }
    .content-wrap.master .master-plan .zone-detail-list li .initial {
        width: 180px;
    }
    .content-wrap.master .master-plan .zone-detail-list li .info {
        width: calc(100% - 220px);
    }
    .content-wrap.master .master-plan.zone .content-txt-box .right {
        width: calc(100% - 700px);
    }
    .content-wrap.master .master-plan.zone .zone-box{
        margin: 40px 0 0;
        padding: 70px 0 0;
    }
    .content-wrap.master .master-plan.zone .zone-box ul li + li {
        padding-top: 40px;
    }
    .content-wrap.master .master-plan.zone .zone-box ul li h4 {
        padding: 0 0 30px;
    }
    .content-wrap.master .master-plan.zone .zone-box ul li .flex-inner{
        flex-direction: column;
        align-items: flex-start;
    }
    .content-wrap.master .master-plan.zone .zone-box ul li .flex-inner .left{
        width: 100%;
    }
    .content-wrap.master .master-plan.zone .zone-box ul li .flex-inner .right{
        margin: 30px 0 0;
        width: 100%;
    }
    .content-wrap.master .master-plan.zone .zone-box ul li .flex-inner .left img{
        width: 56%;
    }
    /* - 녹지계획 */
    .content-wrap.green.plan .content-intro .project-heading br{
        display: inline-block;
    }
    .content-wrap.green .content-section .section-heading {
        padding: 0 0 40px;
    }
    .content-wrap.green .content-section-wrap .content-sections .content-tit-box {
        flex-direction: column;
        align-items: flex-start;
    }
    .content-wrap.green .content-tit-box .summary-text{
        padding: 20px 0 0;
        text-align: left;
    }
    .content-wrap.green .content-sections .strategy-list{
        gap: 0;
    }
    .content-wrap.green .content-sections .strategy-list li {
        width: calc((100% - 12px) / 3);
    }
    .content-wrap.green .content-sections .strategy-list li p strong {
        font-weight: 500;
        padding-right: 5px;
        font-size: 1.5rem;
    }
    .content-wrap.green .content-sections .strategy-list li p span {
        font-weight: 500;
        font-size: 1.25rem;
    }
    .content-wrap.green .content-sections .strategy-list li p strong{
        font-size: 1rem;
    }
    .content-wrap.green .content-sections .strategy-list li .txt{
        padding: 38px 10px;
        font-size: 1.125rem;
    }
    .content-wrap.green .content-section-wrap .content-sections .content-txt-box.city .city-list li figure{
        width: 50%;
    }
    .content-wrap.green .content-section-wrap .content-sections .content-txt-box.city .city-list li dl {
        padding: 0 0 0 10px;
        width: 50%;
        box-sizing: border-box;
    }
    .content-wrap.green .content-section-wrap .content-sections .content-txt-box.city .city-list li dl dd br{
        display: none;
    }
    /* - 교통계획 */
    .content-wrap.traffic .content-section-wrap .content-sections .left{
        width: 40%;
    }
    .content-wrap.traffic .content-section-wrap .content-sections .right{
        width: 60%;
    }
    .content-wrap.traffic .content-section-wrap .content-sections .traffic-box ul li dl{
        margin-left: 15px;
        width: calc(50% - 15px);
    }
    .content-wrap.traffic .content-section.table .content-txt-box .left {
        width: calc(100% - 720px);
    }
    .content-wrap.traffic .content-section.table .content-txt-box .right {
        max-width: 700px;
    }
    /* - 친환경계획  */
    .content-wrap.eco .content-intro .summary-title{
        width: 35%;
    }
    .content-wrap.eco .content-intro .content-desc{
        width: 65%;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner{
        padding: 40px 0 0;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .left {
        width: calc( 50% - 20px );
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .right {
        width: 50%;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .box-outer{
        flex-direction: column;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .box-outer .box{
        width: 100%;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .box-outer .box.big{
        margin: 30px 0 0;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .box-outer .box.big::before {
        left: 50%;
        top: -35px;
        transform: translate(-50%, 0) rotate(90deg);
    }
    /* - 타운매니지먼트 */
    .content-wrap.town .content-intro .summary-title{
        margin: 0;
        width: 38%;
    }
    .content-wrap.town .content-intro .content-desc{
        width: 62%;
    }
    .content-wrap.town .content-section-wrap .content-sections .content-section .section-heading{
        padding: 0 0 40px;
    }
    .content-wrap.town .content-section.why .content-txt-box .top > ul{
        justify-content: center;
    }
    .content-wrap.town .content-section.why .content-txt-box .top > ul > li{
        width: 300px;
    }
    .content-wrap.town .content-section.why .content-txt-box .top > ul > li:nth-child(2){
        margin: 0 10px;
    }
    .content-wrap.town .content-section.why .content-txt-box .top > ul > li .gray{
        padding: 12px 40px 10px;
        word-break: keep-all;
    }
    .content-wrap.town .content-section.why .content-txt-box .top > ul > li .blue{
        margin: 30px auto 0;
        padding: 12px 40px 10px;
        word-break: keep-all;
    }
    .content-wrap.town .content-section.why .content-txt-box .top > ul > li .blue::before {
        top: -24px;
    }
    .content-wrap.town .content-section.core .content-txt-box{
        align-items: flex-start;
    }
    .content-wrap.town .content-section.core .content-txt-box .left {
        width: 50%;
    }
    .content-wrap.town .content-section.core .content-txt-box .right {
        margin-left: 20px;
        margin-top: -20px;
        width: calc( 50% - 20px);
    }
    .content-wrap.plan .content-section-wrap .content-sections .content-section .content-txt-box .chk-list p {
        flex-direction: column;
        align-items: flex-start;
    }

    /* ========== 분양정보 ========== */
    /* - 투자자커뮤니티 */
    .content-wrap.community .info-box {
        margin: 0 0 40px;
        padding: 40px;
    }
    .content-wrap.community .info-box dl dt {
        padding-left: 26px;
        font-size: 1.25rem;
    }
    .content-wrap.community .info-box dl dt::before {
        top: 52%;
        width: 18px;
        height: 18px;
    }
    .content-wrap.community .info-box dl dd {
        padding: 20px 0 0;
    }
    .content-wrap.community .info-box dl dd ul li {
        padding-left: 30px;
        font-size: 1.125rem;
    }
    .content-wrap.community .filter-outer{
        margin: 0 0 40px;
        padding: 40px;
    }
    .content-wrap.community .filter-outer ul li + li {
        margin: 20px 0 0;
        padding: 20px 0 0;
    }
    .content-wrap.community .filter-outer ul li strong {
        font-weight: 500;
    }
    .content-wrap.community .chk-wrap .chk-box input + label {
        padding-left: 8px;
        font-weight: 400;
        font-size: 1.125rem;
    }
    .content-wrap.community .board-table table th {
        padding: 30px 10px;
        font-size: 1.125rem;
    }
    .content-wrap.community .board-table table td {
        font-size: 1.125rem;
    }
    .content-wrap.community .board-table table td img {
        width: 18px;
    }
    .content-wrap.community .insert-form-outer .insert-tit {
        padding: 20px 0;
        font-size: 1.75rem;
    }
    .content-wrap.community .insert-form-outer .insert-tit span {
        position: relative;
        padding-left: 40px;
    }
    .content-wrap.community .insert-form-outer .insert-tit span::before {
        width: 30px;
        height: 30px;
    }
    .content-wrap.community .insert-form-outer ul li {
        padding: 20px 0 0;
    }
    .content-wrap.community .insert-form-outer ul li .tit-box label {
        font-size: 1.25rem;
    }
    .content-wrap.community .insert-form-outer ul li .tit-box label .essen {
        padding-left: 2px;
    }
    .content-wrap.community .insert-form-outer ul li .tit-box .add-txt {
        padding: 0 0 3px 10px;
        font-size: 0.875rem;
    }
    .content-wrap.community .insert-form-outer ul li .chk-wrap {
        padding: 0;
    }
    .content-wrap.community .insert-form-outer ul li .attach-wrap .attach-list strong span {
        font-size: 1rem;
    }
    .content-wrap.community .insert-form-outer ul li .attach-wrap {
        padding: 22px 22px 14px;
    }
    .content-wrap.community .insert-form-outer ul li .attach-wrap strong {
        padding: 10px 0 0;
    }
    .content-wrap.community .insert-form-outer .btn-box {
        padding: 40px 0 0;
    }
    .content-wrap.community .insert-form-outer .btn-box .btn {
        padding: 16px;
        font-size: 1.125rem;
    }
    .content-wrap.community .board-view-content {
        padding: 30px;
        border-radius: 10px;
    }
    .content-wrap.community .board-view-content h3 {
        margin: 0 0 20px;
        padding: 0 0 20px;
    }
    .board-view-footer {
        margin-top: 40px;
    }
    /* - FAQ */
    .faq-answer{
        align-items: flex-start;
        line-height: 1.4;
    }
    /* ========== 홍보센터 ======== */
    /* 보도자료 */
    .content-wrap.press-release-list {
        margin-top: 40px;
    }
    /* - 발행물 */
    .grid-list--publication {
        gap: 50px 80px;
    }
    .grid-card--publication {
        gap: 30px;
    }
    .project-step {
        gap: 40px;
    }
    .step-item {
        padding: 20px 25px;
    }
    .step-bubble {
        padding: 20px 30px;
    }
    /* 갤러리 */
    .gallery-main .swiper-button-prev,
    .gallery-main .swiper-button-next {
        width: 50px;
        height: 50px;
    }
    .gallery-main button img {
        width: 14px;
    }

    /* 비전 */
    .project-vision .section-heading {
        text-align: left;
        font-size: 2.5rem;
    }
    .vision-desc {
        font-size: 2rem;
    }
    .goal-title {
        font-size: 2rem;
    }
    .goal-desc {
        font-size: 1.5rem;
    }
    .strategy-title {
        font-size: 2rem;
    }
    .strategy-list {
        gap: 40px;
    }
    .strategy-desc li::before {
        font-size: 1.25rem;
    }

    /* 추진일정 */
    .timeline-year {
        font-size: 3.75rem;
    }
    .timeline-wrap {
        gap: 100px;
    }

    /* 기대효과 */
    .benefit-desc {
        font-size: 2.75rem;
    }
    .benefit-step-title {
        font-size: 2rem;
    }
    .benefit-step-badge {
        font-size: 1.25rem;
    }
    .benefit-intro {
        margin-bottom: 70px;
    }
    .benefit-value {
        font-size: 3.75rem;
    }
    .benefit-step {
        padding-bottom: 0;
    }

    /* 시행자 */
    .developer-org {
        gap: 60px;
    }
    .project-developer h4 {
        font-size: 2rem;
    }
    .developer-info-grid {
        flex-direction: column;
        gap: 70px;
    }
    .developer-desc {
        flex-direction: column;
        gap: 20px !important;
    }
    .developer-desc-list {
        width: 100%;
    }
    .developer-desc-list li {
        word-break: keep-all;
    }
    .developer-desc-list li br {
        display: none;
    }
    .developer-vision {
        width: 100%;
    }

    /* 브랜드 */
    .project-brand .section-heading {
        font-size: 2.75rem;
    }
    .brand-sub-title {
        font-size: 2rem;
    }
    .brand-main-title {
        font-size: 5rem;
    }
    .brand-intro {
        background-size: contain;
    }
    .project-brand h4 {
        font-size: 2rem;
    }
    .brand-slogan-main {
        font-size: 5rem;
    }
    .project-brand h4 {
        font-size: 2rem;
    }
    .brand-symbol-wrap {
        gap: 40px;
    }
    .brand-slogan-main {
        position: static;
    }
    .brand-slogan-visual {
        display: flex;
        gap: 40px;
        width: 100%;
    }
    .brand-slogan-wrap {
        flex-direction: column;
        gap: 40px;
        margin-top: 80px;
    }
    .brand-slogan-wrap {
        align-items: start;
    }
    .brand-logotype-wrap {
        flex-direction: column;
    }
    .brand-logo-visual .logo-item {
        padding: 30px 0;
    }
    .brand-color {
        flex-direction: column;
    }
    .color-list {
        margin-top: 75px;
        width: 100%;
    }































}

@media (max-width: 1340px) {
    .content-wrap {
        max-width: 100%;
    }

}



@media (max-width: 1024px) {

    #sub-sticky-list{
        display: none;
    }
    .table-outer .table-tit{
        display: block;
        padding: 0 0 10px;
        font-size: 1.25rem;
        color: #424755;
    }
    .content-section-wrap .content-sections {
        width: 100%;
    }
    .content-section-wrap .content-sections .plan .btn-go-master-plan{
        margin: 40px 0 0;
    }
    /* - 글로벌 비즈니스 지구 */
    .content-section-wrap .content-sections .headquarter .content-txt-box{
        flex-direction: column;
    }
    .content-wrap.business .content-section-wrap .content-section.headquarter .content-txt-box .left {
        padding: 0 0 20px;
        width: 100%;
    }
    .content-wrap.business .content-section-wrap .content-section.headquarter .content-txt-box .right {
        width: 100%;
    }
    .content-wrap.business .content-section-wrap .content-section.headquarter .content-txt-box ul li img{
        width: 100%;
    }
    .content-wrap.business .content-section-wrap .content-section.hub .content-txt-box .section-heading {
        padding: 60px 0 30px;
    }
    .content-section-wrap .content-sections .potential .content-txt-box{
        flex-direction: column;
    }
    .content-wrap.business .content-section-wrap .content-section.potential .left{
        width: 100%;
    }
    .content-wrap.business .content-section-wrap .content-section.potential .left .section-heading{
        padding: 0 0 20px;
    }
    .content-wrap.business .content-section-wrap .content-section.potential .right{
        width: 100%;
    }
    .content-wrap.business .content-section-wrap .content-section.potential ul li dl dt {
        width: 220px;
        font-weight: 500;
        font-size: 1.75rem;
    }
    .content-wrap.business .content-section-wrap .content-section.potential ul li dl dd {
        width: calc(100% - 220px);
    }
    .content-wrap.business .content-section-wrap .content-section.potential ul li dl dd div {
        font-size: 1.25rem;
    }
    /* - 해외사례비교 */
    .content-wrap.cases .content-intro .bg {
        top: 12%;
    }
    .content-wrap.cases .content-intro ul li{
        margin: 0 0 10px;
    }
    .content-wrap.cases .content-intro ul li p{
        justify-content: center;
        padding-left: 0;
    }
    .content-wrap.cases .content-intro ul li p em {
        margin-right: 5px;
        width: 24px;
        height: 24px;
        line-height: 25px;
        font-weight: 500;
        font-size: 1rem;
    }
    .content-wrap.cases .content-intro ul li p span {
        font-weight: 500;
        font-size: 1rem;
    }
    .content-wrap.cases .content-intro .center-box .section-heading{
        top: 0;
        left: 10px;
    }
    .content-wrap.cases .content-section-wrap .content-section.world ul li:nth-child(2) .txt strong {
        padding: 0;
        font-size: 2rem;
    }
    .content-wrap.cases .content-section-wrap .content-section.world ul li:nth-child(2) .txt p {
        font-weight: 500;
        font-size: 1.25rem;
    }
    .content-wrap.cases .content-section-wrap .content-section.world ul li:nth-child(2) .txt strong em {
        font-size: 2.5rem;
    }
    .content-wrap.cases .content-section-wrap .content-section.world ul li .txt strong em {
        font-size: 1.5rem;
    }
    .content-wrap.cases .content-section-wrap .content-section.world ul li .txt p {
        line-height: 1.1;
        font-size: 1rem;
    }
    .content-wrap.cases .content-section-wrap .content-section.world ul li .txt span {
        font-size: 1rem;
    }
    .content-wrap.cases .content-section-wrap .content-section.world ul li .txt span em {
        font-size: 1.25rem;
    }
        .content-wrap.cases .content-intro .center-box {
        margin: 80px auto 0;
    }
    .content-wrap.cases .content-section-wrap .content-section.three .content-txt-box {
        flex-direction: column-reverse;
        align-items: flex-start;
        margin: 20px 0 0;
    }
    .content-wrap.cases .content-section-wrap .content-section.three .content-txt-box .left{
        margin-top: 20px;
        width: 100%;
    }
    .content-wrap.cases .content-section-wrap .content-section.three .content-txt-box .right{
        width: 100%;
    }
    .content-wrap.cases .content-section-wrap .content-section.three .summary-desc {
        padding: 20px 0 0;
        font-weight: 500;
        font-size: 1.25rem;
        color: #101218;
    }
    .content-wrap.cases .content-section-wrap .content-section.three figure img{
        width: 100%;
    }

    /* 개발계획 */
    /* -  개발컨셉 */
    .content-wrap.concept .content-section-wrap .content-sections .content-section.list .summary-text br{
        display: none;
    }
    .content-wrap.concept .content-section-wrap .content-sections .content-section.list .chk-list {
        width: 100%;
    }
    .content-wrap.concept .content-section-wrap .content-sections .content-section.list .chk-list p{
        font-size: 1.125rem;
    }
    .content-wrap.concept .content-section-wrap .content-sections .content-section.list .chk-list p strong{
        font-size: 1.125rem;
    }
    .content-wrap.concept .content-section-wrap .content-sections .content-section.list figure {
        padding-right: 20px;
    }
    .content-wrap.concept .content-section-wrap .content-sections .content-section.list.scd figure {
        padding-right: 20px;
    }
    .content-wrap.concept .content-section-wrap .content-sections .content-section .content-txt-box .chk-list li {
        padding: 6px 0;
    }
    .content-wrap.concept .content-section-wrap .content-sections .content-section.center ul li {
        padding: 30px 20px;
        width: calc((100% - 10px) / 3);
    }
    /* -  마스터플랜 */
    .content-wrap.master .master-plan .content-txt-box{
        flex-direction: column;
    }
    .content-wrap.master .master-plan.land .content-txt-box .left {
        margin-bottom: 20px;
        width:100%;
    }
    .content-wrap.master .master-plan.land .content-txt-box .right{
        width:100%;
        max-width:100%;
    }
    .content-wrap.master .master-plan .content-txt-box .summary-text {
        padding: 40px 0 20px;
    }
    .content-wrap.master .master-plan .content-txt-box .summary-text br{
        display: none;
    }
    .content-wrap.master .master-plan.land .content-txt-box .flex-inner{
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
    .content-wrap.master .master-plan .content-txt-box .zone-list{
        padding: 0 0 0 20px;
    }
    .content-wrap.master .master-plan.zone .content-txt-box{
        flex-direction: column-reverse;
    }
    .content-wrap.master .master-plan.zone .content-txt-box .right{
        max-width: 100%;
        width: 50%;
        margin: 0 auto;
    }
    .content-wrap.master .master-plan.zone .content-txt-box .left {
        margin-right: 30px;
        width: 100%;
    }
    /* - 녹지계획 */
    .content-wrap.green .content-sections .strategy-list{
        align-items: flex-start;
    }
    .content-wrap.green .content-sections .strategy-list li{
        width: calc((100% - 6px) / 3);
    }
    .content-wrap.green .content-sections .strategy-list li p{
        flex-direction: column;
    }
    .content-wrap.green .content-sections .strategy-list li .txt {
        padding: 20px 10px 20px;
        font-size: 1rem;
    }
    .content-wrap.green .content-section-wrap .content-sections .content-txt-box.city .city-list{
        flex-direction: column;
    }
    .content-wrap.green .content-section-wrap .content-sections .content-txt-box.city .city-list li {
        align-items: center;
        margin: 0 0 10px;
        width: 100%;
    }
    .content-wrap.green .content-section-wrap .content-sections .content-txt-box.city .city-list li figure img{
        width: 100%;
    }

    /* - 교통계획 */
    .content-wrap.traffic .content-section-wrap .content-section.smart .content-txt-box{
        flex-direction: column;
    }
    .content-wrap.traffic .content-section-wrap .content-section.smart .left{
        width: 100%;
    }
    .content-wrap.traffic .content-section-wrap .content-section.smart .right{
        width: 100%;
    }
    .content-wrap.traffic .content-section-wrap .content-section.smart .left .section-heading br{
        display: none;
    }
    .content-wrap.traffic .content-section-wrap .content-sections .content-desc {
        padding: 20px 0 40px;
    }
    .content-wrap.traffic .content-section-wrap .content-section.smart .left .content-desc br{
        display: none;
    }
    .content-wrap.traffic .content-section-wrap .content-sections .traffic-box ul {
        padding: 30px 0 0;
    }
    .content-wrap.traffic .content-section-wrap .content-sections .traffic-box.last {
        padding: 30px 0 0;
    }
    .content-wrap.traffic .content-section.table .content-txt-box{
        flex-direction: column;
    }
    .content-wrap.traffic .content-section.table .content-txt-box .left{
        margin-bottom: 30px;
        width: 100%;
    }
    .content-wrap.traffic .content-section.table .content-txt-box .right {
        max-width: 100%;
    }
    .content-wrap.traffic .content-section.table .content-txt-box .section-heading {
        padding: 0 0 40px;
    }
    .content-wrap.traffic .content-section.table .flex-inner{
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
    .content-wrap.traffic .content-section.table .flex-inner figure{
        padding-right: 20px;
    }
    .content-wrap.traffic .content-section.table.last figure{
        margin: 0 auto;
        width: 70%;
    }
    .content-wrap.traffic .content-section.table .content-txt-box .summary-title {
        margin: 0 0 40px;
    }
    .content-wrap.traffic .content-section .public-transit-box .box .content-txt-box .left{
        width: 100%;
    }
    .content-wrap.traffic .content-section .public-transit-box .box .content-txt-box .right {
        width: 100%;
    }
    .content-wrap.traffic .content-section.table .box.btm .content-txt-box{
        flex-direction: row;
    }
    .content-wrap.traffic .content-section .content-txt-box.island .right{
        width: calc( 100% - 390px);
    }
    .content-wrap.traffic .content-section .public-transit-box {
        margin: 40px 0 0;
        padding: 30px;
    }

    /* - 첨단물류*/
    .content-wrap.logistics .content-intro {
        flex-direction: column;
        padding: 40px 0 0;
        width: 100%;
    }
    .content-wrap.logistics .content-intro .summary-title {
        width: 100%;
    }
    .content-wrap.logistics .content-intro .summary-title br{
        display: none;
    }
    .content-wrap.logistics .content-intro .content-desc {
        width: 100%;
    }
    .content-wrap.logistics .content-intro .content-desc br{
        display: none;
    }
    .content-wrap.logistics .content-sections .content-section .content-txt-box .box.btm .right {
        padding: 0 0 0 30px;
    }
    /* - 친환경계획 */
    .content-wrap.eco .content-intro {
        flex-direction: column;
        padding: 40px 0 0;
    }
    .content-wrap.eco .content-intro .summary-title {
        width: 100%;
    }
    .content-wrap.eco .content-intro .summary-title br{
        display: none;
    }
    .content-wrap.eco .content-intro .content-desc {
        width: 100%;
    }
    .content-wrap.eco .content-intro .content-desc br{
        display: none;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .img-list{
        flex-direction: column;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .img-list > li{
        width: 100%;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .img-list.scd > li {
        width: 100%;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .img-list img{
        width: 100%;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .box-outer .box{
        padding: 20px;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .right .box {
        padding: 24px;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .right .grade p {
        padding: 15px 20px;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .dl-box {
        padding: 24px;
    }
    .content-wrap.town .content-section.why .content-txt-box .top > ul > li .gray {
        padding: 12px 24px 10px;
    }
    .content-wrap.town .content-section.why .content-txt-box .top > ul > li .blue {
        padding: 12px 24px 10px;
    }
    /* - 타운매니지먼트*/
    .content-wrap.town .content-intro{
        flex-direction: column;
    }
    .content-wrap.town .content-intro .summary-title{
        width: 100%;
    }
    .content-wrap.town .content-intro .content-desc{
        width: 100%;
    }
    /* =========== 분양정보 ========== */
    /* - FAQ */
    .faq-toggle {
        padding: 40px 30px 40px;
        font-size: 1.25rem;
    }
    .faq-panel {
        padding: 0 30px 40px 65px;
    }
    .faq-answer{
        font-size: 1.125rem;
    }
    .faq-qbadge, .faq-abadge {
        margin-right: 8px;
        font-size: 1.75rem;
    }

    /* ========== 홍보센터 ======== */
    /* 보도자료 */
    .content-wrap.press-release-list {
        margin-top: 30px;
    }
    /* - 발행물 */
    .grid-list--publication {
        gap: 30px;
    }
    .grid-card--publication {
        gap: 12px;
        padding-bottom: 20px;
    }
    .grid-card--publication .grid-card-date {
        margin-bottom: 8px;
    }
    .grid-card--publication .grid-card-actions {
        gap: 4px;
    }
    .grid-card--publication .grid-card-actions .btn {
        gap: 4px;
        padding: 8px;
        font-size: 0.875rem;
    }
    .grid-card--publication .grid-card-actions .btn-preview::before{
        width: 10px;
        height: 8px;
        background-size: cover;
    }
    .grid-card--publication .grid-card-actions .btn-download::before {
        width: 12px;
        height: 11px;
        background-size: cover;
    }

    /* ========== 사업개요 ======== */
    /* 사업소개 */
    .project-step {
        flex-direction: column;
    }
    .step-item {
        width: auto !important;
        height: 170px;
    }
    .step-method {
        width: fit-content;
    }
    .step-bubble {
        flex: auto;
        height: 170px;
    }
    .step-bubble, .step-list {
        margin-top: 25px;
    }
    .project-summary {
        margin-bottom: 70px;
    }
    .project-map {
        margin-bottom: 70px;
    }
    .project-partners {
        margin-bottom: 70px;
        padding-top: 70px;
    }
    .space-separator {
        margin-top: 70px;
        padding-top: 70px;
    }

    /* 추진일정 */
    .timeline-wrap {
        gap: 60px;
        flex-direction: column;
    }
    .timeline-intro {
        display: block;
    }

    /* 기대효과 */
    .benefit-list {
        flex: 0 75%;
    }

    /* 시행자 */
    .developer-org {
        flex-direction: column;
    }

    /* 브랜드 */
    .brand-symbol-wrap {
        flex-direction: column;
    }
    .brand-symbol-desc {
        align-items: center;
    }
    .brand-symbol-list {
        margin: 0 auto;
    }
    .brand-name-meaning li {
        padding: 0 30px 45px;
    }
    .brand-slogan-main {
        font-size: 4rem;
    }
    .logotype-symbol-wrap {
        flex-direction: column;
        gap: 50px;
    }
    .logotype-symbol-wrap .symbol-set:first-child {
        width: 100%;
    }
    .brand-main-title {
        display: block;
        line-height: 1.2;
        margin-top: 20px;
        text-decoration: underline;
        text-decoration-thickness: 2px;
    }
    .brand-main-title::after {
        display: none;
    }

















}


@media (max-width: 768px) {

    :root {
        --page-padding-x: 15px;
    }
    .sub-content-title {
        font-size: 1.75rem;
    }
    .project-heading {
        font-size: 1.5rem;
    }
    .content-intro .content-desc {
        margin-top: 20px;
        line-height: 1.4;
        font-size: 1rem;
    }
    .content-intro .content-desc br{
        display: none;
    }
    .content-section-wrap {
        position: relative;
        margin: 40px 0 0;
        padding: 40px 0 0;
    }
    .section-heading {
        line-height: 1.3;
        font-size: 1.25rem;
    }
    .sub-hero {
        /* height: 82.89vw; */
        height: 330px;
    }
    .sub-hero-bg {
        top: 220px;
        width: calc(100% - 30px);
        /* height: 60.5vw; */
        height: 230px;
    }
    .dropdown-nav {
        max-width: 100%;
        width: calc(100% - 30px);
    }
    .sub-hero-inner .page-title {
        padding-top: 45px;
    }
    .sub-hero-inner .page-title .page-subtitle {
        font-size: 0.9375rem;
    }
    .sub-hero-inner .page-title .page-main-title {
        font-size: 2.5rem;
    }
    .sub-content {
        padding: 130px 0 0;
    }


    .content-section-wrap .content-sections .content-section +.content-section {
        margin-top: 40px;
        padding-top: 40px;
    }
    .content-section-wrap .content-sections .herb .summary-title {
        font-size: 1.125rem;
        font-weight: 500;
        line-height: 1.3;
    }
    .content-section-wrap .content-sections .content-tit-box{
        flex-direction: column;
    }
    .content-section-wrap .content-sections .content-txt-box{
        flex-direction: column;
    }
    .content-section-wrap .content-sections .left{
        width: 100%;
    }
    .content-section-wrap .content-sections .content-section.infra .left{
        padding: 0 0 20px;
    }
    .content-section-wrap .content-sections .right{
        width: 100%;
    }
    .content-section-wrap .content-sections .content-txt-box figure img{
        width: 100%;
    }
    .content-section-wrap .content-sections .content-tit-box{
        padding: 0 0 20px;
    }
    .content-section-wrap .content-sections .content-tit-box .section-heading{
        width: 100%;
    }
    .content-section-wrap .content-sections .content-section .leading-text-box {
        margin: 30px 0 0;
    }
    .content-section-wrap .content-sections .content-section .leading-text-box p {
        font-size: 1.125rem;
    }
    .content-section-wrap .content-sections .content-section .leading-text-box p::before {
        left: -16px;
        top: 22%;
        width: 16px;
        height: 11px;
    }
    .content-section-wrap .content-sections .content-section .leading-text-box p::after {
        right: -16px;
        top: 22%;
        width: 16px;
        height: 11px;
    }
    .content-section-wrap .content-sections .summary-text {
        font-size: 0.875rem;
    }
    .content-section-wrap .content-sections .summary-text strong{
        font-weight: 500;
    }
    .content-section-wrap .content-sections .summary-text br{
        display: none;
    }
    /* ========== 정주환경 ========== */
    .content-wrap.environment .content-section-wrap .content-sections .right .summary-title {
        margin: 10px 0 20px;
    }
    .content-wrap.environment .content-section-wrap .content-sections .content-tit-box .summary-title{
        margin: 10px 0 20px;
    }
    .content-wrap.environment .content-section-wrap .content-sections .summary-title{
        margin: 10px 0 20px;
        line-height: 1.3;
        font-weight: 500;
        font-size: 1rem;
    }
    .content-section-wrap .content-sections .herb .content-tit-box {
        padding: 0;
    }
    .content-section-wrap .content-sections .herb .summary-title{
        width: 100%;
    }
    .content-section-wrap .content-sections .herb .content-txt-box > div{
        width: 100%;
    }
    .content-section-wrap .content-sections .herb .content-txt-box .figure-txt{
        padding: 10px 0 20px;
        width: 100%;
        font-size: 0.875rem;
    }
    .content-section-wrap .content-sections .mobility .content-txt-box{
        padding: 0 0 20px;
    }
    .content-section-wrap .content-sections .infra .right ul{
        flex-direction: column;
    }
    .content-section-wrap .content-sections .infra .right ul li {
        padding-bottom:0;
        width: 100%;
    }
    .content-section-wrap .content-sections .infra .right ul li + li{
        margin-top: 20px;
    }
    .content-section-wrap .content-sections .infra .right ul li:nth-child(2) {
        margin: 20px 0 0;
    }
    .content-section-wrap .content-sections .infra .right ul li:nth-child(4) {
        margin: 20px 0 0;
    }
    .content-section-wrap .content-sections .safe .content-txt-box{
        padding: 0 0 20px;
    }
    .content-section-wrap .content-sections .safe ul{
        flex-direction: column;
    }
    .content-section-wrap .content-sections .safe ul li {
        width: 100%;
    }
    .content-section-wrap .content-sections .safe ul li + li{
        margin-top: 20px;
    }
    .content-section-wrap .content-sections ul li img{
        width: 100%;
    }
    .content-section-wrap .content-sections ul li dl {
        padding: 10px 0 0;
    }
    .content-section-wrap .content-sections ul li dl dt {
        padding: 0 0 4px;
        font-weight: 500;
        font-size: 1rem;
    }
    .content-section-wrap .content-sections ul li dl dd {
        font-size: 0.875rem;
    }
    .btm-environ-box {
        margin: 40px 0 0;
        width: calc(100vw - 30px);
        border-radius: 6px;
    }
    .btm-environ-box .btm-environ-box-inner {
        padding: 50px 30px;
    }
    .btm-environ-box .btm-environ-box-inner .section-heading {
        padding: 0 0 20px;
    }
    .btm-environ-box .btm-environ-box-inner ul{
        flex-direction: column;
    }
    .btm-environ-box .btm-environ-box-inner ul li{
        width: 100%;
        border-radius: 6px;
    }
    .btm-environ-box .btm-environ-box-inner ul li + li{
        margin: 8px 0 0;
    }
    .btm-environ-box .btm-environ-box-inner ul li a {
        padding: 16px 0;
        font-size: 0.875rem;
        border-radius: 6px;
        font-weight: 400;
    }
    .content-section-wrap .content-sections .artband .content-txt-box .left {
        padding: 0 0 20px;
        width: 100%
    }
    .content-section-wrap .content-sections .section-heading em{
        font-size: 1.25rem;
    }
    .content-section-wrap .content-sections .sky .content-txt-box{
        flex-direction: column;
    }
    .content-section-wrap .content-sections .sky .content-txt-box .left {
        padding: 0 0 20px;
        width: 100%;
    }
    .content-section-wrap .content-sections .nature .content-txt-box {
        padding: 0 0 20px;
    }
    .content-section-wrap .content-sections .nature ul{
        flex-direction: column;
    }
    .content-section-wrap .content-sections .nature ul li {
        width: 100%;
    }
    .content-section-wrap .content-sections .nature ul li + li{
        margin-top: 20px;
    }
    .content-section-wrap .content-sections .plan .btn-go-master-plan{
        margin: 20px 0;
    }
    .content-section-wrap .content-sections .plan .btn-go-master-plan span {
        position: relative;
        padding-right: 24px;
        font-weight: 400;
        font-size: 0.875rem;
    }
    .content-section-wrap .content-sections .plan .box .figure-caption {
        align-items: flex-end;
        padding: 10px 0 20px;
    }
    .content-section-wrap .content-sections .plan .box .figure-caption span {
        padding: 0 0 0 26px;
        font-size: 1rem;
    }
    .content-section-wrap .content-sections .plan .box .figure-caption em {
        padding-left: 3px;
        font-size: 0.875rem;
    }
    .content-section-wrap .content-sections .plan .box.btm .figure-caption{
        padding: 10px 0 0;
    }
    .content-section-wrap .content-sections .walk .content-tit-box{
        padding: 0;
    }
    .content-section-wrap .content-sections .walk .content-txt-box{
        flex-direction: column-reverse;
    }
    .content-section-wrap .content-sections .walk .content-txt-box .right{
        margin-bottom: 20px;
        width: 100%;
    }
    .content-section-wrap .content-sections .future .content-txt-box ul li {
        width: 100%;
    }
    .content-section-wrap .content-sections .future .content-txt-box ul li + li{
        margin-top: 20px;
    }
    .content-section-wrap .content-sections .future .content-txt-box ul li:nth-child(2){
        margin: 20px 0 0;
    }
    .content-section-wrap .content-sections .future .content-txt-box ul li:nth-child(4){
        margin: 20px 0 0;
    }
    .content-section-wrap .content-sections .housing .content-txt-box {
        padding: 0 0 20px;
    }
    .content-section-wrap .content-sections .education .content-tit-box{
        padding: 0;
    }
    .content-section-wrap .content-sections .education .content-txt-box{
        flex-direction: column-reverse;
    }
    .content-section-wrap .content-sections .education .right {
        padding: 0 0 20px;
        width: 100%;
    }
    .content-section-wrap .content-sections .medical .content-tit-box{
        padding: 0;
    }
    .content-section-wrap .content-sections .medical .left{
        padding: 0 0 20px;
    }
    .content-section-wrap .content-sections .culture .content-txt-box{
        flex-direction: column-reverse;
    }
    .content-section-wrap .content-sections .culture .right {
        padding: 0 0 20px;
        width: 100%;
    }

    /* ========== 입지 ========== */

    /* - 헤리티지 */
    .content-wrap.location .content-section-wrap .content-sections .content-tit-box{
        padding: 0 0 10px;
    }
    .content-wrap.location .content-section-wrap .content-sections .content-tit-box .section-heading{
        font-size: 1.25rem;
    }
    .content-wrap.location .content-section-wrap .content-sections .summary-title {
        line-height: 1.3;
        font-weight: 500;
        font-size: 1rem;
    }
    .content-wrap.location .content-section-wrap .content-sections .summary-text{
        font-size: 0.875rem;
    }
    .content-wrap.location .content-section-wrap .content-sections .left .leading-text-box {
        margin: 20px 0 0;
        text-align: center;
    }
    .content-wrap.location .content-section-wrap .content-sections .left .leading-text-box p br{
        display: none;
    }
    .content-wrap.location .content-section-wrap .content-sections .left .leading-text-box p::before {
        left: -22px;
        top: 22%;
        transform: translateY(-50%);
    }
    .content-wrap.location .content-section-wrap .content-sections .left .leading-text-box p::after {
        right: -22px;
        left: initial;
        bottom: initial;
        top: 22%;
        transform: translateY(-50%);
    }
    .content-section-wrap .content-sections .gateway .left{
        padding: 0 0 20px;
    }
    .content-section-wrap .content-sections .trade .left{
        padding: 0 0 20px;
    }
    .content-section-wrap .content-sections .railway .left{
        padding: 0 0 20px;
    }
    .content-wrap.location .content-section-wrap .content-sections .modern figure {
        padding: 20px 0 0;
    }

    /* - 교통의 중심 */
    .content-wrap.transport .content-intro .content-desc em {
        padding: 1px 6px 0;
        font-size: 0.875rem;
    }
    .content-wrap.transport .content-intro {
        padding: 0 0 20px;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.access .right .pos-txt strong {
        padding: 0;
        max-width: initial;
        width: 100%;
        height: 50px;
        line-height: 50px;
        font-weight: 500;
        font-size: 1rem;
        border-radius: 6px;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.access .right .pos-txt strong.first {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.access .right .pos-txt strong.first::after {
        right: initial;
        top: initial;
        left: 45%;
        bottom: -27px;
        width: 14px;
        height: 20px;
        transform: rotate(90deg) translate(-50%, -50%);
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.access .right .pos-txt strong img {
        height: 16px;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.access .right .method-txt {
        justify-content: center;
        padding: 20px 0 0;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.access .right .method-txt p {
        width: 50%;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.access .right .method-txt p em {
        font-weight: 500;
        font-size: 1rem;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.access .right .method-txt p em.car {
        padding-left: 40px;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.access .right .method-txt p em.car::before {
        width: 28px;
        height: 24px;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.access .right .method-txt p em.public {
        padding-left: 66px;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.access .right .method-txt p em.public::before {
        width: 54px;
        height: 24px;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.access .right .method-txt p span {
        padding: 8px 0 0;
        font-weight: 500;
        font-size: 1rem;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.access .right .btm {
        padding: 30px 0 0;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.whole .summary-title {
        margin-bottom: 10px;
        padding: 20px 0 0;
        font-weight: 500;
        font-size: 1rem;
        color: #101218;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.whole .summary-title strong{
        font-weight: 500;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.whole .summary-title br{
        display: none;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.whole .list li {
        padding: 15px 0;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.whole .list li p{
        padding-left: 20px;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.whole .list li p::before {
        top: 3px;
        width: 13px;
        height: 15px;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.whole .list li p strong{
        padding-right: 20px;
        width: auto;
        font-weight: 500;
        font-size: 0.875rem;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.whole .list li p span {
        font-size: 0.875rem;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.whole img {
        margin: 0 auto;
        width: 40%;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box {
        flex-direction: column;
        padding: 20px 0 0;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box ul li + li {
        margin: 12px 0 0;
        padding: 12px 0 0;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.btm {
        flex-direction: column-reverse;
        padding: 30px 0 0;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.btm .right {
        padding-left: 0;
        padding-top: 20px;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.btm dl dt::before{
        top: 1px;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.btm li:nth-child(1) dl dt::before {
        width: 18px;
        height: 20px;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.btm li:nth-child(2) dl dt::before {
        width: 22px;
        height: 20px;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.btm li:nth-child(3) dl dt::before {
        width: 20px;
        height: 20px;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.btm dl dt {
        padding-left: 30px;
        font-weight: 500;
        font-size: 0.875rem;;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.btm dl dd {
        font-size: 0.875rem;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.btm .list {
        padding: 0;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.btm .list li strong{
        padding-right: 20px;
        width: auto;
        font-weight: 500;
        font-size: 0.875rem;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.btm .list li strong em {
        font-weight: 500;
        font-size: 0.875rem;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.btm .list li strong br{
        display: none;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.btm .list li span {
        width: auto;
        font-size: 0.875rem;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.btm .list li span br{
        display: none;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section .section-heading {
        font-size: 1.25rem;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.whole .left {
        width: 100%;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.whole .list{
        max-width: 100%;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.whole .right {
        width: 100%;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.top img{
        margin: 0 auto;
        width: 80%;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.top .right{
        padding: 20px 0 0 0;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.top dl dt {
        font-size: 1rem;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.top dl dd {
        font-size: 0.875rem;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.btm .left {
        padding-top: 20px;
        padding-right: 0;
        width: 100%;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.btm .right{
        padding: 0;
        width: 100%;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.btm .right img{
        margin: 0 auto;
        width: 80%;
    }

    /* 친환경 녹지 네트워크 */
    .content-wrap.green .content-section-wrap .content-section.network .summary-title {
        font-size: 1.25rem;
    }
    .content-wrap.green .content-section-wrap .content-section.network .summary-text {
        font-size: 1rem;
    }
    .content-wrap.green .content-section-wrap .content-section.network figure{
        margin: 20px 0;
    }
    .content-wrap.green .content-section-wrap .content-section.downtown .content-tit-box{
        padding: 0 0 20px;
    }
    .content-wrap.green .content-section-wrap .content-section.downtown .content-tit-box .section-heading {
        text-align: left;
        font-size: 1.25rem;
    }
    .content-wrap.green .content-section-wrap .content-section.downtown .content-tit-box .summary-title {
        text-align: left;
        font-size: 1rem;
    }
    /* 글로벌 비즈니스 지구 */
    .content-wrap.business .content-section-wrap .content-section.headquarter .content-txt-box ul {
        flex-direction: column;
    }
    .content-wrap.business .content-section-wrap .content-section.headquarter .content-txt-box ul li {
        width: 100%;
    }
    .content-wrap.business .content-section-wrap .content-section.headquarter .content-txt-box ul li .figure-info {
        margin: 10px 0 20px;
    }
    .content-wrap.business .content-section-wrap .content-section.headquarter .content-txt-box ul li .figure-info p{
        font-size: 0.875rem;
    }
    .content-wrap.business .content-section-wrap .content-section.headquarter .content-txt-box ul li .figure-info p br{
        display: none;
    }
    .content-wrap.business .content-section-wrap .content-section.headquarter .content-txt-box ul li .figure-info em {
        width: 24px;
        font-weight: 700;
        font-size: 0.875rem;
    }
    .content-wrap.business .content-section-wrap .content-section.headquarter .content-txt-box ul li:nth-child(2){
        margin-top: 0;
    }
    .content-wrap.business .content-section-wrap .content-section.headquarter .content-txt-box ul li:nth-child(3){
        margin-top: 0;
    }
    .content-wrap.business .content-section-wrap .content-section.headquarter .content-txt-box ul li:nth-child(5){
        margin-top: 0;
    }
    .content-wrap.business .content-section-wrap .content-section.hub .content-txt-box{
        justify-content: flex-start;
    }
    .content-wrap.business .content-section-wrap .content-section.hub .content-txt-box .section-heading {
        padding: 10px 0 20px;
        text-align: left;
        font-weight: 500;
        font-size: 1rem;
    }
    .content-wrap.business .content-section-wrap .content-section.hub .content-txt-box .section-heading br{
        display: none;
    }
    .content-wrap.business .content-section-wrap .content-section.hub .content-txt-box .section-heading strong{
        font-weight: 500;
    }
    .content-wrap.business .content-section-wrap .content-section.hub .content-txt-box img{
        width: 100%;
    }
    .content-wrap.business .content-section-wrap .content-section.hub .content-txt-box figure p {
        padding: 8px 0 0;
        font-size: 0.875rem;
    }
    .content-wrap.business .content-section-wrap .content-section.potential .left .section-heading {
        padding: 0 0 10px;
    }
    .content-wrap.business .content-section-wrap .content-section.potential ul li + li {
        padding-top: 20px;
    }
    .content-wrap.business .content-section-wrap .content-section.potential ul li dl{
        flex-direction: column;
    }
    .content-wrap.business .content-section-wrap .content-section.potential ul li dl dt {
        width: 100%;
        font-size: 1.125rem;
    }
    .content-wrap.business .content-section-wrap .content-section.potential ul li dl dd {
        width: 100%
    }
    .content-wrap.business .content-section-wrap .content-section.potential ul li dl dd div {
        padding: 0 0 10px;
        font-size: 0.875rem;
    }
    .content-wrap.business .content-section-wrap .content-section.potential ul li dl dd p {
        padding-bottom: 10px;
    }
    .content-wrap.business .content-section-wrap .content-section.potential ul li dl dd p strong {
        padding-right: 20px;
        font-weight: 500;
        font-size: 0.875rem;
    }
    .content-wrap.business .content-section-wrap .content-section.potential ul li dl dd p span {
        font-size: 0.875rem;
    }

    /* - 해외사례비교 */
    .content-wrap.cases .content-intro .summary{
        margin-left: 0;
    }
    .content-wrap.cases .content-intro .summary .summary-title {
        margin-bottom: 10px;
        font-size: 1.125rem;
    }
    .content-wrap.cases .content-intro .summary .summary-text {
        font-size:0.875rem;
    }
    .content-wrap.cases .content-intro .summary .summary-text br{
        display: none;
    }
    .content-wrap.cases .content-intro .bg {
        top: 12%;
    }
    .content-wrap.cases .content-intro .bg img{
        opacity: 1;
    }
    .content-wrap.cases .content-intro ul {
        /*flex-direction: column;*/
        padding: 40px 0 0;
        width: 100%;
    }
    .content-wrap.cases .content-intro ul li{
        width: 33.333%;
    }
    .content-wrap.cases .content-intro ul li img{
        width: 100%;
    }
    .content-wrap.cases .content-intro ul.global_list li img{
        margin: 0 auto;
        width: 100%;
    }
    .content-wrap.cases .content-intro ul li p{
        margin-top: -4%;
    }
    .content-wrap.cases .content-intro ul li p span{
        font-size: 0.75rem;
    }
    .content-wrap.cases .content-intro ul li p em {
        width: 20px;
        height: 20px;
        line-height: 20px;
        font-size: 0.75rem;
    }
    .content-wrap.cases .content-intro .center-box .section-heading{
        top: 10px;
        left: 10px;
        font-weight: 500;
        font-size: 1rem;
        padding-bottom: 0;
    }
    .content-wrap.cases .content-intro .center-box .section-heading span::after {
        height: 1px;
    }
    .content-wrap.cases .content-intro .center-box {
        position: relative;
        margin: 30px auto 0;
    }
    .content-wrap.cases .content-section-wrap .content-section.world .content-tit-box {
        padding: 0 0 20px;
    }
    .content-wrap.cases .content-section-wrap .content-section.world .summary-desc {
        line-height: 1.4;
        font-size: 0.875rem;
    }
    .content-wrap.cases .content-section-wrap .content-section.world .summary-desc strong {
        font-weight: 500;;
    }
    .content-wrap.cases .content-section-wrap .content-section.world ul li:nth-child(2) {
        margin: 0 12px;
    }
    .content-wrap.cases .content-section-wrap .content-section.world ul li:nth-child(2)::before {
        left: -10px;
        width: 10px;
        height: 15px;
    }
    .content-wrap.cases .content-section-wrap .content-section.world ul li:nth-child(2)::after {
        right: -10px;
        width: 9px;
        height: 12px;
    }

    .content-wrap.cases .content-section-wrap .content-section.world ul li:nth-child(2) .txt p {
        font-size: 0.75rem;
    }
    .content-wrap.cases .content-section-wrap .content-section.world ul li:nth-child(2) .txt strong em {
        font-size: 1.125rem;
    }
    .content-wrap.cases .content-section-wrap .content-section.world ul li:nth-child(2) .txt strong {

        font-size: 0.875rem;
    }
    .content-wrap.cases .content-section-wrap .content-section.world ul li .txt p {
        line-height: 1;
        font-size: 0.75rem;
    }
    .content-wrap.cases .content-section-wrap .content-section.world ul li .txt strong {
        padding: 4px 0 0;
        line-height: 1;
        font-size: 0.75rem;
    }
    .content-wrap.cases .content-section-wrap .content-section.world ul li .txt strong em {
        font-size: 1rem;
    }
    .content-wrap.cases .content-section-wrap .content-section.world ul li .txt span{
        font-size: 0.75rem;
    }
    .content-wrap.cases .content-section-wrap .content-section.world ul li .txt span br{
        display: none;
    }
    .content-wrap.cases .content-section-wrap .content-section.world ul li .txt span em {
        font-weight: 500;
        font-size: 1rem;
    }
    .content-wrap.cases .content-section-wrap .content-section.three .summary-desc {
        margin-bottom: 20px;
        padding: 10px 0 0;
        font-size: 0.875rem;
    }
    .content-wrap.cases .content-section-wrap .content-section.three .summary-desc br{
        display: none;
    }
    .content-wrap.cases .content-section-wrap .content-section.three figure .caption {
        padding: 0 0 2px;
        font-size: 0.75rem;
    }
    /* ========== 개발계획 ========== */
    /* - 개발컨셉 */
    .content-wrap.concept .content-intro .project-heading {
        font-size: 1.5rem;
    }
    .content-wrap.concept .content-intro figure {
        position: relative;
        padding-top: 40px;
    }
    .content-wrap.concept .content-intro figure .figure-tit {
        right: 10px;
        top: 10px;
    }
    .content-wrap.concept .content-intro figure p {
        text-align: right;
        font-size: 0.875rem;
    }
    .content-wrap.concept .content-section-wrap .content-sections .content-section.first .content-txt-box figure img {
        width: 100%;
    }
    .content-wrap.concept .content-section-wrap .content-sections .content-section.first .content-txt-box .right {
        padding: 10px 0 0;
    }
    .content-wrap.plan .content-section-wrap .content-sections .content-section .content-txt-box .chk-list p {
        padding-left: 20px;
        font-weight: 400;
        font-size: 0.875rem;
    }
    .content-wrap.plan .content-section-wrap .content-sections .content-section .content-txt-box .chk-list p::before {
        top: 6px;
        width: 10px;
        height: 8px;
    }
    .content-wrap.concept .content-section-wrap .content-sections .content-section .content-txt-box .chk-list li {
        padding: 2px 0;
    }
    .content-wrap.concept .content-section-wrap .content-sections .content-section.list .chk-list p strong {
        width: auto;
        font-weight: 500;
        font-size: 0.875rem;
    }
    .content-wrap.concept .content-section-wrap .content-sections .content-section.list .en {
        font-size: 1.125rem;
    }
    .content-wrap.concept .content-section-wrap .content-sections .content-section.list .summary-text {
        padding: 10px 0;
        font-size: 1rem;
    }
    .content-wrap.concept .content-section-wrap .content-sections .content-section.list .flex-inner {
        align-items: flex-start;
        flex-direction: column;
    }
    .content-wrap.concept .content-section-wrap .content-sections .content-section.list.scd .flex-inner{
        flex-direction: column-reverse;
    }
    .content-wrap.concept .content-section-wrap .content-sections .content-section.list figure {
        width: 100%;
        padding-right: 0;
        padding-bottom: 10px;
    }
    .content-wrap.concept .content-section-wrap .content-sections .content-section.center .section-heading{
        text-align: left;
    }
    .content-wrap.concept .content-section-wrap .content-sections .content-section.center ul{
        flex-direction: column;
    }
    .content-wrap.concept .content-section-wrap .content-sections .content-section.center ul li{
        padding: 15px;
        width: 100%;
    }
    .content-wrap.concept .content-section-wrap .content-sections .content-section.center ul li + li{
        margin-top: 4px;
    }
    .content-wrap.concept .content-section-wrap .content-sections .content-section.center ul li:nth-child(2){
        margin: 10px 0 0;
    }
    .content-wrap.concept .content-section-wrap .content-sections .content-section.center ul li dl dt {
        padding: 0 0 10px;
        font-weight: 500;
        font-size: 1rem;
    }
    .content-wrap.concept .content-section-wrap .content-sections .content-section.center ul li dl dt::after {
        bottom: 5px;
        width: 3px;
        height: 3px;
    }
    .content-wrap.concept .content-section-wrap .content-sections .content-section.center ul li dl dd {
        font-size: 0.875rem;
    }
    /* - 마스터플랜  */
    .content-wrap.master .content-intro figure {
        padding-top: 20px;
    }
    .content-wrap.master .master-plan .content-txt-box {
        padding: 30px 0 0;
    }
    .content-wrap.master .master-plan .content-txt-box .summary-text {
        padding: 20px 0 10px;
        font-size: 1rem;
    }
    .content-wrap.master .master-plan .content-txt-box .zone-list {
        padding: 0 0 0 10px;
    }
    .content-wrap.master .master-plan .content-txt-box .zone-list li {
        padding: 4px 0;
        font-size: 0.875rem;
    }
    .content-wrap.plan table th{
        font-weight: 500;
        font-size: 0.875rem;
    }
    .content-wrap.plan table td.bd{
        font-weight: 500;
    }
    .content-wrap.plan table td{
        font-size: 0.875rem;
    }
    .content-wrap.master .master-plan.land .content-txt-box .right{
        width: 100%;
        max-width: 100%;
    }
    .content-wrap .table-outer{
        overflow-x: auto;
    }
    .content-wrap .table-outer table{
        min-width: 780px;
        width: 100%;
    }
    .content-wrap.master .master-plan.zone .content-txt-box .right{
        width: 100%;
    }
    .content-wrap.master .master-plan.zone .content-txt-box .right figure{
        width: 100%;
    }
    .content-wrap.master .master-plan.zone .content-txt-box .right figure img{
        width: 100%;
    }
    .content-wrap.master .master-plan.zone .content-txt-box .right figure .figure-txt{
        width: 100%;
    }
    .content-wrap.master .master-plan.zone .content-txt-box .right figure .figure-txt p {
        margin: 10px 0 0;
        padding: 7px 12px 6px;
        font-weight: 500;
        font-size: 0.875rem;
    }
    .content-wrap.master .master-plan.zone .content-txt-box .right figure .figure-txt span{
        font-size: 0.75rem;
    }
    .content-wrap.master .master-plan .zone-detail-list li {
        padding: 20px 0;
    }
    .content-wrap.master .master-plan .zone-detail-list li{
        flex-direction: column;
    }
    .content-wrap.master .master-plan .zone-detail-list li .initial {
        width: 100%;
    }
    .content-wrap.master .master-plan .zone-detail-list li .info {
        padding: 15px 0 0;
        width: 100%;
    }
    .content-wrap.master .master-plan .zone-detail-list li .initial .tit {
        padding: 2px 0;
        width: 140px;
        font-weight: 500;
        font-size: 1rem;
    }
    .content-wrap.master .master-plan .zone-detail-list li .initial img {
        margin: 12px auto 0;
    }
    .content-wrap.master .master-plan .zone-detail-list li .info dt {
        padding: 0 0 10px;
        font-weight: 500;
        font-size: 0.875rem;
    }
    .content-wrap.master .master-plan .zone-detail-list li .info dd p strong {
        width: 50px;
        font-weight: 500;
        font-size: 0.875rem;
    }
    .content-wrap.master .master-plan .zone-detail-list li .info dd p span {
        font-size: 0.875rem;
    }
    .content-wrap.master .master-plan .zone-detail-list li .initial span {
        padding: 5px 0 0;
        font-size: 0.75rem;
    }
    .content-wrap.master .master-plan .zone-detail-list li .info dd p span em {
        margin: -2px 7px 0 0;
        padding: 0;
        width: 60px;
        font-size: 0.68rem;
    }
    .content-wrap.master .master-plan.zone {
        margin: 40px 0 0;
        padding: 40px 0 0;
    }
    .content-wrap.master .master-plan.zone .zone-box {
        margin: 20px 0 0;
        padding: 40px 0 0;
    }
    .content-wrap.master .master-plan.zone .zone-box ul li + li {
        padding-top: 20px;
    }
    .content-wrap.master .master-plan.zone .zone-box ul li h4 {
        padding: 0 0 10px;
        font-size: 1.25rem;
    }
    .content-wrap.master .master-plan.zone .zone-box ul li .flex-inner .left{
        flex-direction: column;
    }
    .content-wrap.master .master-plan.zone .zone-box ul li .flex-inner .left img {
        margin-right: 0;
        width: 100%;
    }
    .content-wrap.master .master-plan.zone .zone-box ul li .flex-inner .left .major{
        margin-top: 8px;
        width: 100%;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }
    .content-wrap.master .master-plan.zone .zone-box ul li .flex-inner .left .major p {
        margin: 0 2px 4px;
        padding: 6px 0;
        width: 48%;
        font-weight: 500;
        font-size: 0.75rem;
        border-radius: 6px;
    }
    .content-wrap.master .master-plan.zone .zone-box ul li .flex-inner .left .major p + p {
        margin: 0 2px 4px;
    }
    .content-wrap.master .master-plan.zone .zone-box ul li .flex-inner .right {
        margin: 5px 0 0;
    }
    .content-wrap.master .master-plan.zone .zone-box ul li .chk-list p {
        padding-left: 25px;
        font-size: 0.875rem;
    }
    .content-wrap.master .master-plan.zone .zone-box ul li .chk-list p::before {
        left: 5px;
        top: 5px;
        width: 10px;
        height: 8px;
    }
    .content-wrap.master .master-plan.zone .zone-box ul li .chk-list li {
        padding: 4px 0;
    }
    /* - 녹지계획  */
    .content-wrap.green .content-intro .project-heading{
        word-break: keep-all;
    }
    .content-wrap.green .content-section-wrap{
        padding: 20px 0 0;
    }
    .content-wrap.green .content-section .section-heading {
        padding: 0 0 10px;
    }
    .content-wrap.green .content-tit-box .summary-title {
        font-weight: 500;
        font-size: 1.125rem;
    }
    .content-wrap.green .content-tit-box .summary-text{
        padding: 4px 0 0;
        font-size: 0.875rem;
    }
    .content-wrap.green figure .figure-caption {
        padding: 10px 0 20px;
        font-size: 0.875rem;
    }
    .content-wrap.green figure .figure-txt {
        font-size: 0.875rem;
    }
    .content-wrap.green figure .figure-txt strong{
        font-weight: 500;
    }
    .content-wrap.green .content-sections .strategy-list{
        flex-direction: column;
    }
    .content-wrap.green .content-sections .strategy-list li{
        width: 100%;
    }
    .content-wrap.green .content-sections .strategy-list li + li{
        margin-top:8px
    }
    .content-wrap.green .content-sections .strategy-list li p{
        padding: 8px;
        flex-direction: row;
    }
    .content-wrap.green .content-sections .strategy-list li p strong{
        padding-right: 6px;
        font-size: 1rem;
    }
    .content-wrap.green .content-sections .strategy-list li p span {
        padding-right: 10px;
        font-size: 0.875rem;
    }
    .content-wrap.green .content-sections .strategy-list li p strong {
        font-size: 0.875rem;
    }
    .content-wrap.green .content-sections .strategy-list li .txt{
        padding: 12px 10px;
        font-size: 0.875rem;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
    }
    .content-wrap.green .content-sections .strategy-list li .txt strong{
        font-weight: 700;
        color: #101218;
    }
    .content-wrap.green .content-section-wrap .content-sections .content-txt-box.city .summary-title {
        margin: 0 0 10px;
        font-weight: 500;
        font-size: 1.125rem;
    }
    .content-wrap.green .content-section-wrap .content-sections .content-txt-box.city.last {
        margin: 30px 0 0;
        padding: 40px 0 0;
    }
    .content-wrap.green .content-section-wrap .content-sections .content-txt-box.city .city-list{
        width:100%;
    }
    .content-wrap.green .content-section-wrap .content-sections .content-txt-box.city .city-list li{
        flex-direction: column;
    }
    .content-wrap.green .content-section-wrap .content-sections .content-txt-box.city .city-list li figure {
        width: 100%;
    }
    .content-wrap.green .content-section-wrap .content-sections .content-txt-box.city .city-list li dl {
        padding: 6px 0 0;
        width: 100%;
    }
    .content-wrap.green .content-section-wrap .content-sections .content-txt-box.city .city-list li dl dt {
        padding: 0;
        font-weight: 500;
        font-size: 0.875rem;
    }
    .content-wrap.green .content-section-wrap .content-sections .content-txt-box.city .city-list li dl dd {
        font-size: 0.875rem;
    }
    .content-wrap.green .content-section-wrap .content-sections .content-txt-box.city .city-list li dl dd p {
        padding: 0 0 5px;
        font-weight: 400;
        font-size: 0.875rem;
    }
    /* - 교통계획  */
    .content-wrap.traffic .content-section-wrap .content-sections .traffic-box ul li figure {
        width: 42%;
    }
    .content-wrap.traffic .content-section-wrap .content-sections .traffic-box ul li dl {
        margin-left: 10px;
        width: calc(58% - 10px);
    }
    .content-wrap.traffic .content-section-wrap .content-sections .content-desc {
        padding: 10px 0 20px;
        font-size: 1rem;
    }
    .content-wrap.traffic .content-section-wrap .content-sections .traffic-box .section-heading {
        font-weight: 500;
        font-size: 1rem;
    }
    .content-wrap.traffic .content-section-wrap .content-sections .traffic-box .section-heading em {
        font-weight: 500;
        font-size: 1rem;
     }
    .content-wrap.traffic .content-section-wrap .content-sections .traffic-box ul {
        padding: 10px 0 0;
    }
    .content-wrap.traffic .content-section-wrap .content-sections .traffic-box ul li {
        margin: 0 0 8px;
        border-radius: 6px;
    }
    .content-wrap.traffic .content-section-wrap .content-sections .traffic-box ul li dl dt {
        padding: 0;
        font-weight: 500;
        font-size: 0.875rem;
    }
    .content-wrap.traffic .content-section-wrap .content-sections .traffic-box ul li dl dd {
        font-size: 0.75rem;
    }
    .content-wrap.traffic .content-section-wrap .content-sections .traffic-box ul li dl dd br{
        display: none;
    }
    .content-wrap.traffic .content-section-wrap .content-sections .traffic-box.last {
        padding: 20px 0 0;
    }
    .content-wrap.traffic .content-section.table .content-txt-box .section-heading {
        padding: 0 0 10px;
    }
    .content-wrap.traffic .content-section.table .flex-inner{
        flex-direction: column;
    }
    .content-wrap.traffic .content-section.table .flex-inner figure {
        padding-right: 0;
        width: 100%;
    }
    .content-wrap.traffic .content-section.table .chk-list {
        padding: 10px 0 0;
        width: 100%;
    }
    .content-wrap.traffic .content-section.table .chk-list li p strong {
        font-size: 0.875rem;
    }
    .content-wrap.traffic .content-section.table .chk-list li p span {
        font-size: 0.875rem;
    }
    .content-wrap.traffic .content-section.table .content-txt-box .left {
        margin-bottom: 10px;
    }
    .content-wrap.traffic .content-section.table .content-txt-box .summary-title {
        margin: 0 0 10px;
        font-size: 1rem;
        font-weight: 500;
    }
    .content-wrap.traffic .content-section.table.last figure {
        margin: 0;
        width: 100%;
    }
    .content-wrap.traffic .content-section .public-transit-box {
        margin: 20px 0 0;
        padding: 20px;
        border-radius: 6px;
    }
    .content-wrap.traffic .content-section .public-transit-box .box .tit span {
        padding: 5px 25px 5px 32px;
        font-weight: 500;
        font-size: 0.875rem;
    }
    .content-wrap.traffic .content-section .public-transit-box .box .tit span::before {
        left:15px;
        width: 9px;
        height: 8px;
    }
    .content-wrap.traffic .content-section .public-transit-box .box .tit{
        margin: 0 0 10px;
    }
    .content-wrap.traffic .content-section .public-transit-box .box .content-txt-box dl dt {
        padding: 0 0 4px;
        font-weight: 500;
        font-size: 0.875rem;
    }
    .content-wrap.traffic .content-section .public-transit-box .box dl dd {
        font-size: 0.875rem;
    }
    .content-wrap.traffic .content-section .public-transit-box .box .content-txt-box dl {
        padding: 0 0 10px;
    }
    .content-wrap.traffic .content-section .public-transit-box .box.btm {
        margin: 20px 0 0;
        padding: 20px 0 0;
    }
    .content-wrap.traffic .content-section .public-transit-box .box .txt {
        padding: 0 0 20px;
        font-size: 0.875rem;
    }
    .content-wrap.traffic .content-section.table .box.btm .content-txt-box {
        flex-direction: column;
    }
    .content-wrap.traffic .content-section .public-transit-box .box.btm figure {
        width: 100%;
    }
    .content-wrap.traffic .content-section .public-transit-box .box.btm figure .figure-caption {
        padding: 4px 0 10px;
        font-size: 0.75rem;
    }
    .content-wrap.traffic .content-section .content-txt-box.island{
        align-items: flex-start;
    }
    .content-wrap.traffic .content-section .content-txt-box.island .left{
        width: 100%;
    }
    .content-wrap.traffic .content-section .content-txt-box.island .right{
        width: 100%;
    }
    .content-wrap.traffic .content-section .content-txt-box.island .section-heading br{
        display: none;
    }
    .content-wrap.traffic .content-section .content-txt-box.island .content-desc br{
        display: none;
    }
    .content-wrap.traffic .content-section .content-txt-box.island .left figure {
        padding: 0;
    }
    .content-wrap.traffic .content-section .content-txt-box.island figure .figure-caption {
        padding: 4px 0 10px;
        font-size: 0.75rem;
    }
    /* - 스마트시티 */
    .content-wrap.smart .content-section-wrap .content-sections .content-section .summary-title{
        margin: 20px 0 10px;
        font-weight:500;
        font-size: 1rem;
    }
    .content-wrap.smart .content-section.mobility ul{
        flex-direction: column;
    }
    .content-wrap.smart .content-section.mobility ul li{
        padding-bottom: 10px;
        width: 100%;
    }
    .content-wrap.smart .content-section.mobility ul li:nth-child(2) {
        margin: 0;
    }
    .content-wrap.smart .content-section.mobility ul li:nth-child(4) {
        margin: 0;
        padding-bottom: 0;
    }
    .content-wrap.smart .content-section.mobility ul li .figure-caption{
        margin-top: 4px;
        text-align: left;
        font-weight: 400;
        font-size: 0.875rem;
    }
    .content-wrap.smart .content-section.mobility ul li .figure-caption span {
        padding-left: 20px;
    }
    .content-wrap.smart .content-section.mobility ul li .figure-caption em {
        font-size: 0.75rem;
    }
    .content-wrap.smart .content-section.mobility ul li .figure-caption span::before {
        top: 4px;
        width: 12px;
        height: 9px;
    }
    .content-wrap.smart .content-section-wrap .content-sections .content-txt-box{
        padding: 0;
    }
    .content-wrap.smart .content-section-wrap .content-sections .content-section .content-desc {
        padding: 0 0 10px;
        font-size: 0.875rem;
    }
    .content-wrap.smart .content-section-wrap .content-sections .content-section .content-tit-box{
        padding: 0;
    }
    .content-wrap.smart .content-section-wrap .content-sections .content-section.data .content-tit-box .content-desc{
        margin-top: 20px;
    }
    .content-wrap.smart .content-section-wrap .content-sections .content-section.data .section-heading br{
        display: none;
    }
    .content-wrap.smart .content-section-wrap .content-sections .content-section.data .section-heading span {
        display: block;
        font-size: 1.25rem;
        color: #878b9d;
    }
    .content-wrap.smart .content-section-wrap .content-sections .content-section.data .section-heading span{
        display: inline-block;
    }
    .content-wrap.smart .content-section-wrap .content-sections .content-section.data .content-txt-box div{
        margin-bottom: 10px;
        width: 100%;
    }
    /* - 첨단물류 */
    .content-wrap.logistics .content-intro .summary-title {
        padding:0 0 10px;
        line-height: 1.5;
        font-weight: 500;
        font-size: 1.25rem;
    }
    .content-wrap.logistics .content-sections .content-section.fast .content-tit-box .summary-title{
        line-height: 1.4;
    }
    .content-wrap.logistics .content-sections .content-section.fast .content-tit-box .summary-title.first{
        margin:15px 0 0;
    }
    .content-wrap.logistics .content-sections .content-section.fast .content-tit-box .summary-title span {
        display: inline-block;
        font-size: 1rem;
    }
    .content-wrap.logistics .content-sections .content-section.fast .content-tit-box .summary-title strong {
        font-weight: 500;
        font-size: 1rem;
    }
    .content-wrap.logistics .content-sections .content-section .content-tit-box{
        padding: 0 0 10px;
    }
    .content-wrap.logistics .content-sections .content-section .content-txt-box .box.btm .flex-inner{
        flex-direction: column;
        border-radius: 10px;
    }
    .content-wrap.logistics .content-sections .content-section .content-txt-box .box.btm .flex-inner img{
        border-radius: 10px;
    }
    .content-wrap.logistics .content-sections .content-section .content-txt-box .box.btm .right {
        padding: 12px;
    }
    .content-wrap.logistics .content-sections .content-section .content-txt-box .box.btm dl.first {
        padding: 0 0 10px;
    }
    .content-wrap.logistics .content-sections .content-section .content-txt-box .box.btm dl dt {
        padding: 0 0 2px;
        font-weight: 500;
        font-size: 0.875rem;
    }
    .content-wrap.logistics .content-sections .content-section .content-txt-box .box.btm dl dd {
        font-size: 0.875rem;
    }
    .content-wrap.logistics .content-sections .content-section .content-txt-box .box.btm dl dd strong {
        font-weight: 500;
    }
    .content-wrap.logistics .content-sections .content-section .content-txt-box .figure-caption {
        padding: 0 0 8px;
        text-align: left;
    }
    .content-wrap.logistics .content-sections .content-section .content-txt-box .figure-caption span {
        padding-left: 20px;
        font-size: 0.75rem;
    }
    .content-wrap.logistics .content-sections .content-section .content-txt-box .figure-caption span::before {
        top: 3px;
        width: 11px;
        height: 8px;
    }
    .content-wrap.logistics .content-sections .content-section .content-txt-box .box.mid {
        padding: 0;
    }
    .content-wrap.logistics .content-sections .content-section .content-txt-box .box.btm .flex-inner {
        flex-direction: column;
    }
    .content-wrap.logistics .content-sections .content-section .content-txt-box .box.btm .flex-inner div {
        width: 100%;
    }
    .content-wrap.logistics .content-sections .content-section .content-txt-box .box.btm .right .figure-caption{
        padding-bottom: 0;
    }
    .content-wrap.logistics .content-sections .content-section.safe .summary-title {
        margin: 20px 0 10px;
        font-size: 1rem;
    }
    .content-wrap.logistics .content-sections .content-section.safe .summary-title strong{
        font-weight: 500;
    }
    .content-wrap.logistics .content-sections .content-section.eco .summary-title {
        margin: 20px 0 0;
        font-size: 1rem;
    }
    .content-wrap.logistics .content-sections .content-section.eco .summary-title br{
        display: none;
    }
    .content-wrap.logistics .content-sections .content-section.eco .content-txt-box div {
        width: 100%;
    }
    /* - 친환경계획 */
    .content-wrap.eco .content-intro .summary-title {
        padding: 0 0 10px;
        line-height: 1.5;
        font-weight: 500;
        font-size: 1.25rem;
    }
    .content-wrap.eco .content-intro .content-desc{
        line-height: 1.4;
        font-size: 1rem;
    }
    .content-wrap.eco .content-section-wrap .content-sections .section-heading {
        padding: 0 0 15px;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list h4 {
        font-weight: 500;
        font-size: 1rem;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner {
        flex-direction: column;
        padding: 10px 0 0;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .left{
        width:100%;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .right {
        width:100%;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .right .box {
        background-size: 100px;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .box-outer{
        margin: 0 0 10px;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .box-outer .box {
        padding: 12px;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .box-outer .box.big {
        margin: 20px 0 0;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .box-outer .box.big::before {
        top: -20px;
        width: 9px;
        height: 22px;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .box-outer .year {
        padding: 3px 15px 2px;
        font-size: 0.875rem;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .box-outer .txt {
        padding: 12px 0 5px;
        font-size: 1rem;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .box-outer .refer {
        padding: 0;
        font-size: 0.75rem;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .box-outer .refer em {
        font-weight: 500;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .box-outer .box.big .year {
        font-size: 1rem;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .box-outer .box.big .txt {
        font-weight: 500;
        font-size: 1rem;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .right h5 {
        font-weight: 500;
        font-size: 1rem;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .right .sub-tit {
        font-size: 0.875rem;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .right .grade {
        padding: 12px 0 0;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .right .grade p {
        padding: 10px;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .right .grade p strong {
        padding-right: 6px;
        font-weight: 500;
        font-size: 0.875rem;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .right .grade p span {
        font-weight: 400;
        font-size: 0.75rem;
        color: #424755;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .note {
        padding: 10px 0 0;
        font-weight: 400;
        font-size: 0.75rem;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .note strong{
        font-weight: 500;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .txt {
        padding: 10px 0 0;
        font-size: 0.875rem;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .img-list > li p{
        padding: 5px 0 10px;
        font-size: 0.75rem;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .dl-box dl.last {
        margin: 10px 0 0;
        padding: 10px 0 0;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .dl-box.row{
        flex-direction: column;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .dl-box.row dl{
        width: 100%;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .dl-box.row dl:first-child dd img {
        margin-top: 5px;
        width: 20%;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .dl-box.row dl dd img{
        width: 60%;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .dl-box.row dl.last{
        margin: 15px 0 0;
        padding: 15px 0 0;
        border-left: none;
        border-top: 1px solid #d7dbe7;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .dl-box.row figure{
        display: inline-block;
        padding: 0;
        width: auto;
        vertical-align: middle;
        background-color: transparent;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .dl-box.row dl.last p {
        padding: 0 0 5px;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .dl-box.row dl dd figure:first-child img{
        width: 80px;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .dl-box.row dl dd figure:last-child img{
        width: 45px;
    }
    /* - 타운매니지먼트 */
    .content-wrap.town .content-section-wrap .content-sections .content-section .section-heading {
        padding: 0 0 10px;
    }
    .content-wrap.town .project-heading em {
        font-size: 1.25rem;
    }
    .content-wrap.town .content-intro{
        padding: 20px 0 10px;
    }
    .content-wrap.town .content-intro .summary-title{
        line-height: 1.5;
        font-weight: 500;
        font-size: 1.25rem;
    }
    .content-wrap.town .content-section.why .content-txt-box .top > ul{
        flex-direction: column;
    }
    .content-wrap.town .content-section.why .content-txt-box .top > ul li{
        padding-bottom: 8px;
        width: 100%;
    }
    .content-wrap.town .content-section.why .content-txt-box .top > ul > li .gray {
        padding: 8px 0;
        font-size: 0.875rem;
        border-radius: 6px;
    }
    .content-wrap.town .content-section.why .content-txt-box .top > ul > li .blue {
        margin-top: 12px;
        padding: 8px 0;
        font-weight: 500;
        font-size: 0.875rem;
        border-radius: 6px;
    }
    .content-wrap.town .content-section.why .content-txt-box .top > ul > li .blue::before {
        top: -11px;
        width: 18px;
        height: 8px;
    }
    .content-wrap.town .content-section.why .content-txt-box .top {
        padding: 0 0 20px;
    }
    .content-wrap.town .content-section.why .content-txt-box .btm > ul > li {
        width: 33%;
        margin: 0;
    }
    .content-wrap.town .content-section.why .content-txt-box .btm > ul > li > .chk-list > li p::before {
        top: 5px;
    }
    .content-wrap.town .content-section.why .content-txt-box .btm > ul > li:nth-child(2){
        margin:0 1%;
    }
    .content-wrap.town .content-section.why .content-txt-box .btm > ul > li figure {
        margin: 0 auto 10px;
        width: 100%;
    }
    .content-wrap.town .content-section.why .content-txt-box .btm > ul > li figure strong {
        font-weight: 500;
        font-size: 0.875rem;
    }
    .content-wrap.town .content-section.why .content-txt-box .btm > ul > li figure strong br{
        display: none;
    }
    .content-wrap.town .content-section.why .content-txt-box .btm > ul > li > .chk-list{
        padding-left: 12px;
    }
    .content-wrap.town .content-section.why .content-txt-box .btm > ul > li > .chk-list > li p {
        padding-left: 16px;
        padding-bottom: 4px;
        line-height: 1.4;
        font-weight: 500;
        font-size: 0.875rem;
        word-break: keep-all;
    }
    .content-wrap.town .content-section.why .content-txt-box .btm > ul::after {
        top: 25%;
    }
    .content-wrap.town .content-section.core .content-txt-box .left {
        width: 100%;
    }
    .content-wrap.town .content-section.core .content-txt-box .right {
        margin-left: 0;
        margin-top: 0;
        width: 100%;
    }
    .content-wrap.town .content-section.core .content-txt-box .chk-list li {
        padding: 8px 0;
    }
    .content-wrap.town .content-section .content-txt-box .chk-list li p strong {
        width: 100%;
        font-weight: 500;
        font-size: 0.875rem;
    }
    .content-wrap.town .content-section .content-txt-box .chk-list li p span {
        width: 100%;
        font-size: 0.75rem;
    }
    .content-wrap.town .content-section.core .content-txt-box .chk-list{
        padding: 10px 0 0;
    }
    .content-wrap.town .content-section.core .content-txt-box .chk-list li {
        padding: 5px 0;
    }

    /* ========== 분양정보 ========== */
    /* - 투자자커뮤니티 */
    .content-wrap.community .info-box {
        margin: 0 0 20px;
        padding: 12px;
    }
    .content-wrap.community .info-box dl dt {
        padding-left: 20px;
        font-size: 1rem;
    }
    .content-wrap.community .info-box dl dt::before {
        top: 48%;
        width: 14px;
        height: 14px;
    }
    .content-wrap.community .info-box dl dd {
        padding: 12px 0 0;
    }
    .content-wrap.community .info-box dl dd ul li {
        padding-left: 20px;
        font-size: 0.875rem;
    }
    .content-wrap.community .info-box dl dd ul li::before {
        top: 5px;
        width: 10px;
        height: 8px;
    }
    .content-wrap.community .info-box dl dd ul li + li {
        margin: 6px 0 0;
    }
    .content-wrap.community .filter-outer ul li strong {
        font-size: 0.875rem;
    }
    .content-wrap.community .filter-outer {
        margin: 0 0 20px;
        padding: 12px;
        border-radius: 6px;
    }
    .content-wrap.community .filter-outer ul li{
        flex-direction: column;
    }
    .content-wrap.community .filter-outer ul li + li {
        margin: 10px 0 0;
        padding: 10px 0 0;
    }
    .content-wrap.community .filter-outer ul li strong{
        width:100%;
    }
    .content-wrap.community .filter-outer ul li > div {
        width:100%;
    }
    .content-wrap.community .chk-wrap .chk-box {
        margin: 2px 20px 2px 0;
    }
    .content-wrap.community .filter-outer ul li:nth-child(3) .chk-box{
        width: calc(100% / 5);
    }
    .content-wrap.community .chk-wrap .chk-box input + label{
        padding-left: 0;
        font-size: 0.875rem;
    }
    .content-wrap.community .chk-wrap .chk-box input + label::before {
        width: 18px;
        height: 18px;
    }
    .content-wrap.community .filter-outer ul li:nth-child(3) .chk-box {
        display: inline-block;
        margin: 2px 0;
        width: 66px;
    }
    .board-total {
        font-size: 0.875rem;
    }
    .content-wrap.community .board-total-top {
        padding-bottom: 10px;
    }
    .content-wrap .no-result{
        padding: 30px 0;
    }
    .content-wrap .no-result .txt{
        font-size: 0.875rem;
    }
    .content-wrap .no-result .txt.en{
        font-size: 0.75rem;
    }
    .content-wrap.community .board-table table th {
        padding: 20px 10px;
        font-weight: 500;
        font-size: 0.875rem;
    }
    .content-wrap.community .board-table table td {
        font-size: 0.875rem;
    }
    .content-wrap.community .board-table table td img {
        width: 14px;
    }
    .content-wrap.community .board-table table td a {
        padding: 20px 10px;
        font-weight: 500;
    }
    .content-wrap.community .insert-form-outer .insert-tit {
        padding: 10px 0;
        font-size: 1.25rem;
    }
    .content-wrap.community .insert-form-outer .insert-tit span {
        padding-left: 28px;
    }
    .content-wrap.community .insert-form-outer .insert-tit span::before {
        width: 22px;
        height: 22px;
    }
    .content-wrap.community .insert-form-outer ul li {
        padding: 12px 0 0;
    }
    .content-wrap.community .insert-form-outer ul li .tit-box {
        padding: 0 0 4px;
    }
    .content-wrap.community .insert-form-outer ul li .tit-box label {
        font-weight: 500;
        font-size: 1rem;
    }
    .content-wrap.community .insert-form-outer ul li .tit-box .add-txt {
        padding: 0 0 1px 8px;
        font-size: 0.75rem;
    }
    .content-wrap.community .insert-form-outer ul li .chk-wrap.land .chk-box {
        margin: 0 0 5px 0;
    }
    .content-wrap.community .insert-form-outer ul li textarea {
        margin: 5px 0 0;
        height: 120px;
        padding: 12px;
        font-size: 1rem;
    }
    .content-wrap.community .insert-form-outer ul li input[type="file"] {
        font-size: 0.875rem;
    }
    .content-wrap.community .insert-form-outer ul li .attach-wrap input[type=file]::file-selector-button {
        margin-right:4px;
        width: 80px;
        height: 40px;
        font-weight: 400;
        font-size: 0.875rem;
        border-radius: 6px;
    }
    .content-wrap.community .insert-form-outer ul li .attach-wrap {
        padding: 16px 16px 10px;
    }
    .content-wrap.community .insert-form-outer ul li .attach-wrap strong {
        padding: 5px 0 0;
        font-size: 0.75rem;
    }
    .content-wrap.community .insert-form-outer ul li .attach-wrap .attach-list {
        padding: 15px 0 0;
    }
    .content-wrap.community .insert-form-outer ul li .attach-wrap .attach-list strong span {
        font-size: 0.875rem;
    }
    .content-wrap.community .insert-form-outer ul li .attach-wrap .attach-list strong {
        margin: 0 4px 4px 0;
        padding: 4px 12px;
    }
    .content-wrap.community .insert-form-outer .btn-box {
        padding: 20px 0 0;
    }
    .content-wrap.community .insert-form-outer .btn-box .btn {
        padding: 16px;
        width: calc((100% - 8px) / 2);
        font-size: 0.875rem;
    }
    .content-wrap.community .board-view-content {
        padding: 16px 20px;
        border-radius: 6px;
    }
    .content-wrap.community .board-view-content h3 {
        margin: 0 0 20px;
        padding: 0 0 12px;
        font-size: 1.125rem;
    }
    .content-wrap.community .board-view-content .com-list li {
        flex-direction: column;
    }
    .content-wrap.community .board-view-content .com-list li + li {
        margin-top: 12px;
    }
    .content-wrap.community .board-view-content .com-list li .tit{
        width: 100%;
        font-weight: 500;
        font-size: 1rem;
    }
    .content-wrap.community .board-view-content .com-list li p {
        padding: 4px 0 0;
        width: 100%;
        line-height: 1.5;
        font-size: 0.875rem;
    }
    .content-wrap.community .board-view-content .com-list li p a {
        margin: 0 4px 4px 0;
        padding: 6px 10px;
        border-radius: 6px;
    }
    .content-wrap.community .board-view-content .com-list li p a strong {
        margin-right: 4px;
        padding-right: 18px;
        font-size: 0.875rem;
    }
    .content-wrap.community .board-view-content .com-list li p a strong::after {
        width: 12px;
        height: 12px;
    }
    .content-wrap.community .board-view-content .com-list li p a em {
        font-size: 0.75rem;
    }
    .board-view-footer {
        margin-top: 20px;
    }
    .content-wrap.community .board-view-footer .btn {
        padding: 12px 30px;
        max-width: 160px;
    }
    /* =========== 분양정보 ========== */
    /* - FAQ */
    .faq-top .board-total {
        margin:10px 0 0;
    }
    .faq-list {
        margin-top: 6px;
    }
    .faq-toggle {
        gap: 5px;
        padding: 20px 12px;
        font-size: 1rem;
    }
    .faq-item {
        border-radius: 6px;
    }
    .faq-panel {
        padding: 0 12px 20px 12px;
    }
    .faq-answer{
        font-size: 1rem;
    }
    .faq-catbadge{
        font-size: 0.75rem;
    }
    .faq-catbadge + span{
        width: calc( 100% - 100px);
    }
    .faq-qbadge, .faq-abadge{
        margin-right: 0;
        font-size: 1.125rem;
    }
    .faq-arrow {
        width: 12px;
        height: 6px;
    }
    .fc .fc-toolbar-title {
        font-size: 1.75rem;
        padding: 0 10px;
    }
    .fc .fc-toolbar.fc-header-toolbar {
        margin-bottom: 1.5rem;
    }
    .fc table{
        font-size: 1rem !important;
    }
    .fc-event-main {
        padding: 3px 6px 0;
        font-size: 0.75rem !important;
        font-weight: 400;
    }
    .fc-daygrid-day-events {
        margin-bottom: 6px !important;
        min-height: 3rem !important;
        overflow-y: auto;
        height: 50px;
    }
    .fc .fc-daygrid-day-number {
        padding: 5px 4px;
    }
    .fc-daygrid-event{
        white-space: initial;
    }
    .fc-daygrid-block-event .fc-event-title{
        line-height: 1;
    }
    .fc-icon-chevron-left::before{
        width: 10px;
        height: 18px;
    }
    .fc-icon-chevron-right::before{
        width: 10px;
        height: 18px;
    }


    /* ========== 홍보센터 ======== */
    /* 보도자료 */
    .content-wrap.press-release-list {
        margin-top: 20px;
    }
    /* - 발행물 */
    .grid-list--publication {
        grid-template-columns: repeat(1, 1fr);
        gap: 40px;
    }

    /* ========== 사업개요 ======== */
    /* 사업소개 */
    .project-desc {
        margin-top: 25px;
        font-size: 1.25rem;
    }
    .summary-title {
        margin-bottom: 15px;
        font-size: 1.25rem;
    }
    .summary-desc {
        margin-bottom: 15px;
        font-size: 0.875rem;
    }
    .project-summary {
        margin-bottom: 50px;
        width: 100%;
    }
    .summary-figure img {
        width: 100%;
    }
    .project-info th {
        width: 22%;
    }
    .project-map {
        flex-direction: column;
    }
    .space-separator {
        margin-top: 40px;
        padding-top: 40px;
    }
    .project-map {
        margin-bottom: 40px;
    }
    .project-partners {
        flex-direction: column;
        margin-bottom: 40px;
    }
    .partner-thumb {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .partner-name {
        font-size: 0.9375rem;
    }
    .partner-role li {
        font-size: 0.875rem;
    }
    .partner-role li::before {
        margin-right: 8px;
        font-size: 1rem;
    }
    .partner-role li + li {
        margin-top: 10px;
    }
    .step-desc {
        font-size: 0.875rem;
    }
    .step-num {
        font-size: 0.8125rem;
    }
    .step-num .num-box {
        padding: 3px 10px;
    }
    .step-item {
        height: auto;
    }

    /* 비전 */
    .vision-visual {
        margin: 0 auto 40px;
    }
    .project-vision-core {
        margin-bottom: 50px;
    }
    .project-vision .section-heading {
        margin-bottom: 20px;
        font-size: 1.5rem;
    }
    .vision-desc {
        font-size: 1.25rem;
    }
    .goal-desc {
        font-size: 1rem;
    }
    .project-goal {
        display: block;
        margin-bottom: 60px;
    }
    .goal-title {
        font-size: 1.25rem;
    }
    .goal-list {
        margin-top: 35px;
        margin-left: auto;
        gap: 15px;
        width: 60%;
    }
    .goal-caption {
        gap: 5px;
    }
    .goal-item:last-child {
        padding-top: 15px;
    }
    .strategy-title {
        font-size: 1.25rem;
    }
    .strategy-text {
        margin-top: 0;
    }
    .strategy-desc {
        margin-bottom: 20px;
    }
    .strategy-desc li {
        font-size: 0.875rem;
    }
    .strategy-desc li::before {
        font-size: 1rem;
    }
    .strategy-desc li + li {
        margin-top: 10px;
    }
    .project-strategy {
        margin-bottom: 0;
    }
    .strategy-list {
        display: block;
    }
    .strategy-item {
        margin-top: 40px !important;
    }
    /* 추진일정 */
    .timeline-desc {
        font-size: 1.25rem;
    }
    .timeline-section {
        margin-top: 40px;
        padding-top: 40px;
    }
    .project-timeline .section-heading {
        margin-bottom: 25px;
    }
    .timeline-year {
        margin-bottom: 35px;
        font-size: 1.875rem;
    }
    .timeline-figure img {
        width: 100%;
    }
    .timeline-wrap {
        gap: 30px;
    }
    .timeline-list {
        margin-left: 10px;
    }
    /* .timeline-list {
        padding-left: 50px;
    }
    .timeline-list li::before {
        left: -60px;
    }
    .timeline-list li::after {
        left: -55px;
    } */
    .timeline-list li {
        font-size: 0.875rem;
        gap: 0;
        height: 80px;
    }
    .timeline-right .timeline-block + .timeline-block {
        margin-top: 70px;
    }
    .timeline-note {
        margin-top: 70px;
    }
    /* ========== 서브 공통 ========== */

    .sub-hero {
      position: relative;
      width: 100%;
      /* height: 100vh; */
      height: 1164px;
      /* overflow: hidden; */
      color: #fff;
      background: url('../../images/user/sub/sub-common/sub-hero-bg.jpg') no-repeat;
      background-size: cover;
    }

    .sub-hero-inner {
        width: 100%;
      height: 100%;
      overflow: hidden;
    }

    .sub-hero-inner .breadcrumb {
      /* margin: 200px auto auto; */
      margin: 0 auto;
      padding-top: 200px;
      width: fit-content;
    }

    .sub-hero-inner .breadcrumb ol {
      display: flex;
    }

    .sub-hero-inner .breadcrumb li {
      display: flex;
      align-items: center;
    }

    .sub-hero-inner .breadcrumb li:not(:last-child)::after {
      content: '';
      margin: 0 15px;
      width: 1px;
      height: 14px;
      background: rgba(255, 255, 255, 0.5);
    }

    .sub-hero-inner .breadcrumb a {
      display: inline-block;
      color: rgba(255, 255, 255, 0.5);
      transition: color 0.2s ease;
    }

    .sub-hero-inner .breadcrumb li:first-child a {
      background: url("../../images/user/sub/sub-common/ico-home.png") no-repeat center center;
      background-size: 14px 15px;
      text-indent: -9999px;
      overflow: hidden;
      width: 14px;
      height: 15px;
      opacity: 0.5;
    }

    .sub-hero-inner .breadcrumb a:hover,
    .sub-hero-inner .breadcrumb a:focus {
      color: rgba(255, 255, 255, 1);
      opacity: 1 !important;
    }

    .sub-hero-inner .breadcrumb li[aria-current="page"] a {
      font-weight: 700;
      color: rgba(255, 255, 255, 1);
    }

    .sub-hero-inner .breadcrumb li[aria-current="page"] a:hover {
      color: #fff;
      cursor: default;
    }

    .sub-hero-inner .page-title {
      position: sticky;
      top: 100px;
      margin-bottom: 145px;
      padding-top: 45px;
      text-align: center;
      z-index: 4;
      text-shadow: 1px 1px 3px rgba(0,0,0,0.2)
    }

    .sub-hero-inner .page-title .page-subtitle {
      font-family: var(--font-en);
      font-size: 1.5rem;
    }

    .sub-hero-inner .page-title .page-main-title {
      font-size: 5rem;
    }

    .sub-nav {
      position: sticky;
      /* bottom: 35vh; */
      /*padding-top: 145px;*/
      top: 330px;
      display: flex;
      justify-content: center;
      transition: transform 0.2s ease, opacity 0.2s ease;
      /* will-change: transform, opacity; */
      z-index: 4;
    }

    .sub-nav ul {
      display: flex;
      gap: 8px;
      padding: 8px;
      border: 1px solid #d7dbe7;
      border-radius: 14px;
      background-color: rgba(255, 255, 255, 0.4);
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);
    }

    .sub-nav li {
      flex: 1;
    }

    .sub-nav a {
      display: inline-block;
      padding: 11px 40px;
      border-radius: 14px;
      width: max-content;
      text-align: center;
      font-size: 1.25rem;
      font-weight: 300;
      color: #000;
      transition: all 0.1s ease;
    }

    .sub-nav a:hover,
    .sub-nav a:focus,
    .sub-nav a[aria-current="page"] {
      font-weight: 600;
      color: #fff;
      background: #000;
    }

    .sub-nav a:focus-visible {
      outline: 2px solid #fff; /* 또는 프로젝트 톤에 맞춘 고대비 */
      outline-offset: 2px;
    }

    .sub-nav.is-fixed {
      position: fixed;
      /*top: 70px;*/
      left: 0;
      right: 0;
      bottom: auto;
      width: 100%;
      z-index: 10;
      transform: translateY(0);
      opacity: 1;
        top: 0;
        padding: 10px 0;
        background-color: rgba(255, 255, 255, 0.5);
        backdrop-filter: blur(15px);
    }

    .sub-nav.is-fixed.is-hidden {
      transform: translateY(calc(-100% + -70px));
      opacity: 0;
    }

    .sub-hero-bg {
      position: absolute;
      top: 490px;
      left: 0;
      right: 0;
      margin: 0 auto;
      border-radius: 16px;
      width: 90%;
      height: 755px;
      background: #575d6e;
      z-index: 3;
      overflow: hidden;
      will-change: top, width, height, transform, border-radius;
    }

    .sub-hero-bg img {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform-origin: 50% 100%;
      will-change: transform;
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
    }

    .dropdown-nav {
        display: none;
    }

    /* 서브 컨텐츠 영역 */
    .sub-content {
      padding: 130px 0 80px;
      width: 100%;
      overflow: hidden;
    }

    /* .sub-content-header {
      padding: 0 var(--page-padding-x);
    } */

    .content-body {
      padding: 0 var(--page-padding-x);
    }

    .content-wrap {
        margin: 0 auto;
        max-width: 1340px;
    }

    .board-total {
      margin-bottom: 10px;
      font-size: 1.25rem;
      font-weight: 300;
      color: #424755;
    }

    .board-total strong {
      font-weight: 700;
    }

    .space-separator {
      position: relative;
      margin-top: 90px;
      padding-top: 90px;
    }

    .space-separator::before {
        width: calc(100%) !important;
    }

    /* 스와이퍼 공통 */
    .swiper-pagination-bullet-active {
      transform: none;
    }

    .swiper-navigation-icon {
      display: none;
    }

    /* ========== 서브 페이지 ========== */

    /* 분양소식 */
    .calendar-wrap {
      max-width: 1340px;
      margin: 0 auto;
      position: relative;
      isolation: isolate;
    }

    .fc table {
      font-size: 1.25rem !important;
      font-family: var(--font-en);
    }

    .fc .fc-daygrid-day-top {
      flex-direction: unset !important;
    }

    .fc .fc-day-other .fc-daygrid-day-top {
      opacity: 1;
      color: #878b9d;
    }

    .fc-day-today {
      background: none !important;
      border: none !important;
    }

    .fc-theme-standard td,
    .fc-theme-standard th {
      border-left: none !important;
      border-right: none !important;
    }

    .fc-theme-standard .fc-scrollgrid {
      border: none !important;
    }

    .fc .fc-toolbar.fc-header-toolbar {
      margin-bottom: 2.8em;
    }

    /* FullCalendar toolbar 중앙 정렬 - 화살표와 타이틀 모두 가운데 모음 */
    .fc .fc-toolbar {
      display: flex !important;
      justify-content: center !important;
      align-items: center !important;
      gap: 20px !important;
    }

    .fc .fc-toolbar-chunk {
      display: flex !important;
      align-items: center !important;
    }

    /* FullCalendar 화살표 버튼 스타일 - 배경 제거 */
    .fc .fc-button-primary {
      background: none !important;
      border: none !important;
      box-shadow: none !important;
      padding: 0 !important;
      color: #000 !important;
      font-size: 24px !important;
    }

    .fc .fc-button-primary:hover {
      background: none !important;
      opacity: 0.6 !important;
    }

    .fc .fc-button-primary:focus {
      box-shadow: none !important;
    }

    .fc .fc-button-primary:not(:disabled):active,
    .fc .fc-button-primary:not(:disabled).fc-button-active {
      background: none !important;
      border: none !important;
      box-shadow: none !important;
    }

    .fc .fc-toolbar-title {
      line-height: 1;
      font-size: 40px;
      padding: 0 40px;
    }

    .fc-daygrid-day-events {
        margin-bottom: 10px !important;
        min-height: 4.938rem !important
    }

    .fc-event {
      border-radius: 6px !important;
    }

    .fc-event-main {
      padding: 6px 15px;
      font-family: var(--font-ko);
      font-size: 1rem !important;
      font-weight: 500;
    }

    .fc .fc-col-header-cell-cushion,
    .fc .fc-daygrid-day-number {
      font-weight: 700;
    }

    .fc .fc-col-header-cell-cushion {
      padding: 8px 4px;
    }

    .fc .fc-daygrid-day-number {
      padding: 10px 4px;
    }

    .fc-day-sun {
      color: #ff3131;
    }

    .fc-day-sat {
      color: #0065d6;
    }

    .fc .fc-daygrid-body {
      position: relative;
      overflow: hidden;
      background: #fff;
      z-index: 0;
    }

    .fc .fc-col-header th {
      border-bottom: none !important;
    }

    .fc .fc-scrollgrid-sync-table > tbody > tr:first-child > td {
      border-top: none !important;
    }

    .fc .fc-scrollgrid-sync-table > tbody > tr:last-child > td {
      border-bottom: none !important;
    }

    .fc .fc-scrollgrid,
    .fc .fc-scrollgrid-liquid,
    .fc .fc-scrollgrid-sync-table {
      border-bottom: none !important;
    }

    .fc .fc-daygrid-day-frame {
      border-bottom: none !important;
    }

    .fc .fc-daygrid-body::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: #000;
      z-index: 5;
    }

    .fc .fc-button .fc-icon{
        position: relative;
    }
    .fc-icon-chevron-left::before{
        content:"";
        position: absolute;
        left:50%;
        top: 50%;
        transform: translate(-50%,-50%);
        width: 14px;
        height: 26px;
        background: url("../../images/user/sub/sales/ico-calandar-arw-left.png") no-repeat center / cover;
    }
    .fc-icon-chevron-right::before{
        content:"";
        position: absolute;
        left:50%;
        top: 50%;
        transform: translate(-50%,-50%);
        width: 14px;
        height: 26px;
        background: url("../../images/user/sub/sales/ico-calandar-arw-right.png") no-repeat center / cover;
    }

    .calendar-wrap::after {
      content: "";
      position: absolute;
      left: 0; right: 0;
      bottom: 0;
      height: 2px;
      background: #fff;
      z-index: 10;
      pointer-events: none;
    }

    .calendar-wrap::before {
      content: "";
      position: absolute;
      left: 0; right: 0;
      bottom: 0;
      height: 1px;
      background: #000;
      z-index: 11;
      pointer-events: none;
    }

    /* FAQ */
    /* .faq-wrap {
      margin: 0 auto;
      max-width: 1340px;
    } */
    .faq-list {
      margin-top: 20px;
    }
    .faq-item {
      border: 1px solid #e5eaf2;
      border-radius: 10px;
    }
    .faq-controls {
      display: flex;
      align-items: end;
      justify-content: space-between;
      margin-top: 30px;
    }

    .faq-item + .faq-item {
      margin-top: 15px;
    }

    .faq-toggle {
      display: flex;
      gap: 10px;
      width: 100%;
      padding: 48px 50px;
      text-align: left;
      line-height: 1;
      font-size: 1.5rem; font-weight:600; background:none; border:none; cursor:pointer;
    }
    .faq-qbadge, .faq-abadge { margin-right: 10px; font-size: 2rem; font-weight:700; color:#0065d6; }
    .faq-abadge {
      color: #07080c;
    }
    .faq-arrow {
      margin-left: auto;
      width: 24px;
      height: 12px;
      background: url("../../images/user/sub/sub-common/ico-accordian-down.png") no-repeat center / contain;
      transition: transform .25s ease;
    }
    .faq-item.is-open {
      border: 1px solid #0065d6;
    }
    .faq-item.is-open .faq-arrow { transform: rotate(180deg); }
    .faq-panel { padding: 0 50px 48px 95px; display:none; }
    .faq-answer {
      display: flex;
      gap: 10px;
      align-items: center;
      font-size: 1.25em;
      font-weight:300;
      color:#424755;
      line-height:1;
    }

    .faq-catbadge {
      display: inline-block;
      padding: 2px 10px;
      border-radius: 6px;
      font-size: 1rem;
      font-weight: 400;
      line-height: 1.4;
      color: #0065d6;
      background: #e5effb;
    }

    /* @media (max-width:768px){
      .ui-field-group { grid-template-columns:1fr; }
      .faq-toggle { font-size:1rem; padding:18px 0; }
      .faq-panel { padding-bottom:18px; }
      .faq-catbadge { font-size:0.75rem; padding:2px 6px; }
    } */

    .sub-content-header {
      /* margin: 0 auto;
      width: 1340px; */
      padding: 0 var(--page-padding-x);
    }

    .sub-content-title {
        margin: 0 auto; /* 첨삭보류*/
        width: 1340px; /* 첨삭보류 */
        font-size: 3.75rem;
    }

    /* 발행물  */
    .grid-list--publication {
      grid-template-columns: repeat(2, 1fr);
      gap: 50px 100px;
    }

    .grid-card--publication {
      display: flex;
      align-items: stretch;
      gap: 40px;
      border-bottom: 1px solid #575d6e;
      padding-bottom: 50px;
    }

    .grid-card--publication .grid-card-body {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .grid-card--publication .grid-card-thumb {
      flex-shrink: 0;
      border: 1px solid #e5eaf2;
      border-radius: 10px;
      aspect-ratio: 146/207;
      margin-bottom: 0;
      width: 146px;
      overflow: hidden;
    }

    .grid-card--publication .grid-card-date {
      margin-bottom: 15px;
    }

    .grid-card--publication .grid-card-title {
      font-weight: 700;
      margin-bottom: 16px;
    }

    .grid-card--publication .grid-card-actions {
      display: flex;
      gap: 8px;
      margin-top: auto;
    }

    .grid-card--publication .grid-card-actions .btn {
      gap: 7px;
      font-weight: 400;
    }
    .grid-card--publication .grid-card-actions .btn-download {
      background: #0065d6;
    }

    .grid-card--publication .grid-card-actions .btn-preview::before {
      content: '';
      width: 20px;
      height: 15px;
      background: url("../../images/user/sub/sub-common/ico-preview.png") no-repeat;
    }

    .grid-card--publication .grid-card-actions .btn-download::before {
      content: '';
      width: 17px;
      height: 16px;
      background: url("../../images/user/sub/sub-common/ico-download-wh.png") no-repeat;
    }

    /* 사업소개 */
    .project-intro {
      margin-bottom: 70px;
    }

    .project-heading {
      line-height: 1.3;
      font-size: 3.75rem;
      font-weight: 700;
    }

    .project-desc {
      margin-top: 90px;
      font-size: 2rem;
      font-weight: 700;
    }

    .project-desc .text-point {
      line-height: 1.6;
      font-weight: 700;
      color: #0065d6;
    }

    .project-summary {
      margin-left: auto;
      margin-bottom: 100px;
      width: 556px;
    }

    .summary-title {
      margin-bottom: 20px;
      line-height: 1.6;
      font-size: 2rem;
      font-weight: 700;
    }

    .summary-desc {
      margin-bottom: 40px;
      font-size: 1.25rem;
      font-weight: 300;
      color: #424755;
      line-height: 1.7;
    }

    .project-info table {
      width: 100%;
      margin-bottom: 35px;
    }
    .project-info th,
    .project-info td {
      padding: 23px 15px;
      border-top: 1px solid #d7dbe7;
      text-align: left;
      font-size: 1.25rem;
      font-weight: 300;
      color: #424755;
    }
    .project-info th {
      width: 17%;
      font-weight: 700;
      color: #101218;
    }

    .project-map {
      display: flex;
      gap: 7px;
      justify-content: space-between;
      margin-bottom: 100px;
    }
    .project-map figure {
      flex: 1;
    }
    .project-map img {
      width: 100%;
      border-radius: 10px;
    }

    .project-partners {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      margin-bottom: 100px;
      padding-top: 100px;
    }

    /*.project-partners*/ .section-heading {
      font-size: 2.5rem;
      font-weight: 700;
      word-break: keep-all;
    }

    .partners-content {
      display: flex;
      flex-direction: column;
      gap: 60px;
    }

    .partner-thumb {
      margin-bottom: 35px;
    }

    .partner-thumb img {
      width: 100%;
    }

    .partner-text {
      display: flex;
      align-items: baseline;
    }

    .partner-name {
      width: 47.72%;
      font-size: 1.5rem;
      font-weight: 700;
    }

    .partner-role li {
      font-size: 1.25rem;
      font-weight: 300;
      color: #424755;
    }

    .partner-role li::before {
      content: '✓';
      margin-right: 15px;
      font-size: 1.625rem;
      font-weight: 700;
      color: #0065d6;
    }

    .partner-role li + li {
      margin-top: 20px;
    }

    /* 반응형 */
    /*@media (max-width: 1024px) {
      .project-partners {
        flex-direction: column;
        gap: 40px;
      }

      .project-partners .section-heading {
        flex: none;
        font-size: 1.5rem;
      }

      .partners-content {
        gap: 40px;
      }

      .partner-item {
        flex-direction: column;
      }

      .partner-thumb {
        width: 100%;
      }
    }*/

    .project-step {
      display: flex;
      justify-content: space-between;
      align-items: stretch;
      gap: 80px;
    }
    .step-method {
      display: flex;
      flex-direction: column;
      width: 34.32%;
    }
    .step-progress {
      display: flex;
      flex: 1;
      flex-direction: column;
    }

    .step-bubble,
    .step-list {
      flex: 1;
      display: flex;
      margin-top: 55px;
      font-size: 1.25rem;
    }

    .step-bubble {
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 40px 60px;
      color: #fff;
      line-height: 1.5;
      aspect-ratio: 460/235;
      text-align: center;
      background: url("../../images/user/sub/overview/step-method-bg.png") no-repeat;
      background-size: contain;
    }

    .step-bubble .step-name {
        font-size: 1.125rem;
    }

    .step-item {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 40px 50px;
      font-size: 1.25rem;
      color: #fff;
    }

    .step-progress .step-item {
        justify-content: flex-start;
    }

    .step-progress .step-item .step-name {
        margin-top: 5px;
    }

    .step-list .step-item:first-child {
      width: 52.5% !important;
      aspect-ratio: 421.58/234.92;
      background: url("../../images/user/sub/overview/step-01-bg.png") no-repeat;
      background-size: contain;
    }

    .step-list .step-item:last-child {
      aspect-ratio: 378.55/234.92;
      flex: 1;
      background: url("../../images/user/sub/overview/step-02-bg.png") no-repeat;
      background-size: contain;
    }

    .step-num {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 0.75rem;
      font-weight: 700;
    }

    .step-num .num-box {
      padding: 2px 8px;
      border: 1px solid #fff;
      border-radius: 18px;
      line-height: normal;
      background: #000;
    }

    .step-name {
      font-size: 0.8125rem;
      font-weight: 700;
    }

    .step-item .step-name {
      margin-top: auto;
    }

    .step-desc {
      display: block;
      margin-top: 5px;
      line-height: 1.2;
      font-size: 0.875rem;
      font-weight: 200;
    }

    /* 반응형 */
    /* @media (max-width: 1024px) {
      .project-summary,
      .project-map,
      .project-step,
      .partner-item {
        flex-direction: column;
      }
      .summary-figure img,
      .partner-thumb img {
        width: 100%;
      }
    } */

    /* 갤러리 상세 */
    .gallery-view {
      margin: 0 auto;
      padding-bottom: 100px;
      text-align: center;
    }

    .gallery-main {
      margin-top: 45px;
      padding-top: 80px;
      border-top: 1px solid #e5eaf2;
    }

    .gallery-main-inner {
      position: relative;
      margin: 0 auto;
      max-width: 100%;
    }

    .gallery-main-inner .swiper-wrapper {
        width: 100%;
        height: auto !important;
    }

    .gallery-main .swiper {
      position: relative;
      width: 100%;
      height: auto;
      /* aspect-ratio: 1 / 1; */
      /*border-radius: 10px;*/
      overflow: hidden;
    }

    .gallery-main-inner .swiper-slide img {
        width: 100%;
        height: auto;
    }

    .gallery-main img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .gallery-main .swiper-button-prev,
    .gallery-main .swiper-button-next {
      border: none;
      color: #000;
      width: fit-content;
      height: fit-content;
      background: none;
      transition: background 0.2s;
    }


    .gallery-main .swiper-button-prev::after,
    .gallery-main .swiper-button-next::after {
      display: none;
    }

    .gallery-main .swiper-button-prev {
      left: -83px !important;
    }

    .gallery-main .swiper-button-next {
      right: -83px !important;
    }

    .gallery-main .swiper-pagination {
      position: static;
      margin-top: 30px;
    }

    .gallery-main .swiper-pagination-bullet {
      margin: 0 5px !important;
      width: 10px !important;
      height: 10px !important;
      background: #878b9d;
      opacity: 1;
    }

    .gallery-main .swiper-pagination-bullet-active {
      background: #0065d6;
    }

    .gallery-desc {
      margin-top: 70px;
      line-height: 1.3;
      font-size: 1.25rem;
      font-weight: 300;
      color: #424755;
    }

    .gallery-desc p + p {
      margin-top: 6px;
    }

    /* 영상 상세 */
    .gallery-main-inner.video{
        max-width: 760px;
    }

    /* 반응형 */
    /*@media (max-width: 768px) {
      .gallery-main .swiper {
        aspect-ratio: 4 / 3;
      }
      .swiper-button-prev,
      .swiper-button-next {
        width: 36px;
        height: 36px;
      }
    }*/

    /* 비전 */


    .project-vision .section-heading {
        flex: 1;
      font-size: 3.75rem;
      margin-bottom: 40px;
    }

    .project-vision-core {
      text-align: center;
      margin-bottom: 90px;
    }

    .vision-visual {
      margin: 0 auto 65px;
    }

    .vision-desc {
      font-size: 2.5rem;
      font-weight: 700;
      color: #000;
    }

    .project-goal {
      position: relative;
      display: flex;
      justify-content: space-between;
      gap: 130px;
      margin-bottom: 100px;
      padding-top: 85px;
    }

    .goal-item {
      flex: 1;
    }

    .goal-item:last-child {
        padding-top: 55px;
        border-top: 1px solid #878b9d;
    }

    .goal-thumb img {
      width: 100%;
    }

    .goal-caption {
      display: flex;
      flex-direction: column;
      align-items: baseline;
      gap: 20px;
    }

    .goal-title {
      font-size: 2.5rem;
      font-weight: 700;
    }

    .goal-desc {
      font-size: 2rem;
      font-weight:300;
    }

    /* ===== 핵심 전략 ===== */
    .project-strategy {
      position: relative;
      margin-bottom: 120px;
      padding-top: 85px;
    }

    .project-strategy .section-heading {
      margin-bottom: 70px;
      text-align: center;
    }

    .strategy-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0 235px; /* 세로 간격 크게, 좌우 살짝 */
      position: relative;
    }

    /* 기본 카드 */
    .strategy-item {
      position: relative;
      z-index: 1;
    }

    .strategy-item:nth-child(even) {
      margin-top: 235px; /* ✅ 세로 겹침 표현 */
    }
    /* .strategy-list > li {
      margin-top: 240px;
    }

    .strategy-list > li:first-child {
      margin-top: 0;
    } */
    .strategy-item {
      position: relative;
    }

    .strategy-num {
      position: absolute;
      /*top: -15px;
      right: -25px;*/
      top: -25px;
      right: -15px;
      line-height: 1;
      /*font-size: 19.74rem;*/
      font-size: 12rem;
      font-weight: 800;
      color: rgba(0, 101, 214, 0.1);
      pointer-events: none;
    }

    .strategy-thumb img {
      width: 100%;
      border-radius: 12px;
      display: block;
    }

    .strategy-text {
      margin-top: 20px;
    }

    .strategy-title {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 45px;
      line-height: 1.3;
    }

    .strategy-title .strategy-kicker {
      display: block;
      font-weight: 300;
      letter-spacing: -0.01em;
    }

    .strategy-desc {
      margin-bottom: 55px;
    }

    .strategy-desc li {
      position: relative;
      padding-left: 30px;
      font-size: 1.25rem;
      font-weight: 300;
      color: #424755;
    }

    .strategy-desc li + li {
      margin-top: 20px;
    }

    .strategy-desc li::before {
      content: "✓";
      position: absolute;
      top: 50%;
      left: 0;
      transform: translateY(-50%);
      line-height: 1;
      font-size: 1.625rem;
      font-weight: 700;
      color: #0065d6;
    }

    /* ===== 반응형 ===== */
    /* @media (max-width: 1024px) {
      .strategy-list {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      .vision-text .vision-en {
        font-size: 1.5rem;
      }
      .goal-list {
        flex-direction: column;
        gap: 30px;
      }
      .strategy-num {
        font-size: 3.5rem;
      }
    } */

    /* 추진일정 */
    .project-timeline {
      margin-top: 40px;
    }

    .timeline-section {
      position: relative;
      margin-top: 90px;
      padding-top: 90px;
    }

    .timeline-section::before {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 50%;
      width: 100%;
      height: 1px;
      transform: translateX(-50%);
      background: #878b9d;
    }

    .timeline-intro {
      display: flex;
      justify-content: end;
    }

    .timeline-desc {
      font-size: 2rem;
      font-weight: 500;
    }

    /* 섹션 레이아웃 */
    .timeline-wrap {
      display: flex;
      gap: 210px;
    }

    .project-timeline .section-heading {
      margin-bottom: 50px;
    }

    .timeline-right {
      flex: 1;
    }

    .timeline-right .timeline-block + .timeline-block {
      margin-top: 150px;
    }
    .timeline-year {
      margin-top: -10px;
      margin-bottom: 70px;
      line-height: 1;
      font-size: 5rem;
      font-weight: 700;
    }

    .timeline-list {
      position: relative;
      border-left: 1px solid #101218;
      padding-left: 30px;
    }

    .timeline-list li {
      display: flex;
      align-items: flex-start;
      gap: 30px;
      position: relative;
      font-size: 1.25rem;
      font-weight: 300;
      line-height: 1;
      height: 105px;
    }

    .timeline-list li:last-child {
      height: fit-content;
    }

    /* .timeline-list li + li {
      margin-top: 55px;
    } */

    .timeline-list li::before {
      content: "";
      position: absolute;
      top: -3px;
      left: -40px;
      border-radius: 50%;
      width: 20px;
      height: 20px;
      background-color: #b8dbff;

    }

    .timeline-list li::after {
      content: "";
      position: absolute;
      top: 2px;
      left: -35px;
      border-radius: 50%;
      width: 10px;
      height: 10px;
      background-color: #0065d6;
    }

    .timeline-date {
      display: inline-block;
      padding-right: 30px;
      width: 80px;
      font-family: var(--font-en);
      font-weight: 700;
      color: #0065d6;
    }

    .timeline-text .br {
      display: block;
      margin-top: 10px;
    }

    .timeline-note {
      margin-top: 150px;
      color: #878b9d;
      font-weight: 200;
    }


    /* 반응형 */
    /* @media (max-width: 768px) {
      .timeline-year { font-size: 2rem; margin-bottom: 25px; }
      .timeline-list { margin-left: 30px; }
      .timeline-date { width: 70px; font-size: 1rem; }
      .timeline-text { font-size: 1rem; }
    } */

    /* 기대효과 */
    .benefit-intro {
      margin-bottom: 130px;
    }

    .benefit-desc {
      line-height: 1.3;
      font-size: 3.75rem;
      font-weight: 700;
    }

    .benefit-step {
      position: relative;
      margin-top: 75px;
      padding-bottom: 75px;
    }

    .benefit-step-header {
      display: flex;
      align-items: center;
      gap: 18px;
      margin-bottom: 75px;
    }

    .benefit-step-badge {
      display: inline-block;
      padding: 12px 15px;
      border-radius: 50px;
      line-height: 1;
      font-size: 1.5rem;
      font-weight: 700;
      color: #fff;
      background: #000;
    }

    .benefit-step-title {
      font-size: 2.5rem;
      font-weight: 700;
    }

    .benefit-group {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
    }

    .benefit-grid .benefit-group:last-child .benefit-label {
      margin-top: 45px;
    }
    .benefit-grid .benefit-group:last-child .benefit-list {
      padding-top: 45px;
      border-top:  1px solid #575d6e;
    }

    /* .benefit-group + .benefit-group {
      border-top: 1px solid #000;
    } */

    .benefit-grid .benefit-group:last-child {
      margin-top: 45px;
      padding-top: 45px;
    }

    .benefit-label {
      position: relative;
      line-height: 1;
      font-size: 2rem;
      font-weight: 700;
    }

    .benefit-label::after {
      content: '';
      position: absolute;
      top: 0;
      right: -20px;
      border-radius: 100%;
      width: 10px;
      height: 10px;
      background: #0065d6;
    }

    .benefit-grid .benefit-group:last-child .benefit-label::after {
      background: #5f5ad5;
    }

    .benefit-list {
      flex: 0 65.67%;
    }

    .benefit-list li {
      padding: 0 0 25px 0;
    }
    .benefit-list li + li {
      border-top: 1px solid #e5eaf2;
    }

    .benefit-list li:nth-child(n+2) {
      padding-top: 30px;
    }
    .benefit-item {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      line-height: 1;
    }

    .benefit-left {
      display: flex;
      align-items: baseline;
      gap: 20px;
      flex-shrink: 0;
    }

    .benefit-value {
      font-size: 5rem;
      font-weight: 700;
    }

    .benefit-value.is-blue {
      color: #0065d6;
    }

    .benefit-value.is-purple {
      color: #5f5ad5;
    }

    .benefit-unit {
      font-size: 1.5rem;
      font-weight: 500;
    }

    .benefit-right {
      flex: 0 52.27%;
    }

    .benefit-desc-title {
      display: flex;
      align-items: center;
      gap: 18px;
      font-size: 1.5rem;
      font-weight: 600;
      margin-bottom: 20px;
    }

    .benefit-desc-title::before {
      content: '';

    }

    .benefit-desc-title.ico-home::before {
      width: 20px;
      height: 22px;
      background: url("../../images/user/sub/overview/ico-benefit-home.png") no-repeat;
    }

    .benefit-desc-title.ico-people::before {
      width: 22px;
      height: 20px;
      background: url("../../images/user/sub/overview/ico-benefit-people.png") no-repeat;
    }

    .benefit-desc-title.ico-job::before {
      width: 22px;
      height: 22px;
      background: url("../../images/user/sub/overview/ico-benefit-job.png") no-repeat;
    }

    .benefit-desc-title.ico-industry::before {
      width: 22px;
      height: 22px;
      background: url("../../images/user/sub/overview/ico-benefit-industry.png") no-repeat;
    }

    .benefit-desc-text {
      line-height: 1.5;
      font-size: 1.25rem;
      font-weight: 300;
      color: #424755;
    }

    .benefit-bg {
      position: absolute;
      top: 0;
      left: 50%;
      width: 100vw;
      transform: translateX(-50%);
      z-index: -1;
    }

    .benefit-step.is-private .benefit-bg img {
      margin-left: auto;
    }

    .developer-grid {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      margin-bottom: 130px;
    }

    /* Brand */
    .project-brand .section-heading {
      font-size: 3.75rem;
    }

    .project-brand h4 {
      font-size: 2.5rem;
    }

    .brand-intro {
      margin-bottom: 60px;
      padding: 105px 0;
      text-align: center;
      background: url("../../images/user/sub/overview/bg-brand-intro.png") no-repeat center center;
    }

    .brand-sub-title {
      font-size: 2.5rem;
      font-weight: 700;
    }

    .brand-main-title {
      position: relative;
      font-size: 6.25rem;
    }

    .brand-main-title::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 10px;
      width: 100%;
      height: 2px;
      background: #000;
    }

    .brand-desc {
      display: block;
      margin-top: 30px;
      font-size: 1.5rem;
      font-weight: 300;
    }

    .brand-desc b {
      font-weight: 700;
    }

    .brand-name-meaning {
      display: flex;
    }

    .brand-name-meaning li {
      padding: 0 60px 45px;
      text-align: center;
      font-size: 1.25rem;
      font-weight: 300;
      color: #424755;
    }

    .brand-name-meaning li + li {
      border-left: 1px solid #878b9d;
    }

    .brand-name-meaning li strong {
      font-size: 1.5rem;
      font-weight: 700;
      color: #101218;
    }
    .brand-name-meaning li:first-child {
      background: url("../../images/user/sub/overview/bg-name-meaning-blue.png") center bottom no-repeat;
    }
    .brand-name-meaning li:nth-child(2) {
      background: url("../../images/user/sub/overview/bg-name-meaning-green.png") center bottom no-repeat;
    }
    .brand-name-meaning li:last-child {
      background: url("../../images/user/sub/overview/bg-name-meaning-purple.png") center bottom no-repeat;
    }

    .brand-symbol-wrap {
      display: flex;
      justify-content: space-between;
      margin-top: 75px;
    }

    .brand-symbol-desc {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: end;
      margin-bottom: 30px;
      font-size: 1.5rem;
      font-weight: 300;
      word-break: auto-phrase;
    }

    .brand-symbol-desc br {
      display: none;
    }

    .brand-symbol-desc p {
      margin-top: 50px;
      line-height: 1.6;
    }

    .brand-symbol-desc p b {
      font-weight: 700;
    }

    .brand-symbol-list {
      width: 555px;
    }

    .brand-symbol-list li + li {
      margin-top: 8px;
    }

    .brand-symbol-list li:first-child {
      background: url("../../images/user/sub/overview/bg-symbol-blue.png") no-repeat;
    }

    .brand-symbol-list li:nth-child(2) {
      background: url("../../images/user/sub/overview/bg-symbol-green.png") no-repeat;
    }

    .brand-symbol-list li:last-child {
      background: url("../../images/user/sub/overview/bg-symbol-purple.png") no-repeat;
    }

    .brand-symbol-list li p {
      position: relative;
      margin-right: 115px;
      font-size: 1.5rem;
      font-weight: 700;
    }

    .brand-symbol-list li p img {
      position: absolute;
      top: 50%;
      right: -60px;
      transform: translateY(-50%);
    }

    .brand-symbol-list li {
      font-size: 1.25rem;
    }

    .brand-slogan-wrap {
      display: flex;
      gap: 110px;
      align-items: end;
      margin-top: 180px;
    }

    .brand-slogan-visual {
      position: relative;
      width: fit-content;
    }

    .brand-slogan-visual figure {
        width: 65%
    }

    .brand-slogan-text h4 {
      margin-bottom: 15px;
    }

    .brand-slogan-text p {
      line-height: 1.6;
      font-size: 1.25rem;
      font-weight: 300;
      color: #424755;
    }

    .brand-slogan-text p + p {
      margin-top: 20px;
    }

    .brand-logotype-wrap {
      display: flex;
      justify-content: space-between;
      gap: 40px;
      margin-top: 75px;
    }

    .brand-logo-visual {
      flex: 0 0 31.34%;
      display: flex;
      align-items: stretch;
      flex-direction: column;
      gap: 20px;
    }

    .brand-logo-visual .logo-item {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid #e7e7e7;
      border-radius: 10px;
      height: 50%;
      background: url("../../images/user/sub/overview/bg-logo-grid.png")
    }

    .brand-logo-visual .logo-item:first-child img {
      width: 343px;
    }

    .brand-logo-visual .logo-item figcaption {
      position: absolute;
      top: 15px;
      right: 20px;
    }

    .logotype-symbol {
      flex: 1;
      padding: 15px;
      border: 1px solid #e7e7e7;
      border-radius: 10px;
    }

    .logotype-symbol h4 {
      padding-top: 5px;
      padding-left: 15px;
    }

    .logotype-symbol-wrap {
      display: flex;
      align-items: stretch;
      gap: 23px;
    }

    .logotype-symbol-wrap .symbol-set:first-child {
      width: 37.5%;
    }

    .logotype-symbol-wrap .symbol-set:first-child .symbol-image {
      margin-top: 44px;
    }

    .logotype-symbol-wrap .symbol-set:last-child {
      flex: 1;
    }

    .symbol-box {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 45px;
      padding: 12px 30px;
      border-radius: 12px;
      height: 180px;
      background: #f5f6ff;
    }

    .symbol-table table {
      width: 100%;
      font-size: 0.875rem;
    }

    .symbol-table table thead {
      border-bottom: 1px solid #878b9d;
    }

    .symbol-table table th, .symbol-table table td {
      padding: 4px 0;
      color: #424755;
      word-break: keep-all;
    }

    .symbol-table table th {
      padding-bottom: 8px;
      text-align: left;
    }
    .symbol-table table td {
      font-weight: 300;
    }

    .symbol-table tbody tr:first-child td {
      padding-top: 12px;
    }

    .symbol-table table .color {
      font-weight: 700;
    }

    .symbol-table table .color.blue {
      color: #0066ba;
    }

    .symbol-table table .color.green {
      color: #00bda2;
    }

    .symbol-table table .color.purple {
      color: #8784d6;
    }

    .logotype-symbol-wrap .symbol-set {
      display: flex;
      flex-direction: column;
    }

    .logotype-symbol-wrap .symbol-set .symbol-image {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .brand-color {
      display: flex;
      justify-content: space-between;
    }

    .color-list {
      display: flex;
      flex-direction: column;
      gap: 8px;
      width: 880px;
      color: #fff;
    }

    .color-item {
      position: relative;
      display: flex;
      align-items: stretch;
      justify-content: space-between;
      padding: 40px 0 40px 55px;
      border-radius: 16px;
      background-size: cover !important;
      overflow: hidden;
    }

    .color-bg--blue {
      background: url("../../images/user/sub/overview/bg-brandcolor-blue.png") no-repeat;
    }

    .color-bg--green {
      background: url("../../images/user/sub/overview/bg-brandcolor-green.png") no-repeat;
    }

    .color-bg--purple {
      background: url("../../images/user/sub/overview/bg-brandcolor-purple.png") no-repeat;
    }

    .color-item h4 {
      flex: 0 0 25%;
      line-height: 1;
    }

    .color-item .color-info {
      display: flex;
      flex-direction: column;
      margin-right: auto;
      width: 100%;
    }

    .color-item .color-meaning {
      font-size: 1.5rem;
      font-weight: 700;
    }

    .color-item .color-desc {
      margin-top: auto;
      font-size: 1.25rem;
      font-weight: 300;
    }

    .color-code {
      width: 258px;
    }

    .color-code >  div {
      position: relative;
      display: flex;
      padding: 4px 0;
      font-weight: 300;
    }

    .color-code >  div + div {
      border-top: 1px solid #8a919a;
    }

    .color-code >  div dt {
      width: 42.63%;
    }

    .color-item .color-code::before {
      position: absolute;
      content: '';
      top: 50%;
      right: -70px;
      transform: translateY(-50%);
      border-radius: 100%;
      width: 140px;
      height: 140px;
      background: #0066ba;
    }

    .color-bg--green .color-code::before {
      background: #00bda2;
    }

    .color-bg--purple .color-code::before {
      background: #8784d6;
    }

    /* 시행자 */
    .project-developer h4 {
      font-size: 2.5rem;
    }

    .project-developer h5 {
      font-size: 2rem;
    }

    .org-item {
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .org-header {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 50px;
    }

    .org-badge {
      padding: 2px 12px;
      border-radius: 6px;
      font-size: 1.25rem;
      font-weight: 300;
      color: #fff;
      background: #0065d6;
    }

    .org-list {
      margin-bottom: 55px;
    }

    .org-list li {
      display: flex;
      align-items: center;
      font-size: 1.25rem;
      font-weight: 300;
      color:#424755;
    }

    .org-list li + li {
      margin-top: 20px;
    }

    .org-list li::before {
      content: '✓';
      margin-right: 15px;
      font-size: 1.625rem;
      font-weight: 700;
      color: #0065d6;
    }

    .org-logo {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: auto;
      border-radius: 10px;
      height: 160px;
      background: #f0f3f8;
    }

    .developer-note {
      margin-top: 55px;
      color: #878b9d;
      font-weight: 300;
    }

    .developer-info-grid {
      display: flex;
      justify-content: space-between;
      gap: 40px;
    }

    .developer-header h4 {
      margin-top: 50px;
      line-height: 1.3;
    }

    .developer-vision {
      width: 48.5%;
    }

    .vision-list dt {
        width: 60px;
    }

    .vision-list dt, .core-title {
      font-size: 2rem;
      font-weight: 700;
    }

    .vision-list > div {
      gap: 30px;
    }

    .vision-list > div + div {
      margin-top: 50px;
    }

    .vision-list dd {
      font-size: 1.5rem;
      font-weight: 300;
    }

    .core-values {
      margin-top: 50px;
    }

    .core-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
      margin-top: 20px;
    }

    .core-list li {
      position: relative;
      padding: 25px;
      border-radius: 10px;
      background: #e7f9ff;
    }

    .core-list li:nth-child(2), .core-list li:nth-child(3) {
      background: #f0f3f8 !important;
    }

    .core-list strong {
      font-size: 1.5rem;
    }

    .core-list p {
      margin-top: 15px;
      line-height: 1.6;
      font-size: 1.25rem;
      font-weight: 300;
      color: #424755;
    }

    .core-list li::after {
      content: '';
      position: absolute;
      top: 30px;
      right: 30px;
    }

    .core-list li:first-child::after {
      width: 28px;
      height: 32px;
      background: url("../../images/user/sub/overview/ico-developer-safety.png") no-repeat;
    }

    .core-list li:nth-child(2)::after {
      width: 32px;
      height: 32px;
      background: url("../../images/user/sub/overview/ico-developer-trust.png") no-repeat;
    }

    .core-list li:nth-child(3)::after {
      width: 26px;
      height: 32px;
      background: url("../../images/user/sub/overview/ico-developer-innovation.png") no-repeat;
    }

    .core-list li:last-child::after {
      width: 32px;
      height: 32px;
      background: url("../../images/user/sub/overview/ico-developer-mobility.png") no-repeat;
    }

    .developer-desc {
      display: flex;
      gap: 185px;
      margin-top: 70px;
      padding-top: 70px;
      border-top: 1px solid #e5eaf2;
    }

    .developer-desc h5 {
      flex: 1;
    }

    .developer-desc-list li {
      display: flex;
      gap: 20px;
      align-items: baseline;
      font-size: 0.875rem;
    }

    .developer-desc-list li::before {
      flex-shrink: 0;
      content: '';
      width: 10px;
      height: 10px;
      background: url("../../images/user/sub/overview/ico-bullet.png") no-repeat;
    }

    .developer-desc-list li + li {
      margin-top: 25px;
    }

    .developer-project {
      margin-top: 70px;
      padding-top: 70px;
      border-top: 1px solid #e5eaf2;
    }

    .developer-project-list li {
      flex: 1;
    }

    .developer-project-name {
      margin-bottom: 20px;
      font-size: 1.5rem;
      font-weight: 700;
      color: #0065d6;
    }

    .developer-project-desc {
      margin-top: 15px;
      font-size: 1.25rem;
      font-weight: 300;
      color: #424755;
      word-break: auto-phrase;
    }

    .developer-section.sh .core-list li {
      padding: 25px 25px 35px;
      background: #defcf8;
    }

    .developer-section.sh .core-list li:first-child::after {
      width: 32px;
      height: 32px;
      background: url("../../images/user/sub/overview/ico-developer-happiness.png") no-repeat;
    }

    .developer-section.sh .core-list li:nth-child(2)::after {
      width: 32px;
      height: 32px;
      background: url("../../images/user/sub/overview/ico-developer-growth.png") no-repeat;
    }

    .developer-section.sh .core-list li:nth-child(3)::after {
      width: 32px;
      height: 32px;
      background: url("../../images/user/sub/overview/ico-developer-cooperation.png") no-repeat;
    }

    .developer-section.sh .core-list li:last-child::after {
      width: 32px;
      height: 32px;
      background: url("../../images/user/sub/overview/ico-developer-responsibility.png") no-repeat;
    }

    .developer-section.sh .developer-project-name {
      color: #25897b;
    }




    /*  ========== 정주환경 ==========  */
    .content-intro{
        display: flex;
        align-items: flex-start;
        flex-direction: column;
    }
    .content-intro .project-heading{
        margin-right: 0;
    }
    .content-intro .content-desc {
        margin-left: auto;
        margin-top: 60px;
        font-size: 2rem;
        font-weight: 500;
        word-break: keep-all;
    }
    #sub-sticky-list{
        position: static;
        width:210px;
        max-width:100%;
        height: auto;
        transition: all 0.6s;
    }
    #sub-sticky-list.is-fixed {
        position: fixed;
        top: 150px;
        z-index: 1;
    }
    #sub-sticky-list ul li{
        padding: 0 0 30px;
    }
    #sub-sticky-list ul li a{
        display: inline-block;
        position: relative;
        font-weight: 700;
        font-size: 1.25rem;
        color: #878b9d;
    }
    #sub-sticky-list ul li.on a{
        color: #0065d6;
    }
    #sub-sticky-list ul li.on a::after{
        content: "";
        position: absolute;
        left:0;
        bottom:0;
        width:100%;
        height:1px;
        background-color: #0065d6;
    }
    #sub-sticky-list ul li.double.on a::after{
        display: none;
    }
    #sub-sticky-list ul li.double.on a span{
        position: relative;
    }
    #sub-sticky-list ul li.double.on a span::after{
        content: "";
        position: absolute;
        left:0;
        bottom:0;
        width:100%;
        height:1px;
        background-color: #0065d6;
    }
    .content-section-wrap{
        position: relative;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        margin: 100px 0 0;
        padding:100px 0 0;
        height: auto;
        border-top:1px solid #878b9d;
    }
    .content-section-wrap .content-sections{
        margin-left: auto;
        width:calc( 100% - 230px);
    }
    .content-section-wrap .content-sections .content-section +.content-section{
        margin-top:100px;
        padding-top: 100px;
        border-top: 1px solid #424755;
    }
    .content-section-wrap .content-sections .content-tit-box{
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        padding: 0 0 60px;
    }
    .content-section-wrap .content-sections .content-tit-box .section-heading{
        width:50%;
    }
    .content-section-wrap .content-sections .summary-title{
        font-size: 1.125rem;
    }
    .content-section-wrap .content-sections .summary-text{
        line-height: 1.5;
        font-size: 1.125rem;
        color: #424755;
        word-break: keep-all;
    }
    .content-section-wrap .content-sections .summary-text strong{
        font-weight: 700;
    }
    .content-section-wrap .content-sections .content-txt-box{
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
    }
    .content-section-wrap .content-sections .left{
        width:50%
    }
    .content-section-wrap .content-sections .right{
        width:50%
    }
    .content-section-wrap .content-sections .herb .summary-title{
        margin:10px 0 0;
        width:50%;
    }
    .content-section-wrap .content-sections .herb .content-txt-box > div{
        width: calc((100% - 8px) / 2);
    }
    .content-section-wrap .content-sections .herb .content-txt-box .figure-txt{
        padding: 30px 0 0;
        width: 94%;
        line-height: 1.5;
        font-size: 1.125rem;
        color: #424755;
        word-break: keep-all;
    }
    .content-section-wrap .content-sections .herb .content-txt-box .figure-txt strong{
        font-weight: 700;
    }
    .content-section-wrap .content-sections .infra .summary-title{
        margin:30px 0 40px;
    }
    .content-section-wrap .content-sections .infra .right ul{
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .content-section-wrap .content-sections .infra .right ul li{
        padding-bottom: 20px;
        width: calc((100% - 8px) / 2);
    }
    .content-section-wrap .content-sections .infra .right ul li:nth-child(2){
        margin: 60px 0 0;
    }
    .content-section-wrap .content-sections .infra .right ul li:nth-child(4){
        margin: 60px 0 0;
    }
    .content-section-wrap .content-sections ul li dl{
        padding: 30px 0 0;
    }
    .content-section-wrap .content-sections ul li dl dt{
        padding: 0 0 10px;
        line-height: 1.5;
        font-weight: 700;
        font-size: 1.25rem;
        color: #101218;
    }
    .content-section-wrap .content-sections ul li dl dd{
        line-height: 1.5;
        font-size: 1.125rem;
        color: #424755;
        word-break: keep-all;
    }
    .content-section-wrap .content-sections .mobility .summary-title{
        margin: 10px 0 40px;
    }
    .content-section-wrap .content-sections .mobility .content-txt-box{
        padding: 0 0 50px;
    }
    .content-section-wrap .content-sections .safe .summary-title{
        margin: 10px 0 40px;
    }
    .content-section-wrap .content-sections .safe .content-txt-box{
        padding: 0 0 50px;
    }
    .content-section-wrap .content-sections .safe ul{
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
    }
    .content-section-wrap .content-sections .safe ul li{
        width: calc((100% - 16px) / 3);
    }
    .content-section-wrap .content-sections .content-section .leading-text-box{
        position: relative;
        margin: 80px 0 0;
        text-align: center;
        color: rgba(186,192,201,0.4)
    }
    .content-section-wrap .content-sections .content-section .leading-text-box p{
        display: inline-block;
        position: relative;
        text-align: center;
        font-weight: 700;
        font-size: 2rem;
        background: linear-gradient(to right, #222, #222) no-repeat;
        -webkit-background-clip: text;
        background-clip: text;
        background-size: 0;
        transition: background-size cubic-bezier(.1,.5,.5,1) 0.5s;
        word-break: keep-all;
    }
    .content-section-wrap .content-sections .content-section .leading-text-box p::before{
        content: "";
        position: absolute;
        left: -64px;
        top: 50%;
        transform: translateY(-50%);
        width: 30px;
        height: 22px;
        background:url("../../images/user/sub/environment/ico-quotes-mark-before.png") no-repeat center/cover;
    }
    .content-section-wrap .content-sections .content-section .leading-text-box p::after{
        content: "";
        position: absolute;
        right: -64px;
        top: 50%;
        transform: translateY(-50%);
        width: 30px;
        height: 22px;
        background:url("../../images/user/sub/environment/ico-quotes-mark-after.png") no-repeat center/cover;
    }
    .content-section-wrap .content-sections .section-heading em{
        display: block;
        font-style: normal;
        font-size: 2.25rem;
        color: #878b9d;
    }
    .content-wrap.environment .content-section-wrap .content-sections .section-heading{
        line-height: 1.3;
    }
    .content-wrap.environment .content-section-wrap .content-sections .summary-title{
        margin: 50px 0;
        line-height: 1.5;
        font-size: 1.5rem;
    }
    .content-wrap.environment .content-section-wrap .content-sections .content-tit-box .summary-title{
        margin: 0;
    }
    .content-wrap.environment .content-section-wrap .content-sections .right .summary-title{
        margin: 0 0 50px;
    }
    .content-section-wrap .content-sections .sky .content-txt-box{
        flex-direction: row-reverse;
    }
    .content-section-wrap .content-sections .sky .content-txt-box .left{
        width: calc(50% - 60px);
    }
    .content-section-wrap .content-sections .nature .content-txt-box {
        padding: 0 0 50px;
    }
    .content-section-wrap .content-sections .nature .content-txt-box .summary-title{
        margin: 10px 0 0;
    }
    .content-section-wrap .content-sections .nature ul{
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
    }
    .content-section-wrap .content-sections .nature ul li{
        width: calc((100% - 16px) / 3);
    }
    .content-section-wrap .content-sections .plan .btn-go-master-plan{
        display: inline-block;
        margin: 60px 0 0;
        padding: 8px 14px;
        border: 1px solid #0065d6;
        border-radius: 6px;
        box-sizing: border-box;
    }
    .content-section-wrap .content-sections .plan .btn-go-master-plan span{
        position: relative;
        padding-right: 24px;
        font-weight: 500;
        font-size: 1.125rem;
        color: #0065d6;
    }
    .content-section-wrap .content-sections .plan .btn-go-master-plan span::after{
        content: "";
        position: absolute;
        right: 0;
        top: 50%;
        transform:translateY(-50%);
        width: 15px;
        height: 12px;
        background:url("../../images/user/sub/environment/ico-arw-left.png") no-repeat center/cover;
    }

    .content-section-wrap .content-sections .plan .box figure{
        position: relative;
    }
    .content-section-wrap .content-sections .plan .box figure strong{
        position: absolute;
        top: 10px;
        right: 10px;
        width: 84px;
        height: 84px;
        line-height: 84px;
        text-align: center;
        font-weight: 500;
        font-size: 1rem;
        color: #0065d6;
        border-radius: 50%;
        background-color: #fff;
        box-sizing: border-box;
    }
    .content-section-wrap .content-sections .plan .box figure strong span{
        display: inline-block;
        margin-left: 2px;
        font-weight: 700;
        font-size: 1.125rem;
    }
    .content-section-wrap .content-sections .plan .box .figure-caption{
        display:flex;
        align-items: center;
        justify-content: center;
        padding:20px 0 40px;
        color: #424755;
    }
    .content-section-wrap .content-sections .plan .box.btm .figure-caption{
        padding:20px 0 0 0;
    }
    .content-section-wrap .content-sections .plan .box .figure-caption span{
        position: relative;
        padding: 0 0 0 30px;
        font-size: 1.25rem;
    }
    .content-section-wrap .content-sections .plan .box .figure-caption span::before{
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        transform:translateY(-50%);
        width: 17px;
        height: 13px;
        background:url("../../images/user/sub/environment/ico-chck.png") no-repeat center/cover;
    }
    .content-section-wrap .content-sections .plan .box .figure-caption em{
        padding-left: 6px;
        font-style: normal;
        font-size: 1rem;
    }
    .content-section-wrap .content-sections .walk .content-txt-box{
        align-items: center;
    }
    .content-section-wrap .content-sections .walk .content-txt-box .right{
        width: calc(50% - 60px);
    }
    .content-section-wrap .content-sections .future .content-txt-box ul{
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .content-section-wrap .content-sections .future .content-txt-box ul li{
        width: calc((100% - 8px) / 2);
    }
    .content-section-wrap .content-sections .future .content-txt-box ul li:nth-child(2){
        margin: 60px 0 0;
    }
    .content-section-wrap .content-sections .future .content-txt-box ul li:nth-child(4){
        margin: 60px 0 0;
    }
    .content-section-wrap .content-sections .housing .content-txt-box{
        padding: 0 0 50px;
    }
    .content-section-wrap .content-sections .education .content-txt-box{
        align-items: center;
    }
    .content-section-wrap .content-sections .education .right{
        width: calc( 50% - 60px);
    }
    .content-section-wrap .content-sections .education .summary-title{
        margin-top: 0;
    }
    .content-section-wrap .content-sections .medical .content-txt-box{
        align-items: center;
    }
    .content-section-wrap .content-sections .medical .content-txt-box .summary-title{
        margin-top: 0;
    }
    .btm-environ-box{
        margin: 100px 0 0;
        position: relative;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100vw - 120px);
        height: auto;
        background: url("../../images/user/sub/environment/bg-btm-environ.png") no-repeat center/cover;
        border-radius: 10px;
    }
    .content-section-wrap .content-sections .culture .content-txt-box{
        align-items: center;
    }
    .content-section-wrap .content-sections .culture .right {
        width: calc(50% - 60px);
    }
    .btm-environ-box .btm-environ-box-inner{
        margin: 0 auto;
        padding: 100px 20px;
        max-width: 1340px;
        width: 100%;
    }
    .btm-environ-box .btm-environ-box-inner .section-heading{
        padding: 0 0 56px;
        color: #fff;
    }
    .btm-environ-box .btm-environ-box-inner ul{
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }
    .btm-environ-box .btm-environ-box-inner ul li{
        position: relative;
        width: calc( (100% - 20px) / 3);
        background-color: rgba(255,255,255,0.3);
        border-radius: 10px;
        box-sizing: border-box;
        transition: 0.35s cubic-bezier(.4,0,.6,1);
        z-index: 1;
    }
    .btm-environ-box .btm-environ-box-inner ul li .bg{
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        border-radius: 10px;
        z-index: -1;
    }
    .btm-environ-box .btm-environ-box-inner ul li .bg::after{
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 10px;
        backdrop-filter: blur(10px);
    }
    .btm-environ-box .btm-environ-box-inner ul li a{
        display: block;
        width: 100%;
        padding: 32px 0;
        text-align: center;
        font-weight: 700;
        font-size: 1.5rem;
        color: #fff;
        border-radius: 10px;
        box-sizing: border-box;
        transition: all 0.4s;
    }
    .btm-environ-box .btm-environ-box-inner ul li:hover a{
        position: relative;
        background-color:#000;
        transition: all 0.4s;
        z-index: 1;
    }

    /*  ========== 입지 ========== */
    /* - 헤리티지 */
    .content-wrap.location .content-intro .content-desc strong{
        color: #0065d6;
    }
    .content-wrap.location .content-section-wrap .content-sections .content-tit-box .section-heading{
        width: 100%;
        font-size: 2rem;
    }
    .content-wrap.location .content-section-wrap .content-sections .content-tit-box .section-heading em{
        display: inline-block;
        padding: 0 10px;
        vertical-align: bottom;
        font-style: normal;
        color: #0065d6;
    }
    .content-wrap.location .content-section-wrap .content-sections .summary-title{
        font-size: 1.5rem;
    }
    .content-wrap.location .content-section-wrap .content-sections .summary-text{
        font-size: 1.25rem;
    }
    .content-wrap.location .content-section-wrap .content-sections .left .leading-text-box{
        margin: 134px 0 0;
        text-align: left;
    }
    .content-wrap.location .content-section-wrap .content-sections .left .leading-text-box p{
        text-align: left;
    }
    .content-wrap.location .content-section-wrap .content-sections .left .leading-text-box p::before{
        left: 0;
        top: -35px;
        transform: initial;
    }
    .content-wrap.location .content-section-wrap .content-sections .left .leading-text-box p::after{
        top: initial;
        left: 0;
        bottom: -35px;
        transform: initial;
    }
    .content-wrap.location .content-section-wrap .content-sections .modern figure{
        padding: 50px 0 0;
    }


    /* - 최적의 교통허브 */
    .content-wrap.transport .content-intro{
        padding: 0 0 60px;
    }
    .content-wrap.transport .content-intro .content-desc em{
        display: inline-block;
        padding: 2px 6px;
        font-style: normal;
        font-size: 1.125rem;
        color: #424755;
        border:1px solid #424755;
        border-radius:20px;
        box-sizing: border-box;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.access .left{
        width: calc( 100% - 670px);
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.access .right{
        width: 670px;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.access .right .pos-txt strong{
        display: inline-flex;
        align-items: center;
        justify-content: center;
        position: relative;
        padding: 0 10px;
        width: 100%;
        max-width: 300px;
        height: 95px;
        line-height: 95px;
        text-align: center;
        font-weight: 700;
        font-size: 1.5rem;
        color: #fff;
        background-color: #000;
        border-radius: 50px;
        box-sizing: border-box;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.access .right .pos-txt strong.first{
        margin-right: 50px;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.access .right .pos-txt strong.first::after{
        content: "";
        position: absolute;
        right: -47px;
        top: 50%;
        transform: translateY(-50%);
        width: 38px;
        height: 56px;
        background:url("../../images/user/sub/location/ico-arw.png") no-repeat center/cover;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.access .right .pos-txt strong img{
        width: auto;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.access .right .method-txt{
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        padding: 50px 0 0;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.access .right .method-txt p{
        width: 50%;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.access .right .method-txt p em{
        display: block;
        position: relative;
        font-style: normal;
        font-weight: 700;
        font-size: 1.5rem;
        color: #101218;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.access .right .method-txt p em::before{
        content: "";
        position: absolute;
        left: 0;
        top: 0;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.access .right .method-txt p em.car{
        padding-left: 70px;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.access .right .method-txt p em.car::before{
        width: 40px;
        height: 34px;
        background: url("../../images/user/sub/location/ico-car.png") no-repeat center/cover;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.access .right .method-txt p em.public{
        padding-left:110px;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.access .right .method-txt p em.public::before{
        width: 84px;
        height: 39px;
        background: url("../../images/user/sub/location/ico-public.png") no-repeat center/cover;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.access .right .method-txt p span{
        display: block;
        padding: 15px 0 0;
        font-weight: 700;
        font-size: 2rem;
        color: #0065d6;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.access .right .btm{
        padding: 100px 0 0;
    }
    .content-wrap.transport .content-txt-box .list li + li{
        border-top: 1px solid #575d6e;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.whole .summary-title{
        padding: 100px 0 40px;
        font-weight: 700;
        font-size: 2rem;
        color: #101218;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.whole .summary-title strong{
        font-weight: 700;
        color: #0065d6;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.whole .list{
        max-width: 460px;
        width: 100%;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.whole .list li{
        padding: 30px 0;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.whole .list li p{
        display: flex;
        align-items: center;
        justify-content: flex-start;
        position: relative;
        width: 100%;
        padding-left: 30px;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.whole .list li p::before{
        content: "";
        position: absolute;
        left: 0;
        top: 7px;
        width: 18px;
        height: 20px;
        background: url("../../images/user/sub/location/ico-pos.png") no-repeat center/cover;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.whole .list li p strong{
        display: inline-block;
        width: 180px;
        font-weight: 700;
        font-size: 1.25rem;
        color: #101218;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.whole img{
        margin-left: auto;
        margin-right: 50px;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.whole .list li p span{
        font-weight: 400;
        font-size: 1.25rem;
        color: #101218;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .content-txt-box{
        flex-direction: column;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box{
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        padding: 60px 0 0;
        width: 100%;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.top .right{
        padding-left: 50px;
        box-sizing: border-box;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.btm .left{
        padding-right: 50px;
        width: 460px;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box ul li + li{
        margin: 28px 0 0;
        padding: 28px 0 0;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.top dl{
        padding: 0;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.top dl dt{
        position: relative;
        padding-left: 40px;
        font-size: 1.5rem;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.top dl dt::before{
        content: "";
        position: absolute;
        left: 0;
        top: 4px;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.top li:nth-child(1) dl dt::before{
        width: 27px;
        height: 30px;
        background: url("../../images/user/sub/location/ico-railroad.png") no-repeat center/cover;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.top li:nth-child(2) dl dt::before{
        width: 31px;
        height: 28px;
        background: url("../../images/user/sub/location/ico-bus.png") no-repeat center/cover;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.top li:nth-child(3) dl dt::before{
        width: 27px;
        height: 27px;
        background: url("../../images/user/sub/location/ico-road.png") no-repeat center/cover;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.top dl dd{
        font-weight: 400;
        font-size: 1.25rem;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.top dl dd strong{
        font-weight: 400;
        color: #0065d6;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.btm .right{
        width: calc( 100% - 510px);
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.btm .list{
        padding: 80px 0 0;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.btm .list li{
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.btm .list li strong{
        width: 40%;
        font-weight: 700;
        font-size: 1.25rem;
        color: #101218;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.btm .list li strong em{
        font-style: normal;
        font-weight: 700;
        font-size: 1.5rem;
    }
    .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.btm .list li span{
        width: 60%;
        font-weight: 400;
        font-size: 1.25rem;
    }
    .content-wrap.green .content-section-wrap{
        margin: 0;
        border-top: none;
    }
    /* - 풍부한 자연환경 */
    .content-wrap.green .content-section-wrap .content-section.network .content-txt-box{
        align-items: stretch;
    }
    .content-wrap.green .content-section-wrap .content-section.network .content-txt-box .left{
        display: flex;
        flex-direction: column;
    }
    .content-wrap.green .content-section-wrap .content-section.network .summary-title{
        font-weight: 700;
        font-size: 2.5rem;
        color: #101218;
    }
    .content-wrap.green .content-section-wrap .content-section.network .summary-text{
        font-weight: 400;
        font-size: 2rem;
        color: #101218;
    }
    .content-wrap.green .content-section-wrap .content-section.network figure{
        margin-top: auto;
    }
    .content-wrap.green .content-section-wrap .content-section.downtown .content-tit-box{
        flex-direction: column;
    }
    .content-wrap.green .content-section-wrap .content-section.downtown .content-tit-box .summary-title{
        width: 100%;
        text-align: center;
        font-weight: 400;
        font-size: 2rem;
        color: #101218;
    }
    .content-wrap.green .content-section-wrap .content-section.downtown .content-tit-box .section-heading{
        padding: 0;
        width: 100%;
        text-align: center;
        font-weight: 700;
        font-size: 2.5rem;
        color: #101218;
    }
    .content-wrap.green .content-section-wrap .content-section.downtown .content-txt-box{
        align-items: center;
        justify-content: center;
    }

    /* - 글로벌 비즈니스 지구 */
    .content-wrap.business .content-section-wrap{
        margin: 0;
        border-top: none;
    }
    .content-wrap.business .content-section-wrap .content-sections{
        width: 100%;
    }
    .content-wrap.business .content-section-wrap .content-section.headquarter .content-txt-box .left{
        width: calc(100% - 810px);
    }
    .content-wrap.business .content-section-wrap .content-section.headquarter .content-txt-box .right{
        width: 810px;
    }
    .content-wrap.business .content-section-wrap .content-section.headquarter .content-txt-box ul{
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .content-wrap.business .content-section-wrap .content-section.headquarter .content-txt-box ul li{
        width: calc( (100% - 60px) / 2);
    }
    .content-wrap.business .content-section-wrap .content-section.headquarter .content-txt-box ul li:nth-child(2){
        margin-top: 150px;
    }
    .content-wrap.business .content-section-wrap .content-section.headquarter .content-txt-box ul li:nth-child(3){
        margin-top: -150px;
    }
    .content-wrap.business .content-section-wrap .content-section.headquarter .content-txt-box ul li:nth-child(5){
        margin-top: -115px;
    }
    .content-wrap.business .content-section-wrap .content-section.headquarter .content-txt-box ul li .figure-info{
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        margin: 20px 0 90px;
    }
    .content-wrap.business .content-section-wrap .content-section.headquarter .content-txt-box ul li:last-child .figure-info{
        margin-bottom: 0;
    }
    .content-wrap.business .content-section-wrap .content-section.headquarter .content-txt-box ul li .figure-info em{
        display: inline-block;
        width: 50px;
        font-style: normal;
        font-weight: 700;
        font-size: 1.5rem;
        color: #0065d6;
    }
    .content-wrap.business .content-section-wrap .content-section.headquarter .content-txt-box ul li .figure-info p{
        font-weight: 500;
        font-size: 1.5rem;
        color: #101218;
        word-break: keep-all;
    }
    .content-wrap.business .content-section-wrap .content-section.hub .content-txt-box{
        align-items: center;
        justify-content: center;
    }
    .content-wrap.business .content-section-wrap .content-section.hub .content-txt-box .section-heading{
        padding: 80px 0 30px;
        text-align: right;
        color: #101218;
    }
    .content-wrap.business .content-section-wrap .content-section.hub .content-txt-box .section-heading strong{
        font-weight: 700;
        color: #0065d6;
    }
    .content-wrap.business .content-section-wrap .content-section.hub .content-txt-box figure p{
        padding: 12px 0 0;
        text-align: center;
        font-weight: 400;
        font-size: 1rem;
        color: #424755;
    }
    .content-wrap.business .content-section-wrap .content-section.potential .left{
        width: calc(100% - 690px);
    }
    .content-wrap.business .content-section-wrap .content-section.potential .right{
        width: 690px;
    }
    .content-wrap.business .content-section-wrap .content-section.potential ul li + li{
        padding-top: 80px;
    }
    .content-wrap.business .content-section-wrap .content-section.potential ul li dl{
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 0;
    }
    .content-wrap.business .content-section-wrap .content-section.potential ul li dl dt{
        padding: 0;
        width: 270px;
        font-weight: 700;
        font-size: 2rem;
        color: #101218;
    }
    .content-wrap.business .content-section-wrap .content-section.potential ul li dl dd{
        width: calc(100% - 270px);
    }
    .content-wrap.business .content-section-wrap .content-section.potential ul li dl dd div{
        padding: 0 0 50px;
        font-size: 1.5rem;
        color: #101218;
    }
    .content-wrap.business .content-section-wrap .content-section.potential ul li dl dd p{
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding-bottom: 20px;
    }
    .content-wrap.business .content-section-wrap .content-section.potential ul li dl dd p strong{
        display: inline-block;
        padding-right: 30px;
        font-weight: 700;
        font-size: 1.25rem;
        color: #0065d6;
    }
    .content-wrap.business .content-section-wrap .content-section.potential ul li dl dd p span{
        font-weight: 400;
        font-size: 1.25rem;
        color: #424755;
    }
    .content-wrap.business .content-section-wrap .content-section.potential ul li figure img{
        margin-left: auto;
    }
    .content-wrap.business .content-section-wrap .content-section.info .content-txt-box{
        align-items: stretch;
    }
    .content-wrap.business .content-section-wrap .content-section.info .content-txt-box > div{
        width: calc( (100% - 80px) / 2);
    }
    .content-wrap.business .content-section-wrap .content-section.info .top{
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 0 0 60px;
    }
    .content-wrap.business .content-section-wrap .content-section.info .summary-desc{
        margin: 5px 0 0 60px;
        font-weight: 400;
        font-size: 1.5rem;
        color: #101218;
        word-break: keep-all;
    }
    .content-wrap.business .content-section-wrap .content-section.info .btm{
        padding: 40px;
        background-color: #424755;
        border-radius: 10px;
        box-sizing: border-box;
    }
    .content-wrap.business .content-section-wrap .content-section.info .left .btm{
        background-color: #0065d6;
    }
    .content-wrap.business .content-section-wrap .content-section.info .btm dl{
        padding: 0;
    }
    .content-wrap.business .content-section-wrap .content-section.info .btm dl.last{
        padding: 50px 0 0;
    }
    .content-wrap.business .content-section-wrap .content-section.info .btm dl dt{
        display: inline-block;
        padding: 5px 20px;
        font-weight: 500;
        font-size: 1.5rem;
        color: #101218;
        background-color: #fff;
        border-radius: 20px;
        box-sizing: border-box;
    }
    .content-wrap.business .content-section-wrap .content-section.info .btm dl dd{
        padding: 22px 0 0;
        font-weight: 500;
        font-size: 1.25rem;
        color: #fff;
        word-break: keep-all;
    }

    /* - 해외 사례 비교 */
    .content-wrap.cases .content-intro{
        position: relative;
        z-index: 1;
    }
    .content-wrap.cases .content-intro .summary{
        margin-left: auto;
        padding: 40px 0 0;
    }
    .content-wrap.cases .content-intro .summary .summary-title{
        margin-bottom: 30px;
        font-weight: 700;
        font-size:2rem;
        color: #101218;
    }
    .content-wrap.cases .content-intro .summary .summary-title strong{
        font-weight: 700;
        color: #0065d6;
    }
    .content-wrap.cases .content-intro .summary .summary-text{
        line-height: 1.6;
        font-size: 1.5rem;
    }
    .content-wrap.cases .content-intro .bg{
        position: absolute;
        top: 5%;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        z-index: -1;
    }
    .content-wrap.cases .content-intro ul{
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        padding: 250px 0 0;
    }
    .content-wrap.cases .content-intro ul li{
        margin:0 3px 10px
    }
    .content-wrap.cases .content-intro ul li p{
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding-left: 10px;
    }
    .content-wrap.cases .content-intro ul li p em{
        display: inline-block;
        margin-right: 10px;
        width: 30px;
        height: 30px;
        line-height: 32px;
        text-align: center;
        font-style: normal;
        font-weight: 700;
        font-size: 1.25rem;
        color: #fff;
        background-color: #424755;
        border-radius: 50%;
    }
    .content-wrap.cases .content-intro ul li p span{
        font-weight: 700;
        font-size: 1.25rem;
        color: #101218;
    }
    .content-wrap.cases .content-intro .center-box{
        position: relative;
        margin: 140px auto 0;
    }
    .content-wrap.cases .content-intro .center-box .section-heading{
        position: absolute;
        top: -90px;
        left: -45px;
    }
    .content-wrap.cases .content-intro .center-box .section-heading span{
        position: relative;
        text-transform: uppercase;
    }
    .content-wrap.cases .content-intro .center-box .section-heading span::after{
        content: "";
        position:absolute;
        left: 0;
        bottom: -2px;
        width: 100%;
        height: 4px;
        background-color:#101218;
    }
    .content-wrap.cases .content-section-wrap .content-sections{
        width: 100%;
    }
    .content-wrap.cases .content-section-wrap .content-section.world .content-tit-box{
        padding: 0 0 70px;
    }
    .content-wrap.cases .content-section-wrap .content-section.world .section-heading{
        font-size: 2.5rem;
        color: #101218;
    }
    .content-wrap.cases .content-section-wrap .content-section.world .section-heading strong{
        font-weight: 700;
        color: #0065d6;
    }
    .content-wrap.cases .content-section-wrap .content-section.world .summary-desc{
        font-weight: 500;
        font-size: 1.5rem;
        color: #101218;
    }
    .content-wrap.cases .content-section-wrap .content-section.world .summary-desc strong{
        font-weight: 700;
        color: #0065d6;
    }
    .content-wrap.cases .content-section-wrap .content-section.world ul{
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .content-wrap.cases .content-section-wrap .content-section.world ul li{
        position: relative;
    }
    .content-wrap.cases .content-section-wrap .content-section.world ul li:nth-child(2){
        margin: 0 100px;
    }
    .content-wrap.cases .content-section-wrap .content-section.world ul li:nth-child(2)::before{
        content: "";
        position: absolute;
        left: -80px;
        top: 50%;
        transform: translateY(-50%);
        width: 55px;
        height: 102px;
        background: url("../../images/user/sub/location/cases-prev.png") no-repeat center/cover;
    }
    .content-wrap.cases .content-section-wrap .content-section.world ul li:nth-child(2)::after{
        content: "";
        position: absolute;
        right: -80px;
        top: 50%;
        transform: translateY(-50%);
        width: 55px;
        height: 102px;
        background: url("../../images/user/sub/location/cases-next.png") no-repeat center/cover;
    }
    .content-wrap.cases .content-section-wrap .content-section.world ul li .txt{
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%,-50%);
        width: 100%;
        text-align: center;
        color: #fff;
    }
    .content-wrap.cases .content-section-wrap .content-section.world ul li .txt em{
        font-style: normal;
        font-weight: 700;
    }
    .content-wrap.cases .content-section-wrap .content-section.world ul li .txt p{
        line-height: 1.3;
        font-weight: 600;
        font-size: 1.5rem;
    }
    .content-wrap.cases .content-section-wrap .content-section.world ul li .txt strong{
        display: block;
        padding: 15px 0;
        font-weight: 700;
        font-size: 1.875rem;
    }
    .content-wrap.cases .content-section-wrap .content-section.world ul li .txt strong em{
        font-size: 2.5rem;
    }
    .content-wrap.cases .content-section-wrap .content-section.world ul li .txt span{
        line-height: 1.1;
        font-weight: 700;
        font-size: 1.5rem;
    }
    .content-wrap.cases .content-section-wrap .content-section.world ul li .txt span em{
        font-size: 2.5rem;
    }
    .content-wrap.cases .content-section-wrap .content-section.world ul li:nth-child(2) .txt p{
        font-weight: 700;
        font-size: 2.5rem;
    }
    .content-wrap.cases .content-section-wrap .content-section.world ul li:nth-child(2) .txt strong{
        padding-bottom: 0;
        font-size: 3.125rem;
    }
    .content-wrap.cases .content-section-wrap .content-section.world ul li:nth-child(2) .txt strong em{
        font-size: 4.375rem;
    }


    .content-wrap.cases .content-section-wrap .content-section.three .content-txt-box{
        align-items: flex-end;
    }
    .content-wrap.cases .content-section-wrap .content-section.three .content-txt-box .left{
        width: 100%;
        max-width: 70%;
        margin: 20px auto;
    }
    .content-wrap.cases .content-section-wrap .content-section.three .content-txt-box .right{
        width: 100%;
    }
    .content-wrap.cases .content-section-wrap .content-section.three .section-heading{}
    .content-wrap.cases .content-section-wrap .content-section.three .summary-desc{
        padding: 30px 0 110px;
        font-weight: 500;
        font-size: 1.5rem;
        color: #101218;
    }
    .content-wrap.cases .content-section-wrap .content-section.three .section-heading strong{
        font-weight: 700;
        color: #0065d6;
    }
    .content-wrap.cases .content-section-wrap .content-section.three figure .caption{
        padding: 0 0 10px;
        font-size: 1rem;
        color: #424755;
    }
    .content-wrap.cases .content-section-wrap .content-section.three .right figure img{
        margin-left: auto;
    }

    /*  ========== 개발계획 ========== */
    /* -컨셉 */
    .content-wrap.concept .content-intro .project-heading{
        font-weight: 700;
        font-size: 3.75rem;
    }
    .content-wrap.concept .content-intro figure{
        position: relative;
        padding-top: 90px;
    }
    .content-wrap.concept .content-intro figure .figure-tit{
        position: absolute;
        right: 110px;
        top: 0;
    }
    .content-wrap.concept .content-intro figure p{
        position: relative;
        font-weight: 600;
        font-size: 2.5rem;
        color: #101218;
    }
    .content-wrap.concept .content-intro figure p span{
        position: relative;
    }
    .content-wrap.concept .content-intro figure p span::before{
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 1px;
        background-color: #101218;
    }
    .content-wrap.concept .content-section-wrap{
        margin:0;
        border-top: none;
    }
    .content-wrap.concept .content-section-wrap .content-sections{
        margin:0;
        width: 100%;
    }
    .content-wrap.concept .content-section-wrap .content-sections .content-tit-box .section-heading{
        width:100%;
    }
    .content-wrap.concept .content-section-wrap .content-sections .content-section .content-txt-box .chk-list li{
        padding: 12px 0;
    }

    .content-wrap.plan .content-section-wrap .content-sections .content-section .content-txt-box .chk-list p{
        position: relative;
        padding-left: 40px;
        font-size: 1.25rem;
        font-weight: 500;
        color: #101218;
    }
    .content-wrap.plan .content-section-wrap .content-sections .content-section .content-txt-box .chk-list p::before{
        content: "";
        position: absolute;
        left: 0;
        top: 7px;
        width: 17px;
        height: 13px;
        background: url("../../images/user/sub/plan/ico-chck.png") no-repeat center/cover;
    }

    .content-wrap.concept .content-section-wrap .content-sections .content-section.first .left{
        width: 600px;
    }
    .content-wrap.concept .content-section-wrap .content-sections .content-section.first .right{
        width:calc( 100% - 600px);
    }
    .content-wrap.concept .content-section-wrap .content-sections .content-section.first .content-txt-box{
        align-items: center;
    }
    .content-wrap.concept .content-section-wrap .content-sections .content-section.first .content-txt-box .chk-list li + li{
        border-top: 1px solid #d7dbe7;
    }
    .content-wrap.concept .content-section-wrap .content-sections .content-section.list .left{
        width: calc( 100% - 900px);
    }
    .content-wrap.concept .content-section-wrap .content-sections .content-section.list .right{
        width: 900px;
    }
    .content-wrap.concept .content-section-wrap .content-sections .content-section.list .en{
        font-weight: 700;
        font-size: 1.5rem;
        color: #bac0c9;
    }
    .content-wrap.concept .content-section-wrap .content-sections .content-section.list .summary-text{
        padding-top: 60px;
        font-size: 1.25rem;
        color: #424755;
    }
    .content-wrap.concept .content-section-wrap .content-sections .content-section.list .flex-inner{
        display: flex;
        align-items: center;
        justify-content: space-between;
        width:100%;
        padding-right: 40px;
        box-sizing: border-box;
    }
    .content-wrap.concept .content-section-wrap .content-sections .content-section.list .chk-list{
        max-width: 450px;
    }
    .content-wrap.concept .content-section-wrap .content-sections .content-section.list .chk-list p{
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
    .content-wrap.concept .content-section-wrap .content-sections .content-section.list .chk-list p strong{
        width: 180px;
        font-weight: 500;
        font-size: 1.25rem;
        color: #101218;
    }
    .content-wrap.concept .content-section-wrap .content-sections .content-section.list .chk-list p span{
        font-weight: 400;
        font-size: 0.875rem;
        color: #101218;
    }
    .content-wrap.concept .content-section-wrap .content-sections .content-section.list.scd figure{
        padding-right: 50px;
    }
    .content-wrap.concept .content-section-wrap .content-sections .content-section.center .section-heading{
        text-align: center;
    }
    .content-wrap.concept .content-section-wrap .content-sections .content-section.center .content-txt-box{
        width: 100%;
    }
    .content-wrap.concept .content-section-wrap .content-sections .content-section.center ul{
        display: flex;
        align-items: stretch;
        justify-content: center;
        width:100%;
    }
    .content-wrap.concept .content-section-wrap .content-sections .content-section.center ul li{
        padding: 50px 30px;
        width: calc((100% - 20px) / 3);
        text-align: center;
        border-radius: 10px;
        box-sizing: border-box;
    }
    .content-wrap.concept .content-section-wrap .content-sections .content-section.center ul li:nth-child(1){
        background: url("../../images/user/sub/plan/concept-bg01.png") no-repeat center/cover;
    }
    .content-wrap.concept .content-section-wrap .content-sections .content-section.center ul li:nth-child(2){
        margin: 0 10px;
        background: url("../../images/user/sub/plan/concept-bg02.png") no-repeat center/cover;
    }
    .content-wrap.concept .content-section-wrap .content-sections .content-section.center ul li:nth-child(3){
        background: url("../../images/user/sub/plan/concept-bg03.png") no-repeat center/cover;
    }
    .content-wrap.concept .content-section-wrap .content-sections .content-section.center ul li dl{
        padding: 0;
    }
    .content-wrap.concept .content-section-wrap .content-sections .content-section.center ul li dl dt{
        position: relative;
        padding: 0 0 30px;
        font-weight: 700;
        font-size: 1.2rem;
        color: #fff;
    }
    .content-wrap.concept .content-section-wrap .content-sections .content-section.center ul li dl dt::after{
        content: "";
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 10px;
        width: 6px;
        height: 6px;
        border-radius: 50%;
    }
    .content-wrap.concept .content-section-wrap .content-sections .content-section.center ul li:nth-child(1) dl dt::after{
        background-color: #4293f5;
    }
    .content-wrap.concept .content-section-wrap .content-sections .content-section.center ul li:nth-child(2) dl dt::after{
        background-color: #00bda2;
    }
    .content-wrap.concept .content-section-wrap .content-sections .content-section.center ul li:nth-child(3) dl dt::after{
        background-color: #7e7bc7;
    }
    .content-wrap.concept .content-section-wrap .content-sections .content-section.center ul li dl dd{
        font-size: 1.25rem;
        color: #fff;
    }
    /* 마스터 */
    .content-wrap.master .content-intro figure{
        padding-top: 60px;
    }
    .content-wrap.master .master-plan .content-txt-box{
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        padding:100px 0 0;
    }
    .content-wrap.master .master-plan .content-txt-box .left{
        width: calc( 100% - 880px);
    }
    .content-wrap.master .master-plan .content-txt-box .right{
        max-width: 880px;
        width: 100%;
    }
    .content-wrap.master .master-plan .content-txt-box .summary-text{
        padding: 50px 0;
        font-size: 1.25rem;
    }
    .content-wrap.master .master-plan .content-txt-box .zone-list{
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-wrap: wrap;
        padding:12px 0;
    }
    .content-wrap.master .master-plan .content-txt-box .zone-list li{
        padding: 8px 0;
        width: 50%;
        font-weight: 400;
        font-size: 1.25rem;
        color: #101218;
    }
    .content-wrap.master .master-plan .content-txt-box .zone-list li span{
        position: relative;
        padding-left: 40px;
    }
    .content-wrap.master .master-plan .content-txt-box .zone-list li span::before{
        content: "";
        position: absolute;
        left: 18px;
        top: 50%;
        transform: translateY(-50%);
        width: 12px;
        height: 12px;
        border: 1px solid #bac0c9;
        border-radius: 50%;
        box-sizing: border-box;
    }
    .content-wrap.master .master-plan .content-txt-box .zone-list li:nth-child(1) span::before{
        background-color: #66a3d6;
    }
    .content-wrap.master .master-plan .content-txt-box .zone-list li:nth-child(2) span::before{
        background-color: #66d7c7;
    }
    .content-wrap.master .master-plan .content-txt-box .zone-list li:nth-child(3) span::before{
        background-color: #b7b5e6;
    }
    .content-wrap.master .master-plan .content-txt-box .zone-list li:nth-child(4) span::before{
        background-color: #86eff8;
    }
    .content-wrap.master .master-plan .content-txt-box .zone-list li:nth-child(5) span::before{
        background-color: #bcffca;
    }
    .content-wrap.master .master-plan .content-txt-box .zone-list li:nth-child(6) span::before{
        background-color: #f8ff88;
    }
    .content-wrap.master .master-plan .content-txt-box .zone-list li:nth-child(7) span::before{
        background-color: #828282;
    }
    .content-wrap.plan table{
        width: 100%;
        border-top: 1px solid #878b9d;
    }
    .content-wrap.plan table tr{
        border-bottom: 1px solid #d7dbe7;
    }
    .content-wrap.plan table th{
        padding: 10px 0;
        text-align: center;
        font-weight: 700;
        font-size: 1.125rem;
        color: #424755;
    }
    .content-wrap.plan table td{
        padding: 10px 0;
        text-align: center;
        font-size: 1.125rem;
        color: #424755;
    }
    .content-wrap.plan table td.bd{
        font-weight: 700;
    }
    .content-wrap.plan table td.bd.pd20{
        padding: 10px 20px;
    }
    .content-wrap.master .content-section-wrap{
        margin: 0;
        border-top: none;
    }
    .content-wrap.master .content-sections #plan2{
        margin: 0;
        border-top: none;
    }
    .content-wrap.master .master-plan.zone{
        margin: 100px 0 0;
        padding: 100px 0 0;
        border-top: 1px solid #878b9d;
    }
    .content-wrap.master .master-plan .section-heading{
        width: 100%;
    }
    .content-wrap.master .master-plan .zone-detail-list li{
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 50px 0;
        border-bottom: 1px solid #d7dbe7;
        box-sizing: border-box;
    }
    .content-wrap.master .master-plan .zone-detail-list li:last-child{
        border-bottom: none;
    }
    .content-wrap.master .master-plan .zone-detail-list li .initial{
        margin: 0 auto;
        text-align: center;
        width: 260px;
    }
    .content-wrap.master .master-plan .zone-detail-list li .initial .tit{
        display: inline-block;
        width: 160px;
        padding: 5px 0;
        text-align: center;
        font-weight: 700;
        font-size: 1.5rem;
        color: #fff;
        background-color: #0065d6;
        border-radius: 30px;
        box-sizing: border-box;
    }
    .content-wrap.master .master-plan .zone-detail-list li .initial img{
        margin: 24px auto 0;
    }
    .content-wrap.master .master-plan .zone-detail-list li .initial span{
        display: block;
        padding: 20px 0 0;
        color: #878b9d;
    }
    .content-wrap.master .master-plan .zone-detail-list li:nth-child(2) .initial .tit{
        background-color: #00bda2;
    }
    .content-wrap.master .master-plan .zone-detail-list li:nth-child(3) .initial .tit{
        background-color: #8784d6;
    }
    .content-wrap.master .master-plan .zone-detail-list li .info{
        margin-left: auto;
        width: calc( 100% - 280px);
    }
    .content-wrap.master .master-plan .zone-detail-list li .info dt{
        padding: 0 0 30px;
        font-weight: 700;
        font-size: 1.25rem;
        color: #101218;
    }
    .content-wrap.master .master-plan .zone-detail-list li .info dd{
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .content-wrap.master .master-plan .zone-detail-list li .info dd p{
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 0 0 8px;
        width: 100%;
        font-weight: 700;
        font-size: 1.25rem;
        color: #101218;
    }
    .content-wrap.master .master-plan .zone-detail-list li:nth-child(1) .info dd p{
        width: 50%;
    }
    .content-wrap.master .master-plan .zone-detail-list li .info dd p strong{
        width: 66px;
        font-weight: 700;
        font-size: 1.125rem;
        color: #424755;
    }
    .content-wrap.master .master-plan .zone-detail-list li .info dd p span{
        font-weight: 400;
        font-size: 1.125rem;
        color: #424755;
    }
    .content-wrap.master .master-plan .zone-detail-list li .info dd p span em{
        display: inline-block;
        margin: 0 10px 0 0;
        padding: 3px 0;
        width: 68px;
        text-align: center;
        vertical-align: middle;
        font-style: normal;
        font-size: 0.875rem;
        color: #424755;
        background-color: #ecf0f6;
        border-radius: 20px;
        box-sizing: border-box;
    }
    .content-wrap.master .master-plan.zone .content-txt-box{
        align-items: center;
    }
    .content-wrap.master .master-plan.zone .content-txt-box .left{
        width: 725px;
    }
    .content-wrap.master .master-plan.zone .content-txt-box .right{
        width: calc( 100% - 785px);
    }
    .content-wrap.master .master-plan.zone .content-txt-box .right figure{
        margin-left: auto;
    }
    .content-wrap.master .master-plan.zone .content-txt-box .right figure .figure-txt{
        display: block;
        text-align: center;
    }
    .content-wrap.master .master-plan.zone .content-txt-box .right figure .figure-txt p{
        margin: 20px 0 10px;
        padding: 10px 20px 9px;
        text-align: center;
        font-weight: 700;
        font-size: 1.125rem;
        color: #101218;
        word-break: keep-all;
        background-color: #ecf0f6;
        border-radius: 30px;
        box-sizing: border-box;
    }
    .content-wrap.master .master-plan.zone .content-txt-box .right figure .figure-txt span{
        color: #878b9d;
    }
    .content-wrap.master .master-plan.zone .zone-box{
        margin: 100px 0 0;
        padding: 100px 0 0;
        height: auto;
        border-top: 1px solid #878b9d;
    }
    .content-wrap.master .master-plan.zone .zone-box ul li + li{
        padding-top: 100px;
    }
    .content-wrap.master .master-plan.zone .zone-box ul li h4{
        padding: 0 0 40px;
        font-weight: 700;
        font-size:2rem;
        color: #101218;
    }
    .content-wrap.master .master-plan.zone .zone-box ul li .flex-inner{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .content-wrap.master .master-plan.zone .zone-box ul li .flex-inner .left{
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 725px;
    }
    .content-wrap.master .master-plan.zone .zone-box ul li .flex-inner .left img{
        margin-right:50px;
    }
    .content-wrap.master .master-plan.zone .zone-box ul li .flex-inner .left .major{
        margin-right:auto;
    }
    .content-wrap.master .master-plan.zone .zone-box ul li .flex-inner .left .major p{
        padding: 15px 0;
        width: 280px;
        text-align: center;
        font-weight: 700;
        font-size:1.25rem;
        color: #c8e6ff;
        background-color:#000;
        border-radius: 30px;
        box-sizing: border-box;
    }
    .content-wrap.master .master-plan.zone .zone-box ul li .flex-inner .left .major p + p{
        margin: 10px 0 0;
    }
    .content-wrap.master .master-plan.zone .zone-box ul li:nth-child(2) .flex-inner .left .major p{
        color: #a1fff2;
    }
    .content-wrap.master .master-plan.zone .zone-box ul li:nth-child(3) .flex-inner .left .major p{
        color: #cbc9ff;
    }
    .content-wrap.master .master-plan.zone .zone-box ul li .flex-inner .right{
        width: calc( 100% - 760px);
    }
    .content-wrap.master .master-plan.zone .zone-box ul li .chk-list li{
        padding: 12px 0;
    }
    .content-wrap.master .master-plan.zone .zone-box ul li .chk-list p{
        position: relative;
        padding-left: 40px;
        font-size: 1.25rem;
        font-weight: 400;
        color: #101218;
        word-break: keep-all;
    }
    .content-wrap.master .master-plan.zone .zone-box ul li .chk-list p::before{
        content: "";
        position: absolute;
        left: 0;
        top: 7px;
        width: 17px;
        height: 13px;
        background: url("../../images/user/sub/plan/ico-chck.png") no-repeat center/cover;
    }

    /* - 녹지계획 */
    .content-wrap.green .content-section-wrap .content-sections {
        margin: 0;
        width: 100%;
    }
    .content-wrap.green .content-section .section-heading{
        padding:0 0 60px;
    }
    .content-wrap.green .content-section-wrap .content-sections .content-tit-box{
        align-items: center;
    }
    .content-wrap.green .content-tit-box .summary-title{
        margin-bottom: 0;
        font-size: 1.5rem;
        word-break: keep-all;
    }
    .content-wrap.green .content-tit-box .summary-text{
        text-align: right;
        font-size: 1.25rem;
    }
    .content-wrap.green figure{
        text-align: center;
    }
    .content-wrap.green figure .figure-caption{
        padding: 30px 0 50px;
        font-size: 1.125rem;
        color:#424755;
        word-break: keep-all;
    }
    .content-wrap.green figure .figure-txt{
        line-height: 1.5;
        font-size: 1.25rem;
        color:#424755;
        word-break: keep-all;
    }
    .content-wrap.green figure .figure-txt strong{
        font-weight: 700;
    }
    .content-wrap.green .content-sections .strategy-list{
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        gap: 0;
    }
    .content-wrap.green .content-sections .strategy-list li{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        width: calc( (100% - 20px) / 3);
    }
    .content-wrap.green .content-sections .strategy-list li p{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 16px 10px;
        width: 100%;
        border-radius: 80px;
        box-sizing: border-box;
    }
    .content-wrap.green .content-sections .strategy-list li:nth-child(1) p{
        background-color: #0065d6;
    }
    .content-wrap.green .content-sections .strategy-list li:nth-child(2) p{
        background-color: #00bda2;
    }
    .content-wrap.green .content-sections .strategy-list li:nth-child(3) p{
        background-color: #8784d6;
    }
    .content-wrap.green .content-sections .strategy-list li p span{
        display: block;
        font-weight: 700;
        font-size: 1.75rem;
        color: rgba(255,255,2550.5);
    }
    .content-wrap.green .content-sections .strategy-list li p strong{
        font-weight: 400;
        font-size: 1.25rem;
        color: #fff;
    }
    .content-wrap.green .content-sections .strategy-list li .txt{
        padding: 50px 10px;
        width: 100%;
        text-align: center;
        font-weight: 400;
        font-size: 1.25rem;
        color: #424755;
        border-bottom-left-radius: 60px;
        border-bottom-right-radius: 60px;
        background: linear-gradient(0deg, #edf0f6, #fff);
    }
    .content-wrap.green .content-sections .strategy-list li .txt strong{
        font-weight: 700;
        color: #101218;
    }
    .content-wrap.green .content-section-wrap .content-sections .content-txt-box.city{
        flex-direction: column;
    }
    .content-wrap.green .content-section-wrap .content-sections .content-txt-box.city .summary-title{
        margin: 0 0 60px;
        width: 100%;
        font-size: 1.5rem;
    }
    .content-wrap.green .content-section-wrap .content-sections .content-txt-box.city .city-list{
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        flex-wrap:wrap;
    }
    .content-wrap.green .content-section-wrap .content-sections .content-txt-box.city .city-list li{
        display: flex;
        align-items: center;
        justify-content: flex-start;
        margin: 0 0 30px;
        width: 50%;
    }
    .content-wrap.green .content-section-wrap .content-sections .content-txt-box.city .city-list li figure{
        width: calc( 100% - 350px);
    }
    .content-wrap.green .content-section-wrap .content-sections .content-txt-box.city .city-list li dl{
        padding: 0 0 0 30px;
        width: 350px;
        box-sizing: border-box;
    }
    .content-wrap.green .content-section-wrap .content-sections .content-txt-box.city .city-list li dl dt{
        font-weight: 700;
        font-size: 1.25rem;
        color: #101218;
    }
    .content-wrap.green .content-section-wrap .content-sections .content-txt-box.city .city-list li dl dd{
        font-weight: 400;
        font-size: 1.125rem;
        color: #424755;
    }
    .content-wrap.green .content-section-wrap .content-sections .content-txt-box.city .city-list li dl dd p{
        padding: 0 0 8px;
        font-weight: 700;
        font-size: 1rem;
        color: #bac0c9;
    }
    .content-wrap.green .content-section-wrap .content-sections .content-txt-box.city.last{
        margin: 60px 0 0;
        padding: 60px 0 0;
        border-top:1px solid #bac0c9;
    }

    /* - 교통계획 */
    .content-wrap.traffic .content-section-wrap .content-sections{
        width: 100%;
    }
    .content-wrap.traffic .content-section-wrap .content-sections .content-desc{
        padding: 60px 0 0;
        font-size: 1.25rem;
    }
    .content-wrap.traffic .content-section-wrap .content-sections .traffic-box.last{
        padding: 80px 0 0;
    }
    .content-wrap.traffic .content-section-wrap .content-sections .traffic-box .section-heading{
        font-weight: 700;
        font-size: 2rem;
        color: #101218;
    }
    .content-wrap.traffic .content-section-wrap .content-sections .traffic-box .section-heading em{
        display:block;
        font-style: normal;
        font-weight: 700;
        font-size: 1.5rem;
        color: #878b9d;
    }
    .content-wrap.traffic .content-section-wrap .content-sections .traffic-box ul{
        padding: 50px 0 0;
    }
    .content-wrap.traffic .content-section-wrap .content-sections .traffic-box ul li{
        display: flex;
        align-items: center;
        justify-content: flex-start;
        margin: 0 0 20px;
        background-color: #eff2f7;
        border-radius: 10px;
        box-sizing: border-box;
    }
    .content-wrap.traffic .content-section-wrap .content-sections .traffic-box ul li figure{
        width: 50%;
    }
    .content-wrap.traffic .content-section-wrap .content-sections .traffic-box ul li figure img{
        width: 100%;
    }
    .content-wrap.traffic .content-section-wrap .content-sections .traffic-box ul li dl{
        margin-left: 30px;
        padding: 0;
        width: calc(50% - 30px);
    }
    .content-wrap.traffic .content-section-wrap .content-sections .traffic-box ul li dl dt{
        font-weight: 700;
        font-size: 1.25rem;
        color: #101218;
    }
    .content-wrap.traffic .content-section-wrap .content-sections .traffic-box ul li dl dd{
        font-size: 1.125rem;
        color: #424755;
    }
    .content-wrap.traffic .content-section.table .content-txt-box .left {
        width: calc(100% - 880px);
    }
    .content-wrap.traffic .content-section.table .content-txt-box .right{
        max-width: 800px;
        width: 100%;
    }
    .content-wrap.traffic .content-section.table .content-txt-box .section-heading{
        padding: 0 0 60px;
    }
    .content-wrap.traffic .content-section.table .content-txt-box .summary-title{
        margin: 0 0 60px;
        font-size: 1.5rem;
    }
    .content-wrap.traffic .content-section.table figure img{
        width: 100%;
    }
    .content-wrap.traffic .content-section.table .chk-list{
        padding: 30px 0 0;
    }
    .content-wrap.traffic .content-section.table .chk-list li{
        padding: 0 0 14px;
    }
    .content-wrap.traffic .content-section.table .chk-list li p strong{
        display: block;
        font-weight: 500;
        font-size: 1.25rem;
        color: #101218;
    }
    .content-wrap.traffic .content-section.table .chk-list li p span{
        font-weight: 400;
        font-size: 1rem;
        color: #424755;
        word-break: keep-all;
    }
    .content-wrap.traffic .content-section .public-transit-box{
        margin: 60px 0 0;
        padding: 60px;
        width: 100%;
        border:1px solid #bac0c9;
        border-radius: 10px;
        box-sizing: border-box;
    }
    .content-wrap.traffic .content-section .public-transit-box .box.btm {
        margin: 60px 0 0;
        padding: 60px 0 0;
        border-top: 1px solid #d7dbe7;
    }
    .content-wrap.traffic .content-section .public-transit-box .box .content-txt-box .left{
        width: 50%;
    }
    .content-wrap.traffic .content-section .public-transit-box .box .content-txt-box .right{
        width: 50%;
    }
    .content-wrap.traffic .content-section .public-transit-box .box .tit{
        margin: 0 0 54px;
    }
    .content-wrap.traffic .content-section .public-transit-box .box .tit span{
        display: inline-block;
        position: relative;
        padding: 7px 30px 7px 50px;
        font-weight: 700;
        font-size: 1.5rem;
        color: #fff;
        background-color: #000;
        border-radius: 30px;
        box-sizing: border-box;
    }
    .content-wrap.traffic .content-section .public-transit-box .box .tit span::before{
        content: "";
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        width: 17px;
        height: 13px;
        background: url("../../images/user/sub/plan/ico-chck.png") no-repeat center / cover;
    }
    .content-wrap.traffic .content-section .public-transit-box .box .content-txt-box dl{
        padding: 0 0 40px;
    }
    .content-wrap.traffic .content-section .public-transit-box .box .content-txt-box dl.last{
        padding: 0;
    }
    .content-wrap.traffic .content-section .public-transit-box .box .content-txt-box dl dt{
        padding: 0 0 10px;
        font-weight: 700;
        font-size: 1.5rem;
        color: #101218;
    }
    .content-wrap.traffic .content-section .public-transit-box .box dl dd{
        font-weight: 400;
        font-size: 1.25rem;
        color: #424755;
    }
    .content-wrap.traffic .content-section .public-transit-box .box .txt{
        padding: 0 0 60px;
        font-weight: 400;
        font-size: 1.25rem;
        color: #424755;
    }
    .content-wrap.traffic .content-section .public-transit-box .box.btm figure{
        width: calc( (100% - 10px) /2);
    }
    .content-wrap.traffic .content-section .public-transit-box .box.btm figure .figure-caption{
        padding: 20px 0 0;
        text-align: center;
        font-size: 1.125rem;
        color: #424755;
    }
    .content-wrap.traffic .content-section .content-txt-box.island{
        align-items: flex-end;
    }
    .content-wrap.traffic .content-section .content-txt-box.island .left{
        width: 365px;
    }
    .content-wrap.traffic .content-section .content-txt-box.island .left figure{
        padding:60px 0 0;
    }
    .content-wrap.traffic .content-section .content-txt-box.island figure .figure-caption{
        padding: 20px 0 0;
        text-align: center;
        font-size: 1.125rem;
        color: #424755;
    }

    /* - 스마트시티 */
    .content-wrap.smart .content-section-wrap .content-sections .content-section .summary-title{
        margin: 50px 0;
        font-size: 1.5rem;
    }
    .content-wrap.smart .content-section-wrap .content-sections .content-section .content-desc{
        font-size: 1.25rem;
        color: #424755;
    }
    .content-wrap.smart .content-section.mobility ul{
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .content-wrap.smart .content-section.mobility ul li{
        padding-bottom: 20px;
        width: calc((100% - 8px) / 2);
    }
    .content-wrap.smart .content-section.mobility ul li:nth-child(2) {
        margin: 60px 0 0;
    }
    .content-wrap.smart .content-section.mobility ul li:nth-child(4) {
        margin: 60px 0 0;
    }
    .content-wrap.smart .content-section.mobility ul li .figure-caption{
        margin-top: 20px;
        text-align: center;
        font-size: 1.25rem;
        font-weight: 700;
        color: #101218;
    }
    .content-wrap.smart .content-section.mobility ul li .figure-caption span{
        position: relative;
        padding-left: 30px;
        word-break: keep-all;
    }
    .content-wrap.smart .content-section.mobility ul li .figure-caption span::before{
        content: "";
        position: absolute;
        left: 0;
        top: 7px;
        width: 17px;
        height: 13px;
        background: url("../../images/user/sub/plan/ico-chck.png") no-repeat center/cover;
    }
    .content-wrap.smart .content-section.mobility ul li .figure-caption em{
        font-style: normal;
        font-weight: 400;
        font-size: 1rem;
    }
    .content-wrap.smart .content-section-wrap .content-sections .content-section.data .section-heading{
        width: 100%;
    }
    .content-wrap.smart .content-section-wrap .content-sections .content-section.data .section-heading span{
        display: block;
        font-size: 1.5rem;
        color: #878b9d;
    }
    .content-wrap.smart .content-section-wrap .content-sections .content-section.data .content-txt-box div{
        width: calc( (100% - 8px) /2);
    }
    /* - 첨단물류 */
    .content-wrap.logistics .content-intro{
        flex-direction: row;
        padding: 60px 0 0;
    }
    .content-wrap.logistics .content-intro .summary-title{
        margin: 0;
        width: 50%;
    }
    .content-wrap.logistics .content-intro .content-desc{
        margin: 8px 0 0;
        width: 50%;
    }
    .content-wrap.logistics .content-sections .content-section .summary-title{
        font-weight: 400;
        font-size: 1.25rem;
        color: #424755;
    }
    .content-wrap.logistics .content-sections .content-section.fast .content-txt-box{
        flex-direction: column;
    }
    .content-wrap.logistics .content-sections .content-section.fast .content-txt-box .box{
        width: 100%;
    }
    .content-wrap.logistics .content-sections .content-section.fast .content-tit-box .summary-title.first{
        margin-top: 10px;
    }
    .content-wrap.logistics .content-sections .content-section.fast .content-tit-box .summary-title.last{
        margin-bottom: 0;
    }
    .content-wrap.logistics .content-sections .content-section.fast .content-tit-box .summary-title span{
        display: block;
        font-weight: 400;
        font-size: 1.25rem;
        color: #424755;
    }
    .content-wrap.logistics .content-sections .content-section.fast .content-tit-box .summary-title strong{
        font-weight: 700;
        font-size: 1.5rem;
        color: #101218;
    }
    .content-wrap.logistics .content-sections .content-section .content-txt-box .flex-inner{
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
    .content-wrap.logistics .content-sections .content-section .content-txt-box .figure-caption{
        padding: 20px 0 0;
        text-align: center;
    }
    .content-wrap.logistics .content-sections .content-section .content-txt-box .figure-caption span{
        position: relative;
        padding-left: 40px;
        font-size: 1.25rem;
        color: #424755;
    }
    .content-wrap.logistics .content-sections .content-section .content-txt-box .figure-caption span::before{
        content: "";
        position: absolute;
        left: 0;
        top: 5px;
        width: 17px;
        height: 13px;
        background: url("../../images/user/sub/plan/ico-chck.png") no-repeat center / cover;
    }
    .content-wrap.logistics .content-sections .content-section .content-txt-box .box.btm .flex-inner{
        background-color: #eff2f7;
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px;
    }
    .content-wrap.logistics .content-sections .content-section .content-txt-box .box.btm .right{
        padding: 0 0 0 60px;
        box-sizing: border-box;
    }
    .content-wrap.logistics .content-sections .content-section .content-txt-box .box.btm dl.first{
        padding: 0 0 25px;
    }
    .content-wrap.logistics .content-sections .content-section .content-txt-box .box.btm dl dt{
        padding: 0 0 6px;
        font-weight: 700;
        font-size: 1.25rem;
        color: #101218;
    }
    .content-wrap.logistics .content-sections .content-section .content-txt-box .box.btm dl dd{
        font-size:1.125rem;
        color:#424755;
    }
    .content-wrap.logistics .content-sections .content-section .content-txt-box .box.btm dl dd strong{
        font-weight: 700;
    }
    .content-wrap.logistics .content-sections .content-section .content-txt-box .box.mid{
        padding: 55px 0;
    }
    /*
    .content-wrap.logistics .content-sections .content-section .content-txt-box .box.btm .flex-inner{
        justify-content: space-between;
    }
    .content-wrap.logistics .content-sections .content-section .content-txt-box .box.btm .flex-inner div{
        width: calc((100% - 10px) / 2);
    }*/
    .content-wrap.logistics .content-sections .content-section.safe .summary-title{
        margin-top: 60px;
    }
    .content-wrap.logistics .content-sections .content-section.safe .content-txt-box{
        padding: 0;
    }
    .content-wrap.logistics .content-sections .content-section.eco .summary-title{
        margin: 10px 0 0;
    }
    .content-wrap.logistics .content-sections .content-section.eco .content-txt-box div{
        width: calc((100% - 10px) / 2);
    }

    /* - 친환경계획 */
    .content-wrap.eco .content-intro{
        flex-direction: row;
        padding: 60px 0 0;
    }
    .content-wrap.eco .content-intro .summary-title{
        margin: 0;
        width: 50%;
    }
    .content-wrap.eco .content-intro .content-desc{
        margin: 0;
        width: 50%;
        line-height: 1.7;
        font-size: 1.5rem;
    }
    .content-wrap.eco .content-sections .content-section .summary-title{
        font-weight: 400;
        font-size: 1.25rem;
        color: #424755;
    }
    .content-wrap.eco .content-sections .content-section.fast .content-txt-box{
        flex-direction: column;
    }
    .content-wrap.eco .content-section-wrap .content-sections{
        width: 100%;
    }
    .content-wrap.eco .content-section-wrap .content-sections .section-heading{
        padding: 0 0 50px;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box{
        width: 100%;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list{
        width: 100%;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list > li + li{
        margin:50px 0 0;
        padding: 50px 0 0;
        border-top: 1px solid #d7dbe7;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list h4{
        font-weight: 700;
        font-size: 1.5rem;
        color: #101218;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list h4 strong{
        font-weight: 700;
        color: #0065d6;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner{
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        padding: 60px 0 0;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .left{
        width: 760px;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .box-outer{
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .box-outer .box{
        position: relative;
        padding: 30px;
        width: calc( (100% - 56px) / 2);
        text-align: center;
        border:1px solid #bac0c9;
        border-radius: 90px;
        box-sizing: border-box;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .box-outer .box.big::before{
        content: "";
        position: absolute;
        left: -35px;
        top: 50%;
        transform: translateY(-50%);
        width: 17px;
        height: 41px;
        background: url("../../images/user/sub/plan/ico-arw.png") no-repeat center / cover;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .box-outer .year{
        display: inline-block;
        padding: 8px 20px;
        text-align: center;
        font-size: 1.25rem;
        color: #fff;
        background-color: #000;
        border-radius: 30px;
        box-sizing: border-box;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .box-outer .box.big .year{
        font-size: 1.5rem;
        background-color: #0065d6;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .box-outer .txt{
        padding: 18px 0 8px;
        font-size: 1.25rem;
        color: #101218;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .box-outer .box.big .txt{
        font-weight: 700;
        font-size: 1.5rem;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .box-outer .txt em{
        font-style: normal;
        font-weight: 700;
        color: #0065d6;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .box-outer .refer{
        display: inline-block;
        padding: 0 0 5px;
        font-weight: 400;
        font-size: 1rem;
        color: #424755;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .box-outer .refer em{
        font-style: normal;
        font-weight: 700;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .right{
        width: calc( 100% - 820px);
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .right .box{
        padding: 40px;
        background: #eff2f7 url("../../images/user/sub/plan/eco01.png") no-repeat right bottom/209px 269px;
        border-radius: 10px;
        box-sizing: border-box;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .right h5{
        font-weight: 700;
        font-size: 1.5rem;
        color: #101218;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .right .sub-tit{
        font-weight: 400;
        font-size: 1rem;
        color: #424755;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .right .grade{
        padding: 22px 0 0;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .right .grade p{
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 24px 30px;
        background-image: linear-gradient(to right, rgba(255,255,255,0.9), rgba(255,255,255,0.3));
        border-radius: 10px;
        box-sizing: border-box;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .right .grade p.last{
        margin: 16px 0 0;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .right .grade p strong{
        padding-right: 20px;
        font-weight: 700;
        font-size: 1.25rem;
        color: #101218;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .right .grade p.last strong{
        color: #0065d6;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .right .grade p span{
        font-weight: 400;
        font-size: 1.125rem;
        color: #424755;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .note{
        padding: 30px 0 0;
        font-weight: 400;
        font-size: 1rem;
        color: #424755;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .note strong{
        font-weight: 700;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .txt{
        padding: 25px 0 0;
        font-weight: 400;
        font-size: 1.25rem;
        color: #424755;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .txt strong{
        font-weight: 700;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .img-list{
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .img-list > li{
        width: calc( (100% - 20px) / 3);
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .img-list.scd > li{
        width: calc( (100% - 10px) / 2);
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .img-list > li p{
        padding: 15px 0;
        text-align: center;
        font-size: 1.125rem;
        color: #424755;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .dl-box{
        padding: 40px;
        background-color: #eff2f7;
        border-radius: 10px;
        box-sizing: border-box;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .dl-box dl{
        padding: 0;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .dl-box dl.last{
        margin: 30px 0 0;
        padding: 20px 0 0;
        border-top: 1px solid #d7dbe7;
        box-sizing: border-box;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .dl-box.row{
        display: flex;
        align-items: flex-start;
        justify-content: center;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .dl-box.row dl{
        width: 50%;
        text-align: center;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .dl-box.row dl.last{
        margin: 0 0 0 30px;
        padding: 0 0 0 30px;
        border-left: 1px solid #d7dbe7;
        border-top: none;
        box-sizing: border-box;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .dl-box.row dl dd img{
        margin:0 auto;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .dl-box.row dl:first-child dd img{
        margin-top: 20px;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .dl-box.row dl.last p{
        padding: 0 0 20px;
        font-size: 0.875rem;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .dl-box.row figure{
        padding: 10px;
        width: 100%;
        background-color: #fff;
        border-radius: 10px;
        box-sizing: border-box;
    }
    .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .dl-box.row figure.last{
        margin-top: 5px;
    }

    /* - 타운매니지먼트 */
    .content-wrap.town .project-heading em{
        font-style: normal;
        font-size:2.5rem;
        color: #424755;
    }
    .content-wrap.town .content-intro {
        flex-direction: row;
        padding: 60px 0 50px;
    }
    .content-wrap.town .content-intro .content-desc{
        margin-top: 4px;
    }
    .content-wrap.town .content-intro .content-desc strong{
        color:#0065d6;
    }
    .content-wrap.town .content-section-wrap{
        margin: 0;
        border-top: 0;
    }
    .content-wrap.town .content-section-wrap .content-sections{
        width: 100%;
    }
    .content-wrap.town .content-section-wrap .content-sections .content-section .section-heading{
        padding: 0 0 60px;
    }
    .content-wrap.town .content-section .content-txt-box .chk-list li p{
        display: flex;
        align-items: center;
        justify-content: flex-start;
        position: relative;
        width: 100%;
    }
    .content-wrap.town .content-section .content-txt-box .chk-list li p::before{
        content: "";
        position: absolute;
        left: 0;
        top: 7px;
        width: 17px;
        height: 13px;
        background: url("../../images/user/sub/plan/ico-chck.png") no-repeat center / cover;
    }
    .content-wrap.town .content-section .content-txt-box .chk-list li p strong{
        display: inline-block;
        width: 278px;
        font-weight: 700;
        font-size: 1.25rem;
        color: #101218;
    }
    .content-wrap.town .content-section .content-txt-box .chk-list li p span{
        font-weight: 400;
        font-size: 1.125rem;
        color: #424755;
    }
    .content-wrap.town .content-section.why .content-txt-box{
        flex-direction: column;
    }
    .content-wrap.town .content-section.why .content-txt-box div > ul{
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    .content-wrap.town .content-section.why .content-txt-box .top{
        padding: 0 0 60px;
    }
    .content-wrap.town .content-section.why .content-txt-box .top > ul{
        justify-content: space-between;
    }
    .content-wrap.town .content-section.why .content-txt-box .top > ul > li{
        width: calc( (100% - 20px) / 3 );
        text-align: center;
    }
    .content-wrap.town .content-section.why .content-txt-box .top > ul > li p{
        position: relative;
    }
    .content-wrap.town .content-section.why .content-txt-box .top > ul > li .gray{
        padding: 27px 0;
        font-weight: 400;
        font-size: 1rem;
        color: #424755;
        border: 1px solid #bac0c9;
        border-radius: 40px;
        box-sizing: border-box;
    }
    .content-wrap.town .content-section.why .content-txt-box .top > ul > li .blue{
        margin-top: 40px;
        padding: 24px 0;
        font-weight: 700;
        font-size: 1.25rem;
        color: #0065d6;
        border: 1px solid #0065d6;
        border-radius: 40px;
        box-sizing: border-box;
    }
    .content-wrap.town .content-section.why .content-txt-box .top > ul > li .blue::before{
        content: "";
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: -30px;
        width: 41px;
        height: 17px;
        background: url("../../images/user/sub/plan/ico-arw-down.png") no-repeat center / cover;
    }
    .content-wrap.town .content-section.why .content-txt-box .btm > ul::after{
        content: "";
        position: absolute;
        left: 50%;
        top: 30%;
        transform: translate(-50%,-50%);
        width: 50%;
        height: 1px;
        border-bottom:1px dashed #0065d6;
        z-index: -1;
    }
    .content-wrap.town .content-section.why .content-txt-box .btm > ul{
        align-items: flex-start;
    }
    .content-wrap.town .content-section.why .content-txt-box .btm > ul > li{
        margin: 0 30px;
    }
    .content-wrap.town .content-section.why .content-txt-box .btm > ul > li figure{
        position: relative;
        margin: 0 auto 30px;
        width: 200px;
    }
    .content-wrap.town .content-section.why .content-txt-box .btm > ul > li figure strong{
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%,-50%);
        text-align: center;
        font-weight: 700;
        font-size: 1.25rem;
        color: #fff;
    }
    .content-wrap.town .content-section.why .content-txt-box .btm > ul > li > .chk-list > li{
        line-height: 2;
    }
    .content-wrap.town .content-section.why .content-txt-box .btm > ul > li > .chk-list > li p{
        padding-left: 30px;
        font-weight: 500;
        font-size: 1rem;
        color: #424755;
    }
    .content-wrap.town .content-section.why .content-txt-box .btm > ul > li > .chk-list > li p::before{
        top: 8px;
    }
    .content-wrap.town .content-section.why .content-txt-box > div{
        width: 100%;
    }
    .content-wrap.town .content-section.core .content-txt-box{
        align-items: center;
    }
    .content-wrap.town .content-section.core .content-txt-box .left{
        width: calc( 100% - 670px);
    }
    .content-wrap.town .content-section.core .content-txt-box .right{
        margin-left: 50px;
        width: 620px;
    }
    .content-wrap.town .content-section.core .content-txt-box .chk-list li{
        padding: 20px 0;
    }
    .content-wrap.town .content-section.core .content-txt-box .chk-list li + li{
        border-top: 1px solid #d7dbe7;
    }

    /* ========== 분양정보 - 투자자커뮤니티 ========== */
    .content-wrap.community .info-box{
        margin: 0 0 60px;
        padding: 50px;
        background-color: #f0f3f8;
        border-radius: 10px;
        box-sizing: border-box;
    }
    .content-wrap.community .info-box dl dt{
        position: relative;
        padding-left: 33px;
        font-weight: 700;
        font-size: 1.5rem;
        color: #101218;
    }
    .content-wrap.community .info-box dl dt::before{
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 23px;
        height: 23px;
        background: url("../../images/user/sub/sub-common/ico-briefing.png") no-repeat center / cover;
    }
    .content-wrap.community .info-box dl dd{
        padding: 30px 0 0;
    }
    .content-wrap.community .info-box dl dd ul li{
        position: relative;
        padding-left: 40px;
        font-weight: 500;
        font-size: 1.25rem;
        color: #101218;
        word-break: keep-all;
    }
    .content-wrap.community .info-box dl dd ul li + li{
        margin: 14px 0 0;
    }
    .content-wrap.community .info-box dl dd ul li::before{
        content: "";
        position: absolute;
        left: 0;
        top: 6px;
        width: 17px;
        height: 13px;
        background: url("../../images/user/sub/sub-common/ico-chck.png") no-repeat center / cover;
    }
    .chk_box input[type="checkbox"],
    .chk_box input[type="radio"]{
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        border: 0;
        overflow: hidden;
        margin: -1px;
        clip-path: inset(50%);
    }
    .content-wrap.community .chk-wrap .chk-box{
        position: relative;
        margin: 4px 30px 4px 0;
    }
    .content-wrap.community .chk-wrap .chk-box label{
        cursor:pointer;
    }
    .content-wrap.community .chk-wrap .chk-box input + label{
        padding-left: 10px;
        font-weight: 500;
        font-size: 1.25rem;
        color: #101218;
    }
    .content-wrap.community .chk-wrap .chk-box input + label::before{
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 24px;
        height: 24px;
        background: url("../../images/user/sub/sub-common/ico-chkbox.png") no-repeat center/cover;
    }
    .content-wrap.community .chk-wrap .chk-box input:checked + label::before {
        background: url("../../images/user/sub/sub-common/ico-chkbox-active.png") no-repeat center/cover;
    }
    .content-wrap.community .chk-wrap.radio .chk-box input + label::before{
        background: url("../../images/user/sub/sub-common/ico-radio.png") no-repeat center/cover;
    }
    .content-wrap.community .chk-wrap.radio .chk-box input:checked + label::before {
        background: url("../../images/user/sub/sub-common/ico-radio-active.png") no-repeat center/cover;
    }
    /* 리스트 */
    .content-wrap.community .filter-outer{
        margin: 0 0 60px;
        padding: 50px;
        width: 100%;
        border: 1px solid #878b9d;
        border-radius: 10px;
        box-sizing: border-box;
    }
    .content-wrap.community .filter-outer ul{
        width: 100%;
    }
    .content-wrap.community .filter-outer ul li{
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
    }
    .content-wrap.community .filter-outer ul li + li{
        margin: 26px 0 0;
        padding: 26px 0 0;
        border-top: 1px solid #d7dbe7;
        box-sizing: border-box;
    }
    .content-wrap.community .filter-outer ul li:nth-child(3) .chk-box{
        display: inline-block;
        margin: 4px 0 4px 0;
        width: 102px;
    }
    .content-wrap.community .filter-outer ul li:nth-child(4){
        align-items: center;
    }
    .content-wrap.community .filter-outer ul li strong{
        margin: 4px 0;
        width: 110px;
        font-weight: 700;
        font-size: 1.25rem;
        color: #101218;
    }
    .content-wrap.community .filter-outer ul li > div{
        width: calc( 100% - 110px);
    }
    .content-wrap.community .filter-outer ul li .chk-wrap{
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .content-wrap.community .board-total-top{
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        padding-bottom: 20px;
        width: 100%;
    }
    .content-wrap.community .board-total-top .board-total{
        margin-bottom: 4px;
    }
    .content-wrap.community .board-table{
        width: 100%;
    }
    .content-wrap .no-result{
        padding: 60px 0;
        width: 100%;
        border-top: 1px solid #878b9d;
        border-bottom: 1px solid #e5eaf2;
        box-sizing: border-box;
    }
    .content-wrap .no-result .txt{
        text-align: center;
        font-weight: 500;
        font-size: 1.125rem;
        color:#424755;
    }
    .content-wrap .no-result .txt.en{
        font-size: 1rem;
        color: #878b9d;
    }
    .content-wrap.community .board-table table{
        width: 100%;
        border-top: 1px solid #878b9d;
    }
    .content-wrap.community .board-table table tr{
        border-bottom: 1px solid #e5eaf2;
    }
    .content-wrap.community .board-table table th{
        padding: 40px 20px;
        font-weight: 700;
        font-size: 1.25rem;
        color: #101218;
    }
    .content-wrap.community .board-table table td{
        text-align: center;
        font-size: 1.25rem;
        color: #101218;
    }
    .content-wrap.community .board-table table td:first-child,
    .content-wrap.community .board-table table td:last-child{
        color: #878b9d;
    }
    .content-wrap.community .board-table table td a{
        display: block;
        padding: 40px 10px;
        font-weight: 700;
        color: #101218;
    }
    .content-wrap.community .board-table table td img{
        margin: 0 auto;
    }

    /* 등록 */
    .content-wrap.community .insert-form-outer{
        margin: 0 auto;
        max-width: 690px;
        width: 100%;
    }
    .content-wrap.community .insert-form-outer .insert-tit{
        padding: 40px 0;
        font-weight: 700;
        font-size: 2rem;
        color: #07080c;
        border-bottom: 1px solid #878b9d;
        box-sizing: border-box;
    }
    .content-wrap.community .insert-form-outer .insert-tit span{
        position: relative;
        padding-left: 55px;
    }
    .content-wrap.community .insert-form-outer .insert-tit span::before{
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 36px;
        height: 36px;
        background: url("../../images/user/sub/sub-common/ico-community-insert.png") no-repeat center / cover;
    }
    .content-wrap.community .insert-form-outer ul li{
        padding: 30px 0 0;
    }
    .content-wrap.community .insert-form-outer ul li .tit-box{
        display: flex;
        align-items: flex-end;
        justify-content: flex-start;
        padding: 0 0 10px;
    }
    .content-wrap.community .insert-form-outer ul li .tit-box label{
        font-weight: 700;
        font-size: 1.5rem;
        color: #101218;
    }
    .content-wrap.community .insert-form-outer ul li .tit-box label .essen{
        padding-left: 4px;
        color: #e13d2c;
    }
    .content-wrap.community .insert-form-outer ul li .tit-box .add-txt{
        display: inline-block;
        padding:0 0 5px 15px;
        font-weight: 400;
        font-size: 1rem;
        color: #1a1c24;
    }
    .content-wrap.community .insert-form-outer ul li .chk-wrap{
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-wrap: wrap;
        padding: 12px 0 0;
    }
    .content-wrap.community .insert-form-outer ul li .chk-wrap.land .chk-box{
        margin: 0 0 15px 0;
        width: calc( 100% / 5);
    }
    .content-wrap.community .insert-form-outer ul li textarea{
        resize: none;
        margin: 10px 0 0;
        width: 100%;
        height: 180px;
        padding: 20px;
        font-size: 1.125rem;
        background: #f0f3f8;
        border-radius: 10px;
        border: none;
        box-sizing: border-box;
    }
    .content-wrap.community .insert-form-outer ul li textarea::-webkit-scrollbar {
        width: 8px;
    }
    .content-wrap.community .insert-form-outer ul li textarea::-webkit-scrollbar-track {
        background-color: #f0f3f8;
        border-radius: 16px;
    }
    .content-wrap.community .insert-form-outer ul li textarea::-webkit-scrollbar-thumb:vertical {
        background-color: #8187A2;
        border-radius: 16px;
    }
    .content-wrap.community .insert-form-outer ul li textarea::placeholder {
        color: #878b9d;
    }
    .content-wrap.community .insert-form-outer ul li .tit-box .add-txt.intro{
        margin-left: auto;
        padding: 0;
        color: #e13d2c;
    }
    .content-wrap.community .insert-form-outer ul li .attach-wrap{
        padding: 30px 30px 22px;
        width: 100%;
        border: 1px solid #878b9d;
        border-radius: 10px;
        box-sizing: border-box;
    }
    .content-wrap.community .insert-form-outer ul li .attach-wrap strong{
        display: block;
        padding: 20px 0 0;
        font-weight: 400;
        font-size: 1rem;
        color:#e13d2c;
    }
    .content-wrap.community .insert-form-outer ul li input[type="file"]{
        width: 100%;
    }
    .content-wrap.community .insert-form-outer ul li input[type="file"]::placeholder{
        color: #878b9d;
    }
    .content-wrap.community .insert-form-outer ul li .attach-wrap input[type=file]::file-selector-button {
        margin-right: 10px;
        width: 120px;
        height: 44px;
        color: #fff;
        background: #424755;
        border: 1px solid #424755;
        border-radius: 6px;
        box-sizing: border-box;
        cursor: pointer;
    }
    .content-wrap.community .insert-form-outer ul li .attach-wrap .attach-list{
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-direction: row;
        flex-wrap: wrap;
        padding: 25px 0 0;
        gap: 0;
    }
    .content-wrap.community .insert-form-outer ul li .attach-wrap .attach-list strong{
        display:inline-flex;
        align-items: center;
        justify-content: flex-start;
        margin:0 8px 8px 0;
        padding: 10px 20px;
        background-color:#f0f3f8;
        border-radius: 6px;
        box-sizing: border-box;
    }
    .content-wrap.community .insert-form-outer ul li .attach-wrap .attach-list strong span{
        font-weight:500;
        font-size: 1.125rem;
        color: #424755;
    }
    .content-wrap.community .insert-form-outer ul li .attach-wrap .attach-list strong em{
        display: inline-block;
        width: 30px;
        height: 30px;
        background: url("../../images/user/sub/sub-common/ico-download-del.png") no-repeat center/12px;
    }
    .content-wrap.community .insert-form-outer .btn-box{
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 60px 0 0;
    }
    .content-wrap.community .insert-form-outer .btn-box .btn{
        padding: 25px;
        width: calc( (100% - 20px) /2);
        font-weight: 500;
        font-size: 1.25rem;
        box-sizing: border-box;
    }
    .content-wrap.community .insert-form-outer .btn-box .btn.btn-cancel{
        background-color: #878b9d;
    }
    .content-wrap.community .insert-form-outer .btn-box .btn.btn-register{
        background-color: #0065d6;
    }


    /* 상세 */
    .content-wrap.community .board-view-content{
        margin: 0 auto;
        padding: 40px;
        max-width: 690px;
        width: 100%;
        border: 1px solid #424755;
        border-radius: 10px;
        box-sizing: border-box;
    }
    .content-wrap.community .board-view-content h3{
        margin: 0 0 30px;
        padding: 0 0 30px;
        font-weight: 700;
        font-size: 1.5rem;
        color: #101218;
        border-bottom: 1px solid #878b9d;
        box-sizing: border-box;
    }
    .content-wrap.community .board-view-content .com-list li{
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
    }
    .content-wrap.community .board-view-content .com-list li + li{
        margin-top: 26px;
    }
    .content-wrap.community .board-view-content .com-list li .tit{
        display: inline-block;
        width: 170px;
        line-height: 1.2;
        font-weight: 700;
        font-size: 1.25rem;
        color: #101218;
    }
    .content-wrap.community .board-view-content .com-list li p{
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        flex-wrap: wrap;
        line-height: 1.2;
        font-weight: 500;
        width: calc( 100% - 170px );
        word-break: keep-all;
    }
    .content-wrap.community .board-view-content .com-list li p em{
        font-style: normal;
    }
    .content-wrap.community .board-view-content .com-list li p a{
        display: inline-flex;
        align-items: center;
        justify-content: flex-start;
        margin: 0 8px 8px 0;
        padding: 12px;
        background-color: #f0f3f8;
        border-radius: 6px;
        box-sizing: border-box;
    }
    .content-wrap.community .board-view-content .com-list li p a strong{
        position: relative;
        margin-right: 6px;
        padding-right: 22px;
        font-weight: 400;
    }
    .content-wrap.community .board-view-content .com-list li p a strong::after{
        content: "";
        position: absolute;
        right: 0;
        top: 50%;
        transform:translateY(-50%);
        width: 16px;
        height: 16px;
        background: url("../../images/user/sub/sub-common/ico-download.png") no-repeat center / cover;
    }
    .content-wrap.community .board-view-content .com-list li p a em{
        font-weight: 400;
        font-size: 1rem;
        color: #878b9d;
    }
    .content-wrap.community .board-view-footer .btn{
        padding: 25px;
        max-width: 400px;
        width: 100%;
        box-sizing: border-box;
    }

    @media (max-width: 1500px) {
        .developer-vision {
            width: 55%;
        }
    }

    @media (max-width: 1440px) {

        :root {
            --page-padding-x: 30px;
        }

        .btm-environ-box{
            width: calc(100vw - 60px);
        }


        .sub-content-title {
            font-size: 3rem;
        }

        .space-separator::before {
            width: calc(100vw - 60px)
        }
        .sub-content-title {
            width: auto;
        }

        .strategy-list {
            gap: 0 150px;
        }

    }
    @media (max-width: 1280px) {

        /* ========== 서브공통 ======== */
        .sub-hero {
            height: 320px;
        }
        .sub-hero-inner .breadcrumb {
            display: none;
        }
        .sub-hero-inner .page-title {
            top: 60px;
        }
        .sub-hero-inner .page-title .page-subtitle {
            font-size: 1.125rem;
        }
        .sub-content-title {
            font-size: 2.75rem;
        }
        .sub-hero-inner .page-title .page-main-title {
            font-size: 2.8125rem;
        }
        .sub-nav {
            display: none;
        }
        .sub-hero-bg {
            top: 200px;
            border-radius: 10px;
            width: calc(100% - 60px);
            height: 230px;
        }
        .sub-content {
            padding: 125px 0 85px;
        }

        /* 서브메뉴 셀렉트*/
        .dropdown-nav {
            display: block;
            position: relative;
            margin: 0 auto 50px;
            max-width: 550px;
            width: 100%;
             transition: transform 0.35s ease, opacity 0.35s ease;
        }

        /* 숨김 (위로 슬라이드 업) */
        .dropdown-nav.is-hidden {
            transform: translateY(-100%);
            opacity: 0;
            pointer-events: none;
        }

        /* 노출 (슬라이드 다운) */
        .dropdown-nav.is-visible {
            transform: translateY(0);
            opacity: 1;
            pointer-events: auto;
        }

        .dropdown-nav-trigger {
            position: relative;
            width: 100%;
            padding: 15px 20px;
            font-size: 1rem;
            font-weight: 700;
            background: #fff;
            border: 1px solid #000;
            border-radius: 10px;
            cursor: pointer;
            text-align: left;
        }

        .dropdown-nav-trigger:after {
            content: '';
            display: block;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            right: 20px;
            width: 13px;
            height: 7px;
            background: url("../../images/user/sub/sub-common/ico-arrow-slct-down-02.png") no-repeat;
            background-size: cover;
        }

        .dropdown-nav-list {
            position: absolute;
            top: 63px;
            padding: 5px;
            border: 1px solid #000;
            border-radius: 10px;
            width: 100%;
            height: 0;
            transition: height 0.3s ease;
            background: #fff;
            overflow: hidden;
        }

        .dropdown-nav-item a {
            display: block;
            padding: 12px 16px;
            border-radius: 10px;
            text-decoration: none;
            color: #424755;
            font-size: 0.875rem;
        }

        .dropdown-nav-item a:hover {
            background: #000;
            color: #fff;
        }

        .dropdown-nav.open .dropdown-nav-list {
            display: block;
            height: auto;
        }
        .board-total {
            font-size: 1.125rem;
        }
        .board-total strong {
            font-weight: 500;
        }

        .project-heading{
            font-size: 2.75rem;
        }
        .content-section-wrap {
            position: relative;
            margin: 70px 0 0;
            padding: 70px 0 0;
        }
        .content-section-wrap .content-sections {
            width: calc(100% - 200px);
        }
        .content-section-wrap .content-sections .content-section +.content-section {
            margin-top: 70px;
            padding-top: 70px;
        }
        .content-intro .content-desc{
            margin-left: 0;
            margin-top: 40px;
            font-size: 1.5rem;
        }
        .section-heading{
            font-size: 2rem;
        }
        .content-section-wrap .content-sections .summary-title{
            font-size: 1.25rem;
        }
        #sub-sticky-list{
            width: 180px;
        }
        #sub-sticky-list ul li {
            padding: 0 0 20px;
        }
        #sub-sticky-list ul li a{
            font-size: 1.125rem;
        }
        .content-section-wrap .content-sections .content-section .leading-text-box {
            margin: 60px 0 0;
        }
        .content-section-wrap .content-sections .content-section .leading-text-box p{
            font-size: 1.75rem;
        }



        /* ========== 정주환경 ========== */
        /* - 오피스 */
        .content-wrap.environment .content-section-wrap .content-sections .summary-title{
            margin: 30px 0;
            font-size: 1.25rem;
        }
        .content-wrap.environment .content-section-wrap .content-sections .right .summary-title {
            margin: 0 0 30px;
        }
        .content-section-wrap .content-sections .herb .content-txt-box .figure-txt{
            font-size: 1rem;
        }
        .content-section-wrap .content-sections ul li dl {
            padding: 20px 0 0;
        }
        .content-section-wrap .content-sections ul li dl dt {
            padding: 0 0 7px;
            font-size: 1.125rem;
        }
        .content-section-wrap .content-sections ul li dl dd {
            font-size: 1rem;
        }
        .content-section-wrap .content-sections .infra .right ul li:nth-child(2) {
            margin: 40px 0 0;
        }
        .btm-environ-box .btm-environ-box-inner {
            padding: 80px 20px;
        }
        .btm-environ-box .btm-environ-box-inner .section-heading {
            padding: 0 0 40px;
        }
        .btm-environ-box .btm-environ-box-inner ul li a {
            padding: 24px 0;
            font-size: 1.25rem;
        }

        /* - 관광 및 문화시설 */
        .content-section-wrap .content-sections .section-heading em{
            font-size: 1.75rem;
        }
        .content-section-wrap .content-sections .artband .content-txt-box .left{
            width: calc(50% - 30px);
        }
        .content-section-wrap .content-sections .sky .content-txt-box .left {
            width: calc(50% - 30px);
        }

        /* ========== 입지 ========== */
        /* - 헤리티지 */
        .content-wrap.location .content-section-wrap .content-sections .left .leading-text-box{
            margin: 80px 0 0;
        }
        /* - 교통의 중심 */
        .content-section-wrap .content-sections .content-section.access .content-txt-box{
            flex-direction: column;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.access .left{
            width: 100%;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.access .left .section-heading br{
            display: none;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.access .right{
            margin: 20px 0 0;
            width: 100%;
            text-align: center;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.access .right .method-txt p em{
            display: inline-block;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.access .right .method-txt{
            justify-content: center;
            padding: 30px 0 0;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.access .right .method-txt p {
            width: 35%;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.access .right .btm {
            padding: 60px 0 0;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.access .right .pos-txt strong {
            height: 82px;
            line-height: 82px;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.access .right .method-txt p span {
            display: block;
            font-size: 1.75rem;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section .section-heading{
            font-size: 1.75rem;
        }

        .content-wrap.transport .content-section-wrap .content-sections .content-section.whole .summary-title {
            padding: 50px 0 30px;
            font-size: 1.75rem;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.whole .left{
            width:60%;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.whole .list li {
            padding: 20px 0;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.whole .right{
            width:40%;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.whole img{
            margin-left: auto;
            margin-right: 0;
            width: 90%;
        }


        .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box {
            padding: 40px 0 0;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.top .right{
            padding-left: 20px;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.top dl dt {
            padding-left: 30px;
            font-size: 1.25rem;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.top li:nth-child(1) dl dt::before {
            top: 4px;
            width: 19px;
            height: 21px;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.top li:nth-child(2) dl dt::before {
            top: 3px;
            width: 21px;
            height: 21px;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.top li:nth-child(3) dl dt::before {
            top: 2px;
            width: 21px;
            height: 21px;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.top dl dd{
            font-size: 1.125rem;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box ul li + li{
            margin: 16px 0 0;
            padding: 16px 0 0;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.btm .list {
            padding: 40px 0 0;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.btm .left {
            padding-right: 20px;
            width: 400px;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.btm .right {
            width: calc(100% - 420px);
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.btm .list li strong {
            font-size: 1.125rem;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.btm .list li span {
            font-size: 1.125rem;
        }



        /* 친환경 녹지 네트워크 */
        .content-wrap.green .content-intro .project-heading br{
            display: none;
        }
        .content-wrap.green .content-section-wrap .content-section.network .summary-title {
            font-size: 2rem;
        }
        .content-wrap.green .content-section-wrap .content-section.network .summary-text {
            font-size: 1.5rem;
        }
        .content-wrap.green .content-section-wrap .content-section.downtown .content-tit-box .summary-title {
            font-size: 1.5rem;
        }
        .content-wrap.green .content-section-wrap .content-section.downtown .content-tit-box .section-heading{
            font-size: 2rem;
        }
        .content-wrap.green .content-section-wrap .content-section.downtown .content-tit-box .section-heading br{
            display: none;
        }
        /* - 글로벌 비즈니스 지구 */
        .content-wrap.business .content-section-wrap .content-section.headquarter .content-txt-box .left {
            width: calc(100% - 800px);
        }
        .content-wrap.business .content-section-wrap .content-section.headquarter .content-txt-box .right {
            width: 780px;
        }
        .content-wrap.business .content-section-wrap .content-section.headquarter .content-txt-box ul li {
            width: calc((100% - 20px) / 2);
        }
        /* - 해외사례비교 */
        .content-wrap.cases .content-intro .summary {
            padding: 30px 30px 0 0;
        }
        .content-wrap.cases .content-intro .summary .summary-title{
            margin-bottom: 20px;
            line-height: 1.3;
            font-size: 1.75rem;
        }
        .content-wrap.cases .content-intro .summary .summary-text {
            font-size: 1.25rem;
        }
        .content-wrap.cases .content-intro ul {
            padding: 180px 0 0;
        }
        .content-wrap.cases .content-section-wrap .content-section.world .content-tit-box {
            flex-direction: column;
            padding: 0 0 60px;
        }
        .content-wrap.cases .content-section-wrap .content-section.world .left{
            width: 100%;
        }
        .content-wrap.cases .content-section-wrap .content-section.world .right{
            width: 100%;
        }
        .content-wrap.cases .content-section-wrap .content-section.world .section-heading {
            font-size: 2rem;
        }
        .content-wrap.cases .content-section-wrap .content-section.world .summary-desc {
            margin: 10px 0 0;
            font-size: 1.25rem;
        }
        .content-wrap.cases .content-section-wrap .content-section.world ul li:nth-child(2) {
            margin: 0 70px;
        }
        .content-wrap.cases .content-section-wrap .content-section.world ul li:nth-child(2)::before {
            left: -55px;
            width: 38px;
            height: 70px;
        }
        .content-wrap.cases .content-section-wrap .content-section.world ul li:nth-child(2)::after {
            right: -55px;
            width: 38px;
            height: 70px;
        }
        .content-wrap.cases .content-section-wrap .content-section.world ul li:nth-child(2) .txt p {
            font-weight: 700;
            font-size: 2rem;
        }
        .content-wrap.cases .content-section-wrap .content-section.world ul li:nth-child(2) .txt strong {
            font-size: 3rem;
        }
        .content-wrap.cases .content-section-wrap .content-section.world ul li:nth-child(2) .txt strong em {
            font-size: 4rem;
        }
        .content-wrap.cases .content-section-wrap .content-section.world ul li .txt p {
            font-weight: 500;
            font-size: 1.25rem;
        }
        .content-wrap.cases .content-section-wrap .content-section.world ul li .txt strong {
            padding: 5px 0;
            font-size: 1.5rem;
        }
        .content-wrap.cases .content-section-wrap .content-section.world ul li .txt span em {
            font-size: 2rem;
        }
        .content-wrap.cases .content-section-wrap .content-section.world ul li .txt span {
            font-weight: 500;
            font-size: 1.25rem;
        }
        .content-wrap.cases .content-section-wrap .content-section.three .summary-desc {
            padding: 20px 0;
            font-size: 1.25rem;
        }

        /* ========== 개발계획 ========== */
        /* -  개발컨셉 */
        .content-wrap.concept .content-intro .project-heading {
            font-size: 2.75rem;
        }
        .content-wrap.concept .content-intro figure .figure-tit{
            right: 60px;
            top: 38px;
        }
        .content-wrap.concept .content-intro figure p {
            font-size: 2rem;
        }
        .content-section-wrap .content-sections .content-tit-box {
            padding: 0 0 40px;
        }
        .content-wrap.concept .content-section-wrap .content-sections .content-section .content-txt-box{
            flex-direction: column;
        }
        .content-wrap.concept .content-section-wrap .content-sections .content-section .content-txt-box .left{
            width: 100%;
        }
        .content-wrap.concept .content-section-wrap .content-sections .content-section .content-txt-box .right{
            width: 100%;
        }
        .content-wrap.concept .content-section-wrap .content-sections .content-section.first .content-txt-box figure img{
            margin: 0 auto;
            width: 70%;
        }
        .content-wrap.concept .content-section-wrap .content-sections .content-section .content-txt-box figure img{
            width: 100%;
        }
        .content-wrap.concept .content-section-wrap .content-sections .content-section.list .flex-inner{
            justify-content: flex-start;
            padding: 0;
        }
        .content-wrap.concept .content-section-wrap .content-sections .content-section.list .summary-text{
            padding:20px 0 40px;
        }
        .content-wrap.concept .content-section-wrap .content-sections .content-section.scd .flex-inner{
            justify-content: flex-end;
            flex-direction: row-reverse;
        }
        .content-wrap.concept .content-section-wrap .content-sections .content-section.first .content-txt-box .right{
            padding: 30px 0 0;
        }
        .content-wrap.concept .content-section-wrap .content-sections .content-section.list figure{
            padding-right:50px;
        }
        .content-wrap.concept .content-section-wrap .content-sections .content-section.list .chk-list{
            max-width: 100%;
        }

        /* -  마스터플랜 */
        .content-wrap.master .master-plan .content-txt-box{
            padding: 70px 0 0;
        }
        .content-wrap.master .master-plan.land .content-txt-box .left {
            width: calc(100% - 770px);
        }
        .content-wrap.master .master-plan .content-txt-box .right {
            max-width: 760px;
        }
        .content-wrap.master .master-plan .content-txt-box .zone-list li{
            font-size: 1.125rem;
        }
        .content-wrap.master .master-plan .content-txt-box .zone-list li span {
            padding-left: 15px;
        }
        .content-wrap.master .master-plan .content-txt-box .zone-list li span::before{
            left: 0;
            width: 8px;
            height: 8px;
        }
        .content-wrap.master .master-plan.zone {
            margin: 70px 0 0;
            padding: 70px 0 0;
        }
        .content-wrap.master .master-plan.zone .content-txt-box {
            padding: 20px 0 0;
            align-items: flex-start;
        }
        .content-wrap.master .master-plan.zone .content-txt-box .left {
            width: 680px;
        }
        .content-wrap.master .master-plan .zone-detail-list li .initial {
            width: 180px;
        }
        .content-wrap.master .master-plan .zone-detail-list li .info {
            width: calc(100% - 220px);
        }
        .content-wrap.master .master-plan.zone .content-txt-box .right {
            width: calc(100% - 700px);
        }
        .content-wrap.master .master-plan.zone .zone-box{
            margin: 40px 0 0;
            padding: 70px 0 0;
        }
        .content-wrap.master .master-plan.zone .zone-box ul li + li {
            padding-top: 40px;
        }
        .content-wrap.master .master-plan.zone .zone-box ul li h4 {
            padding: 0 0 30px;
        }
        .content-wrap.master .master-plan.zone .zone-box ul li .flex-inner{
            flex-direction: column;
            align-items: flex-start;
        }
        .content-wrap.master .master-plan.zone .zone-box ul li .flex-inner .left{
            width: 100%;
        }
        .content-wrap.master .master-plan.zone .zone-box ul li .flex-inner .right{
            margin: 30px 0 0;
            width: 100%;
        }
        .content-wrap.master .master-plan.zone .zone-box ul li .flex-inner .left img{
            width: 56%;
        }
        /* - 녹지계획 */
        .content-wrap.green.plan .content-intro .project-heading br{
            display: inline-block;
        }
        .content-wrap.green .content-section .section-heading {
            padding: 0 0 40px;
        }
        .content-wrap.green .content-section-wrap .content-sections .content-tit-box {
            flex-direction: column;
            align-items: flex-start;
        }
        .content-wrap.green .content-tit-box .summary-text{
            padding: 20px 0 0;
            text-align: left;
        }
        .content-wrap.green .content-sections .strategy-list{
            gap: 0;
        }
        .content-wrap.green .content-sections .strategy-list li {
            width: calc((100% - 12px) / 3);
        }
        .content-wrap.green .content-sections .strategy-list li p strong {
            font-weight: 500;
            padding-right: 5px;
            font-size: 1.5rem;
        }
        .content-wrap.green .content-sections .strategy-list li p span {
            font-weight: 500;
            font-size: 1.25rem;
        }
        .content-wrap.green .content-sections .strategy-list li p strong{
            font-size: 1rem;
        }
        .content-wrap.green .content-sections .strategy-list li .txt{
            padding: 38px 10px;
            font-size: 1.125rem;
        }
        .content-wrap.green .content-section-wrap .content-sections .content-txt-box.city .city-list li figure{
            width: 50%;
        }
        .content-wrap.green .content-section-wrap .content-sections .content-txt-box.city .city-list li dl {
            padding: 0 0 0 10px;
            width: 50%;
            box-sizing: border-box;
        }
        .content-wrap.green .content-section-wrap .content-sections .content-txt-box.city .city-list li dl dd br{
            display: none;
        }
        /* - 교통계획 */
        .content-wrap.traffic .content-section-wrap .content-sections .left{
            width: 40%;
        }
        .content-wrap.traffic .content-section-wrap .content-sections .right{
            width: 60%;
        }
        .content-wrap.traffic .content-section-wrap .content-sections .traffic-box ul li dl{
            margin-left: 15px;
            width: calc(50% - 15px);
        }
        .content-wrap.traffic .content-section.table .content-txt-box .left {
            width: calc(100% - 720px);
        }
        .content-wrap.traffic .content-section.table .content-txt-box .right {
            max-width: 700px;
        }
        /* - 친환경계획  */
        .content-wrap.eco .content-intro .summary-title{
            width: 35%;
        }
        .content-wrap.eco .content-intro .content-desc{
            width: 65%;
        }
        .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner{
            padding: 40px 0 0;
        }
        .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .left {
            width: calc( 50% - 20px );
        }
        .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .right {
            width: 50%;
        }
        .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .box-outer{
            flex-direction: column;
        }
        .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .box-outer .box{
            width: 100%;
        }
        .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .box-outer .box.big{
            margin: 30px 0 0;
        }
        .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .box-outer .box.big::before {
            left: 50%;
            top: -35px;
            transform: translate(-50%, 0) rotate(90deg);
        }
        /* - 타운매니지먼트 */
        .content-wrap.town .content-intro .summary-title{
            margin: 0;
            width: 38%;
        }
        .content-wrap.town .content-intro .content-desc{
            width: 62%;
        }
        .content-wrap.town .content-section-wrap .content-sections .content-section .section-heading{
            padding: 0 0 40px;
        }
        .content-wrap.town .content-section.why .content-txt-box .top > ul{
            justify-content: center;
        }
        .content-wrap.town .content-section.why .content-txt-box .top > ul > li{
            width: 300px;
        }
        .content-wrap.town .content-section.why .content-txt-box .top > ul > li:nth-child(2){
            margin: 0 10px;
        }
        .content-wrap.town .content-section.why .content-txt-box .top > ul > li .gray{
            padding: 12px 40px 10px;
            word-break: keep-all;
        }
        .content-wrap.town .content-section.why .content-txt-box .top > ul > li .blue{
            margin: 30px auto 0;
            padding: 12px 40px 10px;
            word-break: keep-all;
        }
        .content-wrap.town .content-section.why .content-txt-box .top > ul > li .blue::before {
            top: -24px;
        }
        .content-wrap.town .content-section.core .content-txt-box{
            align-items: flex-start;
        }
        .content-wrap.town .content-section.core .content-txt-box .left {
            width: 50%;
        }
        .content-wrap.town .content-section.core .content-txt-box .right {
            margin-left: 20px;
            margin-top: -20px;
            width: calc( 50% - 20px);
        }
        .content-wrap.plan .content-section-wrap .content-sections .content-section .content-txt-box .chk-list p {
            flex-direction: column;
            align-items: flex-start;
        }

        /* ========== 분양정보 ========== */
        /* - 투자자커뮤니티 */
        .content-wrap.community .info-box {
            margin: 0 0 40px;
            padding: 40px;
        }
        .content-wrap.community .info-box dl dt {
            padding-left: 26px;
            font-size: 1.25rem;
        }
        .content-wrap.community .info-box dl dt::before {
            top: 52%;
            width: 18px;
            height: 18px;
        }
        .content-wrap.community .info-box dl dd {
            padding: 20px 0 0;
        }
        .content-wrap.community .info-box dl dd ul li {
            padding-left: 30px;
            font-size: 1.125rem;
        }
        .content-wrap.community .filter-outer{
            margin: 0 0 40px;
            padding: 40px;
        }
        .content-wrap.community .filter-outer ul li + li {
            margin: 20px 0 0;
            padding: 20px 0 0;
        }
        .content-wrap.community .filter-outer ul li strong {
            font-weight: 500;
        }
        .content-wrap.community .chk-wrap .chk-box input + label {
            padding-left: 8px;
            font-weight: 400;
            font-size: 1.125rem;
        }
        .content-wrap.community .board-table table th {
            padding: 30px 10px;
            font-size: 1.125rem;
        }
        .content-wrap.community .board-table table td {
            font-size: 1.125rem;
        }
        .content-wrap.community .board-table table td img {
            width: 18px;
        }
        .content-wrap.community .insert-form-outer .insert-tit {
            padding: 20px 0;
            font-size: 1.75rem;
        }
        .content-wrap.community .insert-form-outer .insert-tit span {
            position: relative;
            padding-left: 40px;
        }
        .content-wrap.community .insert-form-outer .insert-tit span::before {
            width: 30px;
            height: 30px;
        }
        .content-wrap.community .insert-form-outer ul li {
            padding: 20px 0 0;
        }
        .content-wrap.community .insert-form-outer ul li .tit-box label {
            font-size: 1.25rem;
        }
        .content-wrap.community .insert-form-outer ul li .tit-box label .essen {
            padding-left: 2px;
        }
        .content-wrap.community .insert-form-outer ul li .tit-box .add-txt {
            padding: 0 0 3px 10px;
            font-size: 0.875rem;
        }
        .content-wrap.community .insert-form-outer ul li .chk-wrap {
            padding: 0;
        }
        .content-wrap.community .insert-form-outer ul li .attach-wrap .attach-list strong span {
            font-size: 1rem;
        }
        .content-wrap.community .insert-form-outer ul li .attach-wrap {
            padding: 22px 22px 14px;
        }
        .content-wrap.community .insert-form-outer ul li .attach-wrap strong {
            padding: 10px 0 0;
        }
        .content-wrap.community .insert-form-outer .btn-box {
            padding: 40px 0 0;
        }
        .content-wrap.community .insert-form-outer .btn-box .btn {
            padding: 16px;
            font-size: 1.125rem;
        }
        .content-wrap.community .board-view-content {
            padding: 30px;
            border-radius: 10px;
        }
        .content-wrap.community .board-view-content h3 {
            margin: 0 0 20px;
            padding: 0 0 20px;
        }
        .board-view-footer {
            margin-top: 40px;
        }
        /* - FAQ */
        .faq-answer{
            align-items: flex-start;
            line-height: 1.4;
        }
        /* ========== 홍보센터 ======== */
        /* - 발행물 */
        .grid-list--publication {
            gap: 50px 80px;
        }
        .grid-card--publication {
            gap: 30px;
        }
        .project-step {
            gap: 40px;
        }
        .step-item {
            padding: 20px 25px;
        }
        .step-bubble {
            padding: 20px 30px;
        }

        /* 비전 */
        .project-vision .section-heading {
            text-align: left;
            font-size: 2.5rem;
        }
        .vision-desc {
            font-size: 2rem;
        }
        .goal-title {
            font-size: 2rem;
        }
        .goal-desc {
            font-size: 1.5rem;
        }
        .strategy-title {
            font-size: 2rem;
        }
        .strategy-list {
            gap: 40px;
        }
        .strategy-desc li::before {
            font-size: 1.25rem;
        }

        /* 추진일정 */
        .timeline-year {
            font-size: 3.75rem;
        }
        .timeline-wrap {
            gap: 100px;
        }

        /* 기대효과 */
        .benefit-desc {
            font-size: 2.75rem;
        }
        .benefit-step-title {
            font-size: 2rem;
        }
        .benefit-step-badge {
            font-size: 1.25rem;
        }
        .benefit-intro {
            margin-bottom: 70px;
        }
        .benefit-value {
            font-size: 3.75rem;
        }
        .benefit-step {
            padding-bottom: 0;
        }

        /* 시행자 */
        .developer-org {
            gap: 60px;
        }
        .project-developer h4 {
            font-size: 2rem;
        }
        .developer-desc {
            flex-direction: column;
            gap: 20px;
        }
        .developer-vision {
            width: 100%;
        }

        /* 브랜드 */
        .project-brand .section-heading {
            font-size: 2.75rem;
        }
        .brand-sub-title {
            font-size: 2rem;
        }
        .brand-main-title {
            font-size: 5rem;
        }
        .brand-intro {
            background-size: contain;
        }
        .project-brand h4 {
            font-size: 2rem;
        }
        .brand-slogan-main {
            font-size: 5rem;
        }
        .project-brand h4 {
            font-size: 2rem;
        }
        .brand-symbol-wrap {
            gap: 40px;
        }
        .brand-slogan-main {
            position: static;
        }
        .brand-slogan-visual {
            display: flex;
            gap: 40px;
            width: 100%;
        }
        .brand-slogan-wrap {
            flex-direction: column;
            gap: 40px;
            margin-top: 80px;
        }
        .brand-slogan-wrap {
            align-items: start;
        }
        .brand-logotype-wrap {
            flex-direction: column;
        }
        .brand-logo-visual .logo-item {
            padding: 30px 0;
        }
        .brand-color {
            flex-direction: column;
        }
        .color-list {
            margin-top: 75px;
            width: 100%;
        }






























    }

    @media (max-width: 1340px) {
        .content-wrap {
            max-width: 100%;
        }

    }



    @media (max-width: 1024px) {

        #sub-sticky-list{
            display: none;
        }
        .content-section-wrap .content-sections {
            width: 100%;
        }
        .content-section-wrap .content-sections .plan .btn-go-master-plan{
            margin: 40px 0 0;
        }
        /* - 글로벌 비즈니스 지구 */
        .content-section-wrap .content-sections .headquarter .content-txt-box{
            flex-direction: column;
        }
        .content-wrap.business .content-section-wrap .content-section.headquarter .content-txt-box .left {
            padding: 0 0 20px;
            width: 100%;
        }
        .content-wrap.business .content-section-wrap .content-section.headquarter .content-txt-box .right {
            width: 100%;
        }
        .content-wrap.business .content-section-wrap .content-section.headquarter .content-txt-box ul li img{
            width: 100%;
        }
        .content-wrap.business .content-section-wrap .content-section.hub .content-txt-box .section-heading {
            padding: 60px 0 30px;
        }
        .content-section-wrap .content-sections .potential .content-txt-box{
            flex-direction: column;
        }
        .content-wrap.business .content-section-wrap .content-section.potential .left{
            width: 100%;
        }
        .content-wrap.business .content-section-wrap .content-section.potential .left .section-heading{
            padding: 0 0 20px;
        }
        .content-wrap.business .content-section-wrap .content-section.potential .right{
            width: 100%;
        }
        .content-wrap.business .content-section-wrap .content-section.potential ul li dl dt {
            width: 220px;
            font-weight: 500;
            font-size: 1.75rem;
        }
        .content-wrap.business .content-section-wrap .content-section.potential ul li dl dd {
            width: calc(100% - 220px);
        }
        .content-wrap.business .content-section-wrap .content-section.potential ul li dl dd div {
            font-size: 1.25rem;
        }
        /* - 해외사례비교 */
        .content-wrap.cases .content-intro .bg {
            top: 12%;
        }
        .content-wrap.cases .content-intro ul li{
            margin: 0 0 10px;
        }
        .content-wrap.cases .content-intro ul li p{
            justify-content: center;
            padding-left: 0;
        }
        .content-wrap.cases .content-intro ul li p em {
            margin-right: 5px;
            width: 24px;
            height: 24px;
            line-height: 25px;
            font-weight: 500;
            font-size: 1rem;
        }
        .content-wrap.cases .content-intro ul li p span {
            font-weight: 500;
            font-size: 1rem;
        }
        .content-wrap.cases .content-intro .center-box .section-heading{
            top: 0;
            left: 10px;
        }
        .content-wrap.cases .content-section-wrap .content-section.world ul li:nth-child(2) .txt strong {
            padding: 0;
            font-size: 2rem;
        }
        .content-wrap.cases .content-section-wrap .content-section.world ul li:nth-child(2) .txt p {
            font-weight: 500;
            font-size: 1.25rem;
        }
        .content-wrap.cases .content-section-wrap .content-section.world ul li:nth-child(2) .txt strong em {
            font-size: 2.5rem;
        }
        .content-wrap.cases .content-section-wrap .content-section.world ul li .txt strong em {
            font-size: 1.5rem;
        }
        .content-wrap.cases .content-section-wrap .content-section.world ul li .txt p {
            line-height: 1.1;
            font-size: 1rem;
        }
        .content-wrap.cases .content-section-wrap .content-section.world ul li .txt span {
            font-size: 1rem;
        }
        .content-wrap.cases .content-section-wrap .content-section.world ul li .txt span em {
            font-size: 1.25rem;
        }
        .content-wrap.cases .content-section-wrap .content-section.three .content-txt-box {
            flex-direction: column-reverse;
            align-items: flex-start;
            margin: 0;
        }
        .content-wrap.cases .content-section-wrap .content-section.three .content-txt-box .left{
            margin-bottom: 20px;
            width: 100%;
        }
        .content-wrap.cases .content-section-wrap .content-section.three .content-txt-box .right{
            width: 100%;
        }
        .content-wrap.cases .content-section-wrap .content-section.three .summary-desc {
            padding: 20px 0 0;
            font-weight: 500;
            font-size: 1.25rem;
            color: #101218;
        }
        .content-wrap.cases .content-section-wrap .content-section.three figure img{
            width: 100%;
        }

        /* 개발계획 */
        /* -  개발컨셉 */
        .content-wrap.concept .content-section-wrap .content-sections .content-section.list .summary-text br{
            display: none;
        }
        .content-wrap.concept .content-section-wrap .content-sections .content-section.list .chk-list {
            width: 100%;
        }
        .content-wrap.concept .content-section-wrap .content-sections .content-section.list .chk-list p{
            font-size: 1.125rem;
        }
        .content-wrap.concept .content-section-wrap .content-sections .content-section.list .chk-list p strong{
            font-size: 1.125rem;
        }
        .content-wrap.concept .content-section-wrap .content-sections .content-section.list figure {
            padding-right: 20px;
        }
        .content-wrap.concept .content-section-wrap .content-sections .content-section.list.scd figure {
            padding-right: 20px;
        }
        .content-wrap.concept .content-section-wrap .content-sections .content-section .content-txt-box .chk-list li {
            padding: 6px 0;
        }
        .content-wrap.concept .content-section-wrap .content-sections .content-section.center ul li {
            padding: 30px 20px;
            width: calc((100% - 10px) / 3);
        }
        /* -  마스터플랜 */
        .content-wrap.master .master-plan .content-txt-box{
            flex-direction: column;
        }
        .content-wrap.master .master-plan.land .content-txt-box .left {
            margin-bottom: 20px;
            width:100%;
        }
        .content-wrap.master .master-plan.land .content-txt-box .right{
            width:100%;
            max-width:100%;
        }
        .content-wrap.master .master-plan .content-txt-box .summary-text {
            padding: 40px 0 20px;
        }
        .content-wrap.master .master-plan .content-txt-box .summary-text br{
            display: none;
        }
        .content-wrap.master .master-plan.land .content-txt-box .flex-inner{
            display: flex;
            align-items: center;
            justify-content: flex-start;
        }
        .content-wrap.master .master-plan .content-txt-box .zone-list{
            padding: 0 0 0 20px;
        }
        .content-wrap.master .master-plan.zone .content-txt-box{
            flex-direction: column-reverse;
        }
        .content-wrap.master .master-plan.zone .content-txt-box .right{
            max-width: 100%;
            width: 50%;
            margin: 0 auto;
        }
        .content-wrap.master .master-plan.zone .content-txt-box .left {
            margin-right: 30px;
            width: 100%;
        }
        /* - 녹지계획 */
        .content-wrap.green .content-sections .strategy-list{
            align-items: flex-start;
        }
        .content-wrap.green .content-sections .strategy-list li{
            width: calc((100% - 6px) / 3);
        }
        .content-wrap.green .content-sections .strategy-list li p{
            flex-direction: column;
        }
        .content-wrap.green .content-sections .strategy-list li .txt {
            padding: 20px 10px 20px;
            font-size: 1rem;
        }
        .content-wrap.green .content-section-wrap .content-sections .content-txt-box.city .city-list{
            flex-direction: column;
        }
        .content-wrap.green .content-section-wrap .content-sections .content-txt-box.city .city-list li {
            align-items: center;
            margin: 0 0 10px;
            width: 100%;
        }
        .content-wrap.green .content-section-wrap .content-sections .content-txt-box.city .city-list li figure img{
            width: 100%;
        }

        /* - 교통계획 */
        .content-wrap.traffic .content-section-wrap .content-section.smart .content-txt-box{
            flex-direction: column;
        }
        .content-wrap.traffic .content-section-wrap .content-section.smart .left{
            width: 100%;
        }
        .content-wrap.traffic .content-section-wrap .content-section.smart .right{
            width: 100%;
        }
        .content-wrap.traffic .content-section-wrap .content-section.smart .left .section-heading br{
            display: none;
        }
        .content-wrap.traffic .content-section-wrap .content-sections .content-desc {
            padding: 20px 0 40px;
        }
        .content-wrap.traffic .content-section-wrap .content-section.smart .left .content-desc br{
            display: none;
        }
        .content-wrap.traffic .content-section-wrap .content-sections .traffic-box ul {
            padding: 30px 0 0;
        }
        .content-wrap.traffic .content-section-wrap .content-sections .traffic-box.last {
            padding: 30px 0 0;
        }
        .content-wrap.traffic .content-section.table .content-txt-box{
            flex-direction: column;
        }
        .content-wrap.traffic .content-section.table .content-txt-box .left{
            margin-bottom: 30px;
            width: 100%;
        }
        .content-wrap.traffic .content-section.table .content-txt-box .right {
            max-width: 100%;
        }
        .content-wrap.traffic .content-section.table .content-txt-box .section-heading {
            padding: 0 0 40px;
        }
        .content-wrap.traffic .content-section.table .flex-inner{
            display: flex;
            align-items: center;
            justify-content: flex-start;
        }
        .content-wrap.traffic .content-section.table .flex-inner figure{
            padding-right: 20px;
        }
        .content-wrap.traffic .content-section.table.last figure{
            margin: 0 auto;
            width: 70%;
        }
        .content-wrap.traffic .content-section.table .content-txt-box .summary-title {
            margin: 0 0 40px;
        }
        .content-wrap.traffic .content-section .public-transit-box .box .content-txt-box .left{
            width: 100%;
        }
        .content-wrap.traffic .content-section .public-transit-box .box .content-txt-box .right {
            width: 100%;
        }
        .content-wrap.traffic .content-section.table .box.btm .content-txt-box{
            flex-direction: row;
        }
        .content-wrap.traffic .content-section .content-txt-box.island .right{
            width: calc( 100% - 390px);
        }
        .content-wrap.traffic .content-section .public-transit-box {
            margin: 40px 0 0;
            padding: 30px;
        }

        /* - 첨단물류*/
        .content-wrap.logistics .content-intro {
            flex-direction: column;
            padding: 40px 0 0;
            width: 100%;
        }
        .content-wrap.logistics .content-intro .summary-title {
            width: 100%;
        }
        .content-wrap.logistics .content-intro .summary-title br{
            display: none;
        }
        .content-wrap.logistics .content-intro .content-desc {
            width: 100%;
        }
        .content-wrap.logistics .content-intro .content-desc br{
            display: none;
        }
        .content-wrap.logistics .content-sections .content-section .content-txt-box .box.btm .right {
            padding: 0 0 0 30px;
        }
        /* - 친환경계획 */
        .content-wrap.eco .content-intro {
            flex-direction: column;
            padding: 40px 0 0;
        }
        .content-wrap.eco .content-intro .summary-title {
            width: 100%;
        }
        .content-wrap.eco .content-intro .summary-title br{
            display: none;
        }
        .content-wrap.eco .content-intro .content-desc {
            width: 100%;
        }
        .content-wrap.eco .content-intro .content-desc br{
            display: none;
        }
        .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .img-list{
            flex-direction: column;
        }
        .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .img-list > li{
            width: 100%;
        }
        .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .img-list.scd > li {
            width: 100%;
        }
        .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .img-list img{
            width: 100%;
        }
        .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .box-outer .box{
            padding: 20px;
        }
        .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .right .box {
            padding: 24px;
        }
        .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .right .grade p {
            padding: 15px 20px;
        }
        .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .dl-box {
            padding: 24px;
        }
        .content-wrap.town .content-section.why .content-txt-box .top > ul > li .gray {
            padding: 12px 24px 10px;
        }
        .content-wrap.town .content-section.why .content-txt-box .top > ul > li .blue {
            padding: 12px 24px 10px;
        }
        /* - 타운매니지먼트*/
        .content-wrap.town .content-intro{
            flex-direction: column;
        }
        .content-wrap.town .content-intro .summary-title{
            width: 100%;
        }
        .content-wrap.town .content-intro .content-desc{
            width: 100%;
        }
        /* =========== 분양정보 ========== */
        /* - FAQ */
        .faq-toggle {
            padding: 40px 30px 40px;
            font-size: 1.25rem;
        }
        .faq-panel {
            padding: 0 30px 40px 65px;
        }
        .faq-answer{
            font-size: 1.125rem;
        }
        .faq-qbadge, .faq-abadge {
            margin-right: 8px;
            font-size: 1.75rem;
        }

        /* ========== 홍보센터 ======== */
        /* - 발행물 */
        .grid-list--publication {
            gap: 30px;
        }
        .grid-card--publication {
            gap: 12px;
            padding-bottom: 20px;
        }
        .grid-card--publication .grid-card-date {
            margin-bottom: 8px;
        }
        .grid-card--publication .grid-card-actions {
            gap: 4px;
        }
        .grid-card--publication .grid-card-actions .btn {
            gap: 4px;
            padding: 8px;
            font-size: 0.875rem;
        }
        .grid-card--publication .grid-card-actions .btn-preview::before{
            width: 10px;
            height: 8px;
            background-size: cover;
        }
        .grid-card--publication .grid-card-actions .btn-download::before {
            width: 12px;
            height: 11px;
            background-size: cover;
        }

        /* ========== 사업개요 ======== */
        /* 사업소개 */
        .project-step {
            flex-direction: column;
        }
        .step-item {
            width: auto !important;
            height: 170px;
        }
        .step-method {
            /*width: fit-content;*/
            width: 100%;
        }
        .step-bubble {
            flex: auto;
            height: 170px;
        }
        .step-bubble, .step-list {
            margin:25px auto;
        }
        .project-summary {
            margin-bottom: 70px;
        }
        .project-map {
            margin-bottom: 70px;
        }
        .project-partners {
            margin-bottom: 70px;
            padding-top: 70px;
        }
        .space-separator {
            margin-top: 70px;
            padding-top: 70px;
        }

        /* 추진일정 */
        .timeline-wrap {
            gap: 60px;
            flex-direction: column;
        }
        .timeline-intro {
            display: block;
        }

        /* 기대효과 */
        .benefit-list {
            flex: 0 75%;
        }

        /* 브랜드 */
        .brand-symbol-wrap {
            flex-direction: column;
        }
        .brand-symbol-desc {
            align-items: center;
        }
        .brand-symbol-list {
            margin: 0 auto;
        }
        .brand-name-meaning li {
            padding: 0 30px 45px;
        }
        .brand-slogan-main {
            font-size: 4rem;
        }
        .logotype-symbol-wrap {
            flex-direction: column;
            gap: 50px;
        }
        .logotype-symbol-wrap .symbol-set:first-child {
            width: 100%;
        }
        .brand-main-title {
            display: block;
            line-height: 1.2;
            margin-top: 20px;
            text-decoration: underline;
            text-decoration-thickness: 2px;
        }
        .brand-main-title::after {
            display: none;
        }

















    }


    @media (max-width: 768px) {

        :root {
            --page-padding-x: 15px;
        }
        .sub-content-title {
            font-size: 1.5rem;/* 251121 변경 */
        }
        .project-heading {
            font-size: 1.5rem;
        }
        .content-intro .content-desc {
            margin-top: 20px;
            line-height: 1.4;
            font-size: 1rem;
        }
        .content-intro .content-desc br{
            display: none;
        }
        .content-section-wrap {
            position: relative;
            margin: 40px 0 0;
            padding: 40px 0 0;
        }
        .section-heading {
            line-height: 1.3;
            font-size: 1.25rem;
        }
        .sub-hero {
            /* height: 82.89vw; */
            height: 330px;
        }
        .sub-hero-bg {
            top: 220px;
            width: calc(100% - 30px);
            /* height: 60.5vw; */
            height: 230px;
        }
        .dropdown-nav {
            max-width: 100%;
            width: calc(100% - 30px);
        }
        .sub-hero-inner .page-title {
            padding-top: 45px;
        }
        .sub-hero-inner .page-title .page-subtitle {
            font-size: 0.9375rem;
        }
        .sub-hero-inner .page-title .page-main-title {
            font-size: 2.5rem;
        }


        .content-section-wrap .content-sections .content-section +.content-section {
            margin-top: 40px;
            padding-top: 40px;
        }
        .content-section-wrap .content-sections .herb .summary-title {
            font-size: 1.125rem;
            font-weight: 500;
            line-height: 1.3;
        }
        .content-section-wrap .content-sections .content-tit-box{
            flex-direction: column;
        }
        .content-wrap.location .content-section-wrap .content-sections .content-txt-box{
            flex-direction: column-reverse;
        }
        .content-section-wrap .content-sections .left{
            width: 100%;
        }
        .content-section-wrap .content-sections .content-section.infra .left{
            padding: 0 0 20px;
        }
        .content-section-wrap .content-sections .right{
            width: 100%;
        }
        .content-section-wrap .content-sections .content-txt-box figure img{
            width: 100%;
        }
        .content-section-wrap .content-sections .content-tit-box{
            padding: 0 0 20px;
        }
        .content-section-wrap .content-sections .content-tit-box .section-heading{
            width: 100%;
        }
        .content-section-wrap .content-sections .content-section .leading-text-box {
            margin: 30px 0 0;
        }
        .content-section-wrap .content-sections .content-section .leading-text-box p {
            font-size: 1.125rem;
        }
        .content-section-wrap .content-sections .content-section .leading-text-box p::before {
            left: -16px;
            top: 22%;
            width: 16px;
            height: 11px;
        }
        .content-section-wrap .content-sections .content-section .leading-text-box p::after {
            right: -16px;
            top: 22%;
            width: 16px;
            height: 11px;
        }
        .content-section-wrap .content-sections .summary-text {
            font-size: 0.875rem;
        }
        .content-section-wrap .content-sections .summary-text strong{
            font-weight: 500;
        }
        .content-section-wrap .content-sections .summary-text br{
            display: none;
        }
        /* ========== 정주환경 ========== */
        .content-wrap.environment .content-section-wrap .content-sections .right .summary-title {
            margin: 10px 0 20px;
        }
        .content-wrap.environment .content-section-wrap .content-sections .content-tit-box .summary-title{
            margin: 10px 0 20px;
        }
        .content-wrap.environment .content-section-wrap .content-sections .summary-title{
            margin: 10px 0 20px;
            line-height: 1.3;
            font-weight: 500;
            font-size: 1rem;
        }
        .content-section-wrap .content-sections .herb .content-tit-box {
            padding: 0;
        }
        .content-section-wrap .content-sections .herb .summary-title{
            width: 100%;
        }
        .content-section-wrap .content-sections .herb .content-txt-box > div{
            width: 100%;
        }
        .content-section-wrap .content-sections .herb .content-txt-box .figure-txt{
            padding: 10px 0 20px;
            width: 100%;
            font-size: 0.875rem;
        }
        .content-section-wrap .content-sections .mobility .content-txt-box{
            padding: 0 0 20px;
        }
        .content-section-wrap .content-sections .infra .right ul{
            flex-direction: column;
        }
        .content-section-wrap .content-sections .infra .right ul li {
            padding-bottom:0;
            width: 100%;
        }
        .content-section-wrap .content-sections .infra .right ul li + li{
            margin-top: 20px;
        }
        .content-section-wrap .content-sections .infra .right ul li:nth-child(2) {
            margin: 20px 0 0;
        }
        .content-section-wrap .content-sections .infra .right ul li:nth-child(4) {
            margin: 20px 0 0;
        }
        .content-section-wrap .content-sections .safe .content-txt-box{
            padding: 0 0 20px;
        }
        .content-section-wrap .content-sections .safe ul{
            flex-direction: column;
        }
        .content-section-wrap .content-sections .safe ul li {
            width: 100%;
        }
        .content-section-wrap .content-sections .safe ul li + li{
            margin-top: 20px;
        }
        .content-section-wrap .content-sections ul li img{
            width: 100%;
        }
        .content-section-wrap .content-sections ul li dl {
            padding: 10px 0 0;
        }
        .content-section-wrap .content-sections ul li dl dt {
            padding: 0 0 4px;
            font-weight: 500;
            font-size: 1rem;
        }
        .content-section-wrap .content-sections ul li dl dd {
            font-size: 0.875rem;
        }
        .btm-environ-box {
            margin: 40px 0 0;
            width: calc(100vw - 30px);
            border-radius: 6px;
        }
        .btm-environ-box .btm-environ-box-inner {
            padding: 50px 30px;
        }
        .btm-environ-box .btm-environ-box-inner .section-heading {
            padding: 0 0 20px;
        }
        .btm-environ-box .btm-environ-box-inner ul{
            flex-direction: column;
        }
        .btm-environ-box .btm-environ-box-inner ul li{
            width: 100%;
            border-radius: 6px;
        }
        .btm-environ-box .btm-environ-box-inner ul li + li{
            margin: 8px 0 0;
        }
        .btm-environ-box .btm-environ-box-inner ul li a {
            padding: 16px 0;
            font-size: 0.875rem;
            border-radius: 6px;
            font-weight: 400;
        }
        .content-section-wrap .content-sections .artband .content-txt-box .left {
            padding: 0 0 20px;
            width: 100%
        }
        .content-section-wrap .content-sections .section-heading em{
            font-size: 1.25rem;
        }
        .content-section-wrap .content-sections .sky .content-txt-box{
            flex-direction: column;
        }
        .content-section-wrap .content-sections .sky .content-txt-box .left {
            padding: 0 0 20px;
            width: 100%;
        }
        .content-section-wrap .content-sections .nature .content-txt-box {
            padding: 0 0 20px;
        }
        .content-section-wrap .content-sections .nature ul{
            flex-direction: column;
        }
        .content-section-wrap .content-sections .nature ul li {
            width: 100%;
        }
        .content-section-wrap .content-sections .nature ul li + li{
            margin-top: 20px;
        }
        .content-section-wrap .content-sections .plan .btn-go-master-plan{
            margin: 20px 0;
        }
        .content-section-wrap .content-sections .plan .btn-go-master-plan span {
            position: relative;
            padding-right: 24px;
            font-weight: 400;
            font-size: 0.875rem;
        }
        .content-section-wrap .content-sections .plan .right{
            padding-top: 10px;
        }
        .content-section-wrap .content-sections .future .right{
            padding-top: 10px;
        }
        .content-section-wrap .content-sections .plan .box .figure-caption {
            align-items: flex-end;
            padding: 10px 0 20px;
        }
        .content-section-wrap .content-sections .plan .box .figure-caption span {
            padding: 0 0 0 26px;
            font-size: 0.875rem;
        }
        .content-section-wrap .content-sections .plan .box .figure-caption em {
            padding-left: 3px;
            font-size: 0.875rem;
        }
        .content-section-wrap .content-sections .plan .box.btm .figure-caption{
            padding: 10px 0 0;
        }
        .content-section-wrap .content-sections .walk .content-tit-box{
            padding: 0;
        }
        .content-section-wrap .content-sections .walk .content-txt-box{
            flex-direction: column-reverse;
        }
        .content-section-wrap .content-sections .walk .content-txt-box .right{
            margin-bottom: 20px;
            width: 100%;
        }
        .content-section-wrap .content-sections .future .content-txt-box ul li {
            width: 100%;
        }
        .content-section-wrap .content-sections .future .content-txt-box ul li + li{
            margin-top: 20px;
        }
        .content-section-wrap .content-sections .future .content-txt-box ul li:nth-child(2){
            margin: 20px 0 0;
        }
        .content-section-wrap .content-sections .future .content-txt-box ul li:nth-child(4){
            margin: 20px 0 0;
        }
        .content-section-wrap .content-sections .housing .content-txt-box {
            padding: 0 0 20px;
        }
        .content-section-wrap .content-sections .housing .content-txt-box .right{
            margin-top: 10px;
        }
        .content-section-wrap .content-sections .education .content-tit-box{
            padding: 0;
        }
        .content-section-wrap .content-sections .education .content-txt-box{
            flex-direction: column-reverse;
        }
        .content-section-wrap .content-sections .education .right {
            padding: 0 0 20px;
            width: 100%;
        }
        .content-section-wrap .content-sections .medical .content-tit-box{
            padding: 0;
        }
        .content-section-wrap .content-sections .medical .left{
            padding: 0 0 20px;
        }
        .content-section-wrap .content-sections .culture .content-txt-box{
            flex-direction: column-reverse;
        }
        .content-section-wrap .content-sections .culture .right {
            padding: 0 0 20px;
            width: 100%;
        }

        /* ========== 입지 ========== */

        /* - 헤리티지 */
        .content-wrap.location .content-section-wrap .content-sections .content-tit-box{
            padding: 0 0 10px;
        }
        .content-wrap.location .content-section-wrap .content-sections .content-tit-box .section-heading{
            font-size: 1.25rem;
        }
        .content-wrap.location .content-section-wrap .content-sections .summary-title {
            line-height: 1.3;
            font-weight: 500;
            font-size: 1rem;
        }
        .content-wrap.location .content-section-wrap .content-sections .summary-text{
            font-size: 0.875rem;
        }
        .content-wrap.location .content-section-wrap .content-sections .left .leading-text-box {
            margin: 20px 0 0;
            text-align: center;
        }
        .content-wrap.location .content-section-wrap .content-sections .left .leading-text-box p br{
            display: none;
        }
        .content-wrap.location .content-section-wrap .content-sections .left .leading-text-box p::before {
            left: -22px;
            top: 22%;
            transform: translateY(-50%);
        }
        .content-wrap.location .content-section-wrap .content-sections .left .leading-text-box p::after {
            right: -22px;
            left: initial;
            bottom: initial;
            top: 22%;
            transform: translateY(-50%);
        }
        .content-section-wrap .content-sections .gateway .left{
            padding: 20px 0 0;
        }
        .content-section-wrap .content-sections .trade .left{
            padding: 20px 0 0;
        }
        .content-section-wrap .content-sections .railway .left{
            padding: 20px 0 0;
        }
        .content-wrap.location .content-section-wrap .content-sections .modern figure {
            padding: 20px 0 0;
        }
        .content-wrap.location.transport .content-section-wrap .content-section .content-txt-box{
            flex-direction: column;
        }
        .content-wrap.location.business .content-section-wrap .content-section .content-txt-box{
            flex-direction: column;
        }
        /* - 교통의 중심 */
        .content-wrap.transport .content-intro .content-desc em {
            padding: 1px 6px 0;
            font-size: 0.875rem;
        }
        .content-wrap.transport .content-intro {
            padding: 0 0 20px;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.access .right .pos-txt strong {
            padding: 0;
            max-width: initial;
            width: 100%;
            height: 50px;
            line-height: 50px;
            font-weight: 500;
            font-size: 1rem;
            border-radius: 6px;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.access .right .pos-txt strong.first {
            margin-right: 0;
            margin-bottom: 20px;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.access .right .pos-txt strong.first::after {
            right: initial;
            top: initial;
            left: 45%;
            bottom: -27px;
            width: 14px;
            height: 20px;
            transform: rotate(90deg) translate(-50%, -50%);
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.access .right .pos-txt strong img {
            height: 16px;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.access .right .method-txt {
            justify-content: center;
            padding: 20px 0 0;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.access .right .method-txt p {
            width: 50%;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.access .right .method-txt p em {
            font-weight: 500;
            font-size: 1rem;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.access .right .method-txt p em.car {
            padding-left: 40px;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.access .right .method-txt p em.car::before {
            width: 28px;
            height: 24px;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.access .right .method-txt p em.public {
            padding-left: 66px;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.access .right .method-txt p em.public::before {
            width: 54px;
            height: 24px;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.access .right .method-txt p span {
            padding: 8px 0 0;
            font-weight: 500;
            font-size: 1rem;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.access .right .btm {
            padding: 30px 0 0;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.whole .summary-title {
            margin-bottom: 10px;
            padding: 20px 0 0;
            font-weight: 500;
            font-size: 1rem;
            color: #101218;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.whole .summary-title strong{
            font-weight: 500;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.whole .summary-title br{
            display: none;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.whole .list li {
            padding: 15px 0;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.whole .list li p{
            padding-left: 20px;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.whole .list li p::before {
            top: 3px;
            width: 13px;
            height: 15px;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.whole .list li p strong{
            padding-right: 20px;
            width: auto;
            font-weight: 500;
            font-size: 0.875rem;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.whole .list li p span {
            font-size: 0.875rem;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.whole img {
            margin: 0 auto;
            width: 40%;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box {
            flex-direction: column;
            padding: 20px 0 0;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box ul li + li {
            margin: 12px 0 0;
            padding: 12px 0 0;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.btm {
            flex-direction: column;
            padding: 30px 0 0;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.btm .summary-title{
            font-weight:500;
            font-size: 1rem;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.btm .right {
            padding-left: 0;
            padding-top: 20px;
        }
        /*.content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.btm .summary-title br{*/
        /*    display: none;*/
        /*}*/
        .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.btm dl dt::before{
            top: 1px;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.btm li:nth-child(1) dl dt::before {
            width: 18px;
            height: 20px;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.btm li:nth-child(2) dl dt::before {
            width: 22px;
            height: 20px;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.btm li:nth-child(3) dl dt::before {
            width: 20px;
            height: 20px;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.btm dl dt {
            padding-left: 30px;
            font-weight: 500;
            font-size: 0.875rem;;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.btm dl dd {
            font-size: 0.875rem;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.btm .list {
            padding: 0;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.btm .list li strong{
            padding-right: 20px;
            width: auto;
            font-weight: 500;
            font-size: 0.875rem;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.btm .list li strong em {
            font-weight: 500;
            font-size: 0.875rem;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.btm .list li strong br{
            display: none;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.btm .list li span {
            width: auto;
            font-size: 0.875rem;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.btm .list li span br{
            display: none;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.btm .btm_box {
            flex-direction: column-reverse;
            margin-top: 0;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.btm .btm_box .left{
            width: 100%;
            padding: 12px 0 0;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.btm .btm_box .right{
            width: 100%;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section .section-heading {
            font-size: 1.25rem;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.whole .left {
            width: 100%;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.whole .content-txt-box {
            margin-top: 0;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.whole .list{
            max-width: 100%;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.whole .right {
            width: 100%;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.top img{
            margin: 0 auto;
            width: 80%;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.top .right{
            padding: 20px 0 0 0;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.top dl dt {
            font-size: 1rem;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.top dl dd {
            font-size: 0.875rem;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.btm .left {
            padding-top: 20px;
            padding-right: 0;
            width: 100%;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.btm .right{
            padding: 0;
            width: 100%;
        }
        .content-wrap.transport .content-section-wrap .content-sections .content-section.seoul .box.btm .right img{
            margin: 0 auto;
            width: 80%;
        }

        /* 친환경 녹지 네트워크 */
        .content-wrap.green .content-section-wrap .content-section.network .summary-title {
            font-size: 1.25rem;
        }
        .content-wrap.green .content-section-wrap .content-section.network .summary-text {
            font-size: 1rem;
        }
        .content-wrap.green .content-section-wrap .content-section.network figure{
            margin: 20px 0;
        }
        .content-wrap.green .content-section-wrap .content-section.downtown .content-tit-box{
            padding: 0 0 20px;
        }
        .content-wrap.green .content-section-wrap .content-section.downtown .content-tit-box .section-heading {
            text-align: left;
            font-size: 1.25rem;
        }
        .content-wrap.green .content-section-wrap .content-section.downtown .content-tit-box .summary-title {
            text-align: left;
            font-size: 1rem;
        }
        /* 글로벌 비즈니스 지구 */
        .content-wrap.business .content-section-wrap .content-section.headquarter .content-txt-box ul {
            flex-direction: column;
        }
        .content-wrap.business .content-section-wrap .content-section.headquarter .content-txt-box ul li {
            width: 100%;
        }
        .content-wrap.business .content-section-wrap .content-section.headquarter .content-txt-box ul li .figure-info {
            margin: 10px 0 20px;
        }
        .content-wrap.business .content-section-wrap .content-section.headquarter .content-txt-box ul li .figure-info p{
            font-size: 0.875rem;
        }
        .content-wrap.business .content-section-wrap .content-section.headquarter .content-txt-box ul li .figure-info p br{
            display: none;
        }
        .content-wrap.business .content-section-wrap .content-section.headquarter .content-txt-box ul li .figure-info em {
            width: 24px;
            font-weight: 700;
            font-size: 0.875rem;
        }
        .content-wrap.business .content-section-wrap .content-section.headquarter .content-txt-box ul li:nth-child(2){
            margin-top: 0;
        }
        .content-wrap.business .content-section-wrap .content-section.headquarter .content-txt-box ul li:nth-child(3){
            margin-top: 0;
        }
        .content-wrap.business .content-section-wrap .content-section.headquarter .content-txt-box ul li:nth-child(5){
            margin-top: 0;
        }
        .content-wrap.business .content-section-wrap .content-section.hub .content-txt-box{
            justify-content: flex-start;
        }
        .content-wrap.business .content-section-wrap .content-section.hub .content-txt-box .section-heading {
            padding: 10px 0 20px;
            text-align: left;
            font-weight: 500;
            font-size: 1rem;
        }
        .content-wrap.business .content-section-wrap .content-section.hub .content-txt-box .section-heading br{
            display: none;
        }
        .content-wrap.business .content-section-wrap .content-section.hub .content-txt-box .section-heading strong{
            font-weight: 500;
        }
        .content-wrap.business .content-section-wrap .content-section.hub .content-txt-box img{
            width: 100%;
        }
        .content-wrap.business .content-section-wrap .content-section.hub .content-txt-box figure p {
            padding: 8px 0 0;
            font-size: 0.875rem;
        }
        .content-wrap.business .content-section-wrap .content-section.potential .left .section-heading {
            padding: 0 0 10px;
        }
        .content-wrap.business .content-section-wrap .content-section.potential ul li + li {
            padding-top: 20px;
        }
        .content-wrap.business .content-section-wrap .content-section.potential ul li dl{
            flex-direction: column;
        }
        .content-wrap.business .content-section-wrap .content-section.potential ul li dl dt {
            width: 100%;
            font-size: 1.125rem;
        }
        .content-wrap.business .content-section-wrap .content-section.potential ul li dl dd {
            width: 100%
        }
        .content-wrap.business .content-section-wrap .content-section.potential ul li dl dd div {
            padding: 0 0 10px;
            font-size: 0.875rem;
        }
        .content-wrap.business .content-section-wrap .content-section.potential ul li dl dd p {
            padding-bottom: 10px;
        }
        .content-wrap.business .content-section-wrap .content-section.potential ul li dl dd p strong {
            padding-right: 20px;
            font-weight: 500;
            font-size: 0.875rem;
        }
        .content-wrap.business .content-section-wrap .content-section.potential ul li dl dd p span {
            font-size: 0.875rem;
        }

        /* - 해외사례비교 */
        .content-wrap.cases .content-intro .summary{
            margin-left: 0;
        }
        .content-wrap.cases .content-intro .summary .summary-title {
            margin-bottom: 10px;
            font-size: 1.125rem;
        }
        .content-wrap.cases .content-intro .summary .summary-text {
            font-size:0.875rem;
        }
        .content-wrap.cases .content-intro .summary .summary-text br{
            display: none;
        }
        .content-wrap.cases .content-intro .bg {
            position: relative;
            top: 0;
            padding: 10px 0 0;
        }
        .content-wrap.cases .content-intro .bg img{
            opacity: 1;
        }
        .content-wrap.cases .content-intro ul {
            /* flex-direction: column; */
            align-items: flex-start;
            padding: 20px 0 0;
            width: 100%;
        }
        .content-wrap.cases .content-intro ul li{
            width:33.333%;
        }
        .content-wrap.cases .content-intro ul li img{
            width: 100%;
        }
        .content-wrap.cases .content-intro ul.global_list li img{
            margin: 0 auto;
            width: 100%;
        }
        .content-wrap.cases .content-intro ul li p{
            margin-top: -2%;
            align-items: flex-start;
        }
        .content-wrap.cases .content-intro ul li p span{
            font-size: 0.6rem;
            line-height: 1.3;
        }
        .content-wrap.cases .content-intro ul li p em {
            margin-right: 2px;
            width: 12px;
            height: 12px;
            line-height: 13px;
            font-size: 0.5rem;
        }
        .content-wrap.cases .content-intro .center-box .section-heading{
            top: 10px;
            left: 10px;
            font-weight: 500;
            font-size: 1rem;
            padding-bottom: 0;
        }
        .content-wrap.cases .content-intro .center-box .section-heading span::after {
            height: 1px;
        }
        .content-wrap.cases .content-intro .center-box {
            position: relative;
            margin: 30px auto 0;
        }
        .content-wrap.cases .content-section-wrap .content-section.world .content-tit-box {
            padding: 0 0 20px;
        }
        .content-wrap.cases .content-section-wrap .content-section.world .summary-desc {
            line-height: 1.4;
            font-size: 0.875rem;
        }
        .content-wrap.cases .content-section-wrap .content-section.world .summary-desc strong {
            font-weight: 500;;
        }
        .content-wrap.cases .content-section-wrap .content-section.world ul li:nth-child(2) {
            margin: 0 12px;
        }
        .content-wrap.cases .content-section-wrap .content-section.world ul li:nth-child(2)::before {
            left: -10px;
            width: 10px;
            height: 15px;
        }
        .content-wrap.cases .content-section-wrap .content-section.world ul li:nth-child(2)::after {
            right: -10px;
            width: 9px;
            height: 12px;
        }

        .content-wrap.cases .content-section-wrap .content-section.world ul li:nth-child(2) .txt p {
            font-size: 0.75rem;
        }
        .content-wrap.cases .content-section-wrap .content-section.world ul li:nth-child(2) .txt strong em {
            font-size: 1.125rem;
        }
        .content-wrap.cases .content-section-wrap .content-section.world ul li:nth-child(2) .txt strong {

            font-size: 0.875rem;
        }
        .content-wrap.cases .content-section-wrap .content-section.world ul li .txt p {
            line-height: 1;
            font-size: 0.75rem;
        }
        .content-wrap.cases .content-section-wrap .content-section.world ul li .txt strong {
            padding: 4px 0 0;
            line-height: 1;
            font-size: 0.75rem;
        }
        .content-wrap.cases .content-section-wrap .content-section.world ul li .txt strong em {
            font-size: 1rem;
        }
        .content-wrap.cases .content-section-wrap .content-section.world ul li .txt span{
            font-size: 0.75rem;
        }
        .content-wrap.cases .content-section-wrap .content-section.world ul li .txt span br{
            display: none;
        }
        .content-wrap.cases .content-section-wrap .content-section.world ul li .txt span em {
            font-weight: 500;
            font-size: 1rem;
        }
        .content-wrap.cases .content-section-wrap .content-section.three .summary-desc {
            margin-bottom: 20px;
            padding: 10px 0 0;
            font-size: 0.875rem;
        }
        .content-wrap.cases .content-section-wrap .content-section.three .summary-desc br{
            display: none;
        }
        .content-wrap.cases .content-section-wrap .content-section.three figure .caption {
            padding: 0 0 2px;
            font-size: 0.75rem;
        }
        /* ========== 개발계획 ========== */
        /* - 개발컨셉 */
        .content-wrap.concept .content-intro .project-heading {
            font-size: 1.5rem;
        }
        .content-wrap.concept .content-intro figure {
            position: relative;
            padding-top: 40px;
        }
        .content-wrap.concept .content-intro figure .figure-tit {
            right: 10px;
            top: 10px;
        }
        .content-wrap.concept .content-intro figure p {
            text-align: right;
            font-size: 0.875rem;
        }
        .content-wrap.concept .content-section-wrap .content-sections .content-section.first .content-txt-box figure img {
            width: 100%;
        }
        .content-wrap.concept .content-section-wrap .content-sections .content-section.first .content-txt-box .right {
            padding: 10px 0 0;
        }
        .content-wrap.plan .content-section-wrap .content-sections .content-section .content-txt-box .chk-list p {
            padding-left: 20px;
            font-weight: 400;
            font-size: 0.875rem;
        }
        .content-wrap.plan .content-section-wrap .content-sections .content-section .content-txt-box .chk-list p::before {
            top: 6px;
            width: 10px;
            height: 8px;
        }
        .content-wrap.concept .content-section-wrap .content-sections .content-section .content-txt-box .chk-list li {
            padding: 2px 0;
        }
        .content-wrap.concept .content-section-wrap .content-sections .content-section.list .chk-list p strong {
            width: auto;
            font-weight: 500;
            font-size: 0.9375rem;
        }
        .content-wrap.concept .content-section-wrap .content-sections .content-section.list .en {
            font-size: 1.125rem;
        }
        .content-wrap.concept .content-section-wrap .content-sections .content-section.list .summary-text {
            padding: 10px 0;
            font-size: 1rem;
        }
        .content-wrap.concept .content-section-wrap .content-sections .content-section.list .flex-inner {
            align-items: flex-start;
            flex-direction: column;
        }
        .content-wrap.concept .content-section-wrap .content-sections .content-section.list.scd .flex-inner{
            flex-direction: column-reverse;
        }
        .content-wrap.concept .content-section-wrap .content-sections .content-section.list figure {
            width: 100%;
            padding-right: 0;
            padding-bottom: 10px;
        }
        .content-wrap.concept .content-section-wrap .content-sections .content-section.center .section-heading{
            text-align: left;
        }
        .content-wrap.concept .content-section-wrap .content-sections .content-section.center ul{
            flex-direction: column;
        }
        .content-wrap.concept .content-section-wrap .content-sections .content-section.center ul li{
            padding: 15px;
            width: 100%;
        }
        .content-wrap.concept .content-section-wrap .content-sections .content-section.center ul li + li{
            margin-top: 4px;
        }
        .content-wrap.concept .content-section-wrap .content-sections .content-section.center ul li:nth-child(2){
            margin: 10px 0 0;
        }
        .content-wrap.concept .content-section-wrap .content-sections .content-section.center ul li dl dt {
            padding: 0 0 10px;
            font-weight: 500;
            font-size: 1rem;
        }
        .content-wrap.concept .content-section-wrap .content-sections .content-section.center ul li dl dt::after {
            bottom: 5px;
            width: 3px;
            height: 3px;
        }
        .content-wrap.concept .content-section-wrap .content-sections .content-section.center ul li dl dd {
            font-size: 0.875rem;
        }
        /* - 마스터플랜  */
        .content-wrap.master .content-intro figure {
            padding-top: 20px;
        }
        .content-wrap.master .master-plan .content-txt-box {
            padding: 30px 0 0;
        }
        .content-wrap.master .master-plan .content-txt-box .summary-text {
            padding: 20px 0 10px;
            font-size: 1rem;
        }
        .content-wrap.master .master-plan .content-txt-box .zone-list {
            padding: 0 0 0 10px;
        }
        .content-wrap.master .master-plan .content-txt-box .zone-list li {
            padding: 4px 0;
            font-size: 0.875rem;
        }
        .content-wrap.plan table th{
            font-weight: 500;
            font-size: 0.875rem;
        }
        .content-wrap.plan table td.bd{
            font-weight: 500;
        }
        .content-wrap.plan table td{
            font-size: 0.875rem;
        }
        .content-wrap.master .master-plan.land .content-txt-box .right{
            width: 100%;
            max-width: 100%;
        }
        .content-wrap .table-outer{
            overflow-x: auto;
        }
        .content-wrap .table-outer table{
            min-width: 780px;
            width: 100%;
        }
        .content-wrap.master .master-plan.zone .content-txt-box .right{
            width: 100%;
        }
        .content-wrap.master .master-plan.zone .content-txt-box .right figure{
            width: 100%;
        }
        .content-wrap.master .master-plan.zone .content-txt-box .right figure img{
            width: 100%;
        }
        .content-wrap.master .master-plan.zone .content-txt-box .right figure .figure-txt{
            width: 100%;
        }
        .content-wrap.master .master-plan.zone .content-txt-box .right figure .figure-txt p {
            margin: 10px 0 0;
            padding: 7px 12px 6px;
            font-weight: 500;
            font-size: 0.875rem;
        }
        .content-wrap.master .master-plan.zone .content-txt-box .right figure .figure-txt span{
            font-size: 0.75rem;
        }
        .content-wrap.master .master-plan .zone-detail-list li {
            padding: 20px 0;
        }
        .content-wrap.master .master-plan .zone-detail-list li{
            flex-direction: column;
        }
        .content-wrap.master .master-plan .zone-detail-list li .initial {
            width: 100%;
        }
        .content-wrap.master .master-plan .zone-detail-list li .info {
            padding: 15px 0 0;
            width: 100%;
        }
        .content-wrap.master .master-plan .zone-detail-list li .initial .tit {
            padding: 2px 0;
            width: 140px;
            font-weight: 500;
            font-size: 1rem;
        }
        .content-wrap.master .master-plan .zone-detail-list li .initial img {
            margin: 12px auto 0;
        }
        .content-wrap.master .master-plan .zone-detail-list li .info dt {
            padding: 0 0 10px;
            font-weight: 500;
            font-size: 0.875rem;
        }
        .content-wrap.master .master-plan .zone-detail-list li .info dd p strong {
            width: 50px;
            font-weight: 500;
            font-size: 0.875rem;
        }
        .content-wrap.master .master-plan .zone-detail-list li .info dd p span {
            font-size: 0.875rem;
        }
        .content-wrap.master .master-plan .zone-detail-list li .initial span {
            padding: 5px 0 0;
            font-size: 0.75rem;
        }
        .content-wrap.master .master-plan .zone-detail-list li .info dd p span em {
            margin: -2px 7px 0 0;
            padding: 0;
            width: 60px;
            font-size: 0.68rem;
        }
        .content-wrap.master .master-plan.zone {
            margin: 40px 0 0;
            padding: 40px 0 0;
        }
        .content-wrap.master .master-plan.zone .zone-box {
            margin: 20px 0 0;
            padding: 40px 0 0;
        }
        .content-wrap.master .master-plan.zone .zone-box ul li + li {
            padding-top: 20px;
        }
        .content-wrap.master .master-plan.zone .zone-box ul li h4 {
            padding: 0 0 10px;
            font-size: 1.25rem;
        }
        .content-wrap.master .master-plan.zone .zone-box ul li .flex-inner .left{
            flex-direction: column;
        }
        .content-wrap.master .master-plan.zone .zone-box ul li .flex-inner .left img {
            margin-right: 0;
            width: 100%;
        }
        .content-wrap.master .master-plan.zone .zone-box ul li .flex-inner .left .major{
            margin-top: 8px;
            width: 100%;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
        }
        .content-wrap.master .master-plan.zone .zone-box ul li .flex-inner .left .major p {
            margin: 0 2px 4px;
            padding: 6px 0;
            width: 48%;
            font-weight: 500;
            font-size: 0.75rem;
            border-radius: 6px;
        }
        .content-wrap.master .master-plan.zone .zone-box ul li .flex-inner .left .major p + p {
            margin: 0 2px 4px;
        }
        .content-wrap.master .master-plan.zone .zone-box ul li .flex-inner .right {
            margin: 5px 0 0;
        }
        .content-wrap.master .master-plan.zone .zone-box ul li .chk-list p {
            padding-left: 25px;
            font-size: 0.875rem;
        }
        .content-wrap.master .master-plan.zone .zone-box ul li .chk-list p::before {
            left: 5px;
            top: 5px;
            width: 10px;
            height: 8px;
        }
        .content-wrap.master .master-plan.zone .zone-box ul li .chk-list li {
            padding: 4px 0;
        }
        /* - 녹지계획  */
        .content-wrap.green .content-intro .project-heading{
            word-break: keep-all;
        }
        .content-wrap.green .content-section-wrap{
            padding: 20px 0 0;
        }
        .content-wrap.green .content-section .section-heading {
            padding: 0 0 10px;
        }
        .content-wrap.green .content-tit-box .summary-title {
            font-weight: 500;
            font-size: 1.125rem;
        }
        .content-wrap.green .content-tit-box .summary-text{
            padding: 4px 0 0;
            font-size: 0.875rem;
        }
        .content-wrap.green figure .figure-caption {
            padding: 10px 0 20px;
            font-size: 0.875rem;
        }
        .content-wrap.green figure .figure-txt {
            font-size: 0.875rem;
        }
        .content-wrap.green figure .figure-txt strong{
            font-weight: 500;
        }
        .content-wrap.green .content-sections .strategy-list{
            flex-direction: column;
        }
        .content-wrap.green .content-sections .strategy-list li{
            width: 100%;
        }
        .content-wrap.green .content-sections .strategy-list li + li{
            margin-top:8px
        }
        .content-wrap.green .content-sections .strategy-list li p{
            padding: 8px;
            flex-direction: row;
        }
        .content-wrap.green .content-sections .strategy-list li p strong{
            padding-right: 6px;
            font-size: 1rem;
        }
        .content-wrap.green .content-sections .strategy-list li p span {
            padding-right: 10px;
            font-size: 0.875rem;
        }
        .content-wrap.green .content-sections .strategy-list li p strong {
            font-size: 0.875rem;
        }
        .content-wrap.green .content-sections .strategy-list li .txt{
            padding: 12px 10px;
            font-size: 0.875rem;
            border-bottom-left-radius: 20px;
            border-bottom-right-radius: 20px;
        }
        .content-wrap.green .content-sections .strategy-list li .txt strong{
            font-weight: 700;
            color: #101218;
        }
        .content-wrap.green .content-section-wrap .content-sections .content-txt-box.city .summary-title {
            margin: 0 0 10px;
            font-weight: 500;
            font-size: 1.125rem;
        }
        .content-wrap.green .content-section-wrap .content-sections .content-txt-box.city.last {
            margin: 30px 0 0;
            padding: 40px 0 0;
        }
        .content-wrap.green .content-section-wrap .content-sections .content-txt-box.city .city-list{
            width:100%;
        }
        .content-wrap.green .content-section-wrap .content-sections .content-txt-box.city .city-list li{
            flex-direction: column;
        }
        .content-wrap.green .content-section-wrap .content-sections .content-txt-box.city .city-list li figure {
            width: 100%;
        }
        .content-wrap.green .content-section-wrap .content-sections .content-txt-box.city .city-list li dl {
            padding: 6px 0 0;
            width: 100%;
        }
        .content-wrap.green .content-section-wrap .content-sections .content-txt-box.city .city-list li dl dt {
            padding: 0;
            font-weight: 500;
            font-size: 0.875rem;
        }
        .content-wrap.green .content-section-wrap .content-sections .content-txt-box.city .city-list li dl dd {
            font-size: 0.875rem;
        }
        .content-wrap.green .content-section-wrap .content-sections .content-txt-box.city .city-list li dl dd p {
            padding: 0 0 5px;
            font-weight: 400;
            font-size: 0.875rem;
        }
        /* - 교통계획  */
        .content-wrap.traffic .content-section-wrap .content-sections .traffic-box ul li figure {
            width: 42%;
        }
        .content-wrap.traffic .content-section-wrap .content-sections .traffic-box ul li dl {
            margin-left: 10px;
            width: calc(58% - 10px);
        }
        .content-wrap.traffic .content-section-wrap .content-sections .content-desc {
            padding: 10px 0 20px;
            font-size: 1rem;
        }
        .content-wrap.traffic .content-section-wrap .content-sections .traffic-box .section-heading {
            font-weight: 500;
            font-size: 1rem;
        }
        .content-wrap.traffic .content-section-wrap .content-sections .traffic-box .section-heading em {
            font-weight: 500;
            font-size: 1rem;
         }
        .content-wrap.traffic .content-section-wrap .content-sections .traffic-box ul {
            padding: 10px 0 0;
        }
        .content-wrap.traffic .content-section-wrap .content-sections .traffic-box ul li {
            margin: 0 0 8px;
            border-radius: 6px;
        }
        .content-wrap.traffic .content-section-wrap .content-sections .traffic-box ul li dl dt {
            padding: 0;
            font-weight: 500;
            font-size: 0.875rem;
        }
        .content-wrap.traffic .content-section-wrap .content-sections .traffic-box ul li dl dd {
            font-size: 0.75rem;
        }
        .content-wrap.traffic .content-section-wrap .content-sections .traffic-box ul li dl dd br{
            display: none;
        }
        .content-wrap.traffic .content-section-wrap .content-sections .traffic-box.last {
            padding: 20px 0 0;
        }
        .content-wrap.traffic .content-section.table .content-txt-box .section-heading {
            padding: 0 0 10px;
        }
        .content-wrap.traffic .content-section.table .flex-inner{
            flex-direction: column;
        }
        .content-wrap.traffic .content-section.table .flex-inner figure {
            padding-right: 0;
            width: 100%;
        }
        .content-wrap.traffic .content-section.table .chk-list {
            padding: 10px 0 0;
            width: 100%;
        }
        .content-wrap.traffic .content-section.table .chk-list li p strong {
            font-size: 0.875rem;
        }
        .content-wrap.traffic .content-section.table .chk-list li p span {
            font-size: 0.875rem;
        }
        .content-wrap.traffic .content-section.table .content-txt-box .left {
            margin-bottom: 10px;
        }
        .content-wrap.traffic .content-section.table .content-txt-box .summary-title {
            margin: 0 0 10px;
            font-size: 1rem;
            font-weight: 500;
        }
        .content-wrap.traffic .content-section.table.last figure {
            margin: 0;
            width: 100%;
        }
        .content-wrap.traffic .content-section .public-transit-box {
            margin: 20px 0 0;
            padding: 20px;
            border-radius: 6px;
        }
        .content-wrap.traffic .content-section .public-transit-box .box .tit span {
            padding: 5px 25px 5px 32px;
            font-weight: 500;
            font-size: 0.875rem;
        }
        .content-wrap.traffic .content-section .public-transit-box .box .tit span::before {
            left:15px;
            width: 9px;
            height: 8px;
        }
        .content-wrap.traffic .content-section .public-transit-box .box .tit{
            margin: 0 0 10px;
        }
        .content-wrap.traffic .content-section .public-transit-box .box .content-txt-box dl dt {
            padding: 0 0 4px;
            font-weight: 500;
            font-size: 0.875rem;
        }
        .content-wrap.traffic .content-section .public-transit-box .box dl dd {
            font-size: 0.875rem;
        }
        .content-wrap.traffic .content-section .public-transit-box .box .content-txt-box dl {
            padding: 0 0 10px;
        }
        .content-wrap.traffic .content-section .public-transit-box .box.btm {
            margin: 20px 0 0;
            padding: 20px 0 0;
        }
        .content-wrap.traffic .content-section .public-transit-box .box .txt {
            padding: 0 0 20px;
            font-size: 0.875rem;
        }
        .content-wrap.traffic .content-section.table .box.btm .content-txt-box {
            flex-direction: column;
        }
        .content-wrap.traffic .content-section .public-transit-box .box.btm figure {
            width: 100%;
        }
        .content-wrap.traffic .content-section .public-transit-box .box.btm figure .figure-caption {
            padding: 4px 0 10px;
            font-size: 0.75rem;
        }
        .content-wrap.traffic .content-section .content-txt-box.island{
            align-items: flex-start;
        }
        .content-wrap.traffic .content-section .content-txt-box.island .left{
            width: 100%;
        }
        .content-wrap.traffic .content-section .content-txt-box.island .right{
            width: 100%;
        }
        .content-wrap.traffic .content-section .content-txt-box.island .section-heading br{
            display: none;
        }
        .content-wrap.traffic .content-section .content-txt-box.island .content-desc br{
            display: none;
        }
        .content-wrap.traffic .content-section .content-txt-box.island .left figure {
            padding: 0;
        }
        .content-wrap.traffic .content-section .content-txt-box.island figure .figure-caption {
            padding: 4px 0 10px;
            font-size: 0.75rem;
        }
        /* - 스마트시티 */
        .content-wrap.smart .content-section-wrap .content-sections .content-section .summary-title{
            margin: 20px 0 10px;
            font-weight:500;
            font-size: 1rem;
        }
        .content-wrap.smart .content-section.mobility ul{
            flex-direction: column;
        }
        .content-wrap.smart .content-section.mobility ul li{
            padding-bottom: 10px;
            width: 100%;
        }
        .content-wrap.smart .content-section.mobility ul li:nth-child(2) {
            margin: 0;
        }
        .content-wrap.smart .content-section.mobility ul li:nth-child(4) {
            margin: 0;
            padding-bottom: 0;
        }
        .content-wrap.smart .content-section.mobility ul li .figure-caption{
            margin-top: 4px;
            text-align: left;
            font-weight: 400;
            font-size: 0.875rem;
        }
        .content-wrap.smart .content-section.mobility ul li .figure-caption span {
            padding-left: 20px;
        }
        .content-wrap.smart .content-section.mobility ul li .figure-caption span br{
            display:none;
        }
        .content-wrap.smart .content-section.mobility ul li .figure-caption em {
            font-size: 0.75rem;
        }
        .content-wrap.smart .content-section.mobility ul li .figure-caption span::before {
            top: 4px;
            width: 12px;
            height: 9px;
        }
        .content-wrap.smart .content-section-wrap .content-sections .content-txt-box{
            padding: 0;
        }
        .content-wrap.smart .content-section-wrap .content-sections .content-section .content-desc {
            padding: 0 0 10px;
            font-size: 0.875rem;
        }
        .content-wrap.smart .content-section-wrap .content-sections .content-section .content-tit-box{
            padding: 0;
        }
        .content-wrap.smart .content-section-wrap .content-sections .content-section.data .content-tit-box .content-desc{
            margin-top: 20px;
        }
        .content-wrap.smart .content-section-wrap .content-sections .content-section.data .section-heading br{
            display: none;
        }
        .content-wrap.smart .content-section-wrap .content-sections .content-section.data .section-heading span {
            display: block;
            font-size: 1.25rem;
            color: #878b9d;
        }
        .content-wrap.smart .content-section-wrap .content-sections .content-section.data .section-heading span{
            display: block;
        }
        .content-wrap.smart .content-section-wrap .content-sections .content-section.data .content-txt-box div{
            margin-bottom: 10px;
            width: 100%;
        }
        /* - 첨단물류 */
        .content-wrap.logistics .content-intro .summary-title {
            padding:0 0 10px;
            line-height: 1.5;
            font-weight: 500;
            font-size: 1.25rem;
        }
        .content-wrap.logistics .content-sections .content-section.fast .content-tit-box .summary-title{
            line-height: 1.4;
        }
        .content-wrap.logistics .content-sections .content-section.fast .content-tit-box .summary-title.first{
            margin:15px 0 0;
        }
        .content-wrap.logistics .content-sections .content-section.fast .content-tit-box .summary-title span {
            display: inline-block;
            font-size: 1rem;
        }
        .content-wrap.logistics .content-sections .content-section.fast .content-tit-box .summary-title strong {
            font-weight: 500;
            font-size: 1rem;
        }
        .content-wrap.logistics .content-sections .content-section .content-tit-box{
            padding: 0 0 10px;
        }
        .content-wrap.logistics .content-sections .content-section .content-txt-box .box.btm .flex-inner{
            flex-direction: column;
            border-radius: 10px;
        }
        .content-wrap.logistics .content-sections .content-section .content-txt-box .box.btm .flex-inner img{
            border-radius: 10px;
        }
        .content-wrap.logistics .content-sections .content-section .content-txt-box .box.btm .right {
            padding: 12px;
        }
        .content-wrap.logistics .content-sections .content-section .content-txt-box .box.btm dl.first {
            padding: 0 0 10px;
        }
        .content-wrap.logistics .content-sections .content-section .content-txt-box .box.btm dl dt {
            padding: 0 0 2px;
            font-weight: 500;
            font-size: 0.875rem;
        }
        .content-wrap.logistics .content-sections .content-section .content-txt-box .box.btm dl dd {
            font-size: 0.875rem;
        }
        .content-wrap.logistics .content-sections .content-section .content-txt-box .box.btm dl dd strong {
            font-weight: 500;
        }
        .content-wrap.logistics .content-sections .content-section .content-txt-box .figure-caption {
            padding: 0 0 8px;
            text-align: left;
        }
        .content-wrap.logistics .content-sections .content-section .content-txt-box .figure-caption span {
            padding-left: 20px;
            font-size: 0.75rem;
        }
        .content-wrap.logistics .content-sections .content-section .content-txt-box .figure-caption span::before {
            top: 3px;
            width: 11px;
            height: 8px;
        }
        .content-wrap.logistics .content-sections .content-section .content-txt-box .box.mid {
            padding: 0;
        }
        .content-wrap.logistics .content-sections .content-section .content-txt-box .box.btm .flex-inner {
            flex-direction: column;
        }
        .content-wrap.logistics .content-sections .content-section .content-txt-box .box.btm .flex-inner div {
            width: 100%;
        }
        .content-wrap.logistics .content-sections .content-section .content-txt-box .box.btm .right .figure-caption{
            padding-bottom: 0;
        }
        .content-wrap.logistics .content-sections .content-section.safe .summary-title {
            margin: 20px 0 10px;
            font-size: 1rem;
        }
        .content-wrap.logistics .content-sections .content-section.safe .summary-title strong{
            font-weight: 500;
        }
        .content-wrap.logistics .content-sections .content-section.eco .summary-title {
            margin: 20px 0 0;
            font-size: 1rem;
        }
        .content-wrap.logistics .content-sections .content-section.eco .summary-title br{
            display: none;
        }
        .content-wrap.logistics .content-sections .content-section.eco .content-txt-box div {
            width: 100%;
        }
        /* - 친환경계획 */
        .content-wrap.eco .content-intro .summary-title {
            padding: 0 0 10px;
            line-height: 1.5;
            font-weight: 500;
            font-size: 1.25rem;
        }
        .content-wrap.eco .content-intro .content-desc{
            line-height: 1.4;
            font-size: 1rem;
        }
        .content-wrap.eco .content-section-wrap .content-sections .section-heading {
            padding: 0 0 15px;
        }
        .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list h4 {
            font-weight: 500;
            font-size: 1rem;
        }
        .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner {
            flex-direction: column;
            padding: 10px 0 0;
        }
        .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .left{
            width:100%;
        }
        .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .right {
            width:100%;
        }
        .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .right .box {
            background-size: 100px;
        }
        .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .box-outer{
            margin: 0 0 10px;
        }
        .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .box-outer .box {
            padding: 12px;
        }
        .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .box-outer .box.big {
            margin: 20px 0 0;
        }
        .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .box-outer .box.big::before {
            top: -20px;
            width: 9px;
            height: 22px;
        }
        .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .box-outer .year {
            padding: 3px 15px 2px;
            font-size: 0.875rem;
        }
        .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .box-outer .txt {
            padding: 12px 0 5px;
            font-size: 1rem;
        }
        .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .box-outer .refer {
            padding: 0;
            font-size: 0.75rem;
        }
        .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .box-outer .refer em {
            font-weight: 500;
        }
        .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .box-outer .box.big .year {
            font-size: 1rem;
        }
        .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .box-outer .box.big .txt {
            font-weight: 500;
            font-size: 1rem;
        }
        .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .right h5 {
            font-weight: 500;
            font-size: 1rem;
        }
        .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .right .sub-tit {
            font-size: 0.875rem;
        }
        .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .right .grade {
            padding: 12px 0 0;
        }
        .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .right .grade p {
            padding: 10px;
        }
        .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .right .grade p strong {
            padding-right: 6px;
            font-weight: 500;
            font-size: 0.875rem;
        }
        .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .flex-inner .right .grade p span {
            font-weight: 400;
            font-size: 0.75rem;
            color: #424755;
        }
        .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .note {
            padding: 10px 0 0;
            font-weight: 400;
            font-size: 0.75rem;
        }
        .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .note strong{
            font-weight: 500;
        }
        .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .txt {
            padding: 10px 0 0;
            font-size: 0.875rem;
        }
        .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .img-list > li p{
            padding: 5px 0 10px;
            font-size: 0.75rem;
        }
        .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .dl-box dl.last {
            margin: 10px 0 0;
            padding: 10px 0 0;
        }
        .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .dl-box.row{
            flex-direction: column;
        }
        .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .dl-box.row dl{
            width: 100%;
        }
        .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .dl-box.row dl:first-child dd img {
            margin-top: 5px;
            width: 20%;
        }
        .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .dl-box.row dl dd img{
            width: 60%;
        }
        .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .dl-box.row dl.last{
            margin: 15px 0 0;
            padding: 15px 0 0;
            border-left: none;
            border-top: 1px solid #d7dbe7;
        }
        .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .dl-box.row figure{
            display: inline-block;
            padding: 0;
            width: auto;
            vertical-align: middle;
            background-color: transparent;
        }
        .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .dl-box.row dl.last p {
            padding: 0 0 5px;
        }
        .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .dl-box.row dl dd figure:first-child img{
            width: 80px;
        }
        .content-wrap.eco .content-section-wrap .content-sections .content-txt-box .city-list .dl-box.row dl dd figure:last-child img{
            width: 45px;
        }
        /* - 타운매니지먼트 */
        .content-wrap.town .content-section-wrap .content-sections .content-section .section-heading {
            padding: 0 0 10px;
        }
        .content-wrap.town .project-heading em {
            font-size: 1.25rem;
        }
        .content-wrap.town .content-intro{
            padding: 20px 0 10px;
        }
        .content-wrap.town .content-intro .summary-title{
            line-height: 1.5;
            font-weight: 500;
            font-size: 1.25rem;
        }
        .content-wrap.town .content-section.why .content-txt-box .top > ul{
            flex-direction: column;
        }
        .content-wrap.town .content-section.why .content-txt-box .top > ul li{
            padding-bottom: 8px;
            width: 100%;
        }
        .content-wrap.town .content-section.why .content-txt-box .top > ul > li .gray {
            padding: 8px 0;
            font-size: 0.875rem;
            border-radius: 6px;
        }
        .content-wrap.town .content-section.why .content-txt-box .top > ul > li .blue {
            margin-top: 12px;
            padding: 8px 0;
            font-weight: 500;
            font-size: 0.875rem;
            border-radius: 6px;
        }
        .content-wrap.town .content-section.why .content-txt-box .top > ul > li .blue::before {
            top: -11px;
            width: 18px;
            height: 8px;
        }
        .content-wrap.town .content-section.why .content-txt-box .top {
            padding: 0 0 20px;
        }
        .content-wrap.town .content-section.why .content-txt-box .btm > ul > li {
            width: 33%;
            margin: 0;
        }
        .content-wrap.town .content-section.why .content-txt-box .btm > ul > li > .chk-list > li p::before {
            top: 5px;
        }
        .content-wrap.town .content-section.why .content-txt-box .btm > ul > li:nth-child(2){
            margin:0 1%;
        }
        .content-wrap.town .content-section.why .content-txt-box .btm > ul > li figure {
            margin: 0 auto 10px;
            width: 100%;
        }
        .content-wrap.town .content-section.why .content-txt-box .btm > ul > li figure strong {
            width: 100%;
            max-width: 100px;
            font-weight: 500;
            font-size: 0.875rem;
            word-break: keep-all;
        }
        .content-wrap.town .content-section.why .content-txt-box .btm > ul > li figure strong br{
            display: none;
        }
        .content-wrap.town .content-section.why .content-txt-box .btm > ul > li > .chk-list{
            padding-left: 12px;
        }
        .content-wrap.town .content-section.why .content-txt-box .btm > ul > li > .chk-list > li p {
            padding-left: 16px;
            padding-bottom: 4px;
            line-height: 1.4;
            font-weight: 500;
            font-size: 0.875rem;
            word-break: keep-all;
        }
        .content-wrap.town .content-section.why .content-txt-box .btm > ul::after {
            top: 25%;
        }
        .content-wrap.town .content-section.core .content-txt-box .left {
            width: 100%;
        }
        .content-wrap.town .content-section.core .content-txt-box .right {
            margin-left: 0;
            margin-top: 0;
            width: 100%;
        }
        .content-wrap.town .content-section.core .content-txt-box .chk-list li {
            padding: 8px 0;
        }
        .content-wrap.town .content-section .content-txt-box .chk-list li p strong {
            width: 100%;
            font-weight: 500;
            font-size: 0.875rem;
        }
        .content-wrap.town .content-section .content-txt-box .chk-list li p span {
            width: 100%;
            font-size: 0.75rem;
        }
        .content-wrap.town .content-section.core .content-txt-box .chk-list{
            padding: 10px 0 0;
        }
        .content-wrap.town .content-section.core .content-txt-box .chk-list li {
            padding: 5px 0;
        }

        /* ========== 분양정보 ========== */
        /* - 투자자커뮤니티 */
        .content-wrap.community .info-box {
            margin: 0 0 20px;
            padding: 12px;
        }
        .content-wrap.community .info-box dl dt {
            padding-left: 20px;
            font-size: 1rem;
        }
        .content-wrap.community .info-box dl dt::before {
            top: 48%;
            width: 14px;
            height: 14px;
        }
        .content-wrap.community .info-box dl dd {
            padding: 12px 0 0;
        }
        .content-wrap.community .info-box dl dd ul li {
            padding-left: 20px;
            font-size: 0.875rem;
        }
        .content-wrap.community .info-box dl dd ul li::before {
            top: 5px;
            width: 10px;
            height: 8px;
        }
        .content-wrap.community .info-box dl dd ul li + li {
            margin: 6px 0 0;
        }
        .content-wrap.community .filter-outer ul li strong {
            font-size: 0.875rem;
        }
        .content-wrap.community .filter-outer {
            margin: 0 0 20px;
            padding: 12px;
            border-radius: 6px;
        }
        .content-wrap.community .filter-outer ul li{
            flex-direction: column;
        }
        .content-wrap.community .filter-outer ul li + li {
            margin: 10px 0 0;
            padding: 10px 0 0;
        }
        .content-wrap.community .filter-outer ul li strong{
            width:100%;
        }
        .content-wrap.community .filter-outer ul li > div {
            width:100%;
        }
        .content-wrap.community .chk-wrap .chk-box {
            margin: 2px 20px 2px 0;
        }
        .content-wrap.community .filter-outer ul li:nth-child(3) .chk-box{
            width: calc(100% / 5);
        }
        .content-wrap.community .chk-wrap .chk-box input + label{
            padding-left: 0;
            font-size: 0.875rem;
        }
        .content-wrap.community .chk-wrap .chk-box input + label::before {
            width: 18px;
            height: 18px;
        }
        .content-wrap.community .filter-outer ul li:nth-child(3) .chk-box {
            display: inline-block;
            margin: 2px 0;
            width: 66px;
        }
        .board-total {
            font-size: 0.875rem;
        }
        .content-wrap.community .board-total-top {
            padding-bottom: 10px;
        }
        .content-wrap .no-result{
            padding: 30px 0;
        }
        .content-wrap .no-result .txt{
            font-size: 0.875rem;
        }
        .content-wrap .no-result .txt.en{
            font-size: 0.75rem;
        }
        .content-wrap.community .board-table table th {
            padding: 20px 10px;
            font-weight: 500;
            font-size: 0.875rem;
        }
        .content-wrap.community .board-table table td {
            font-size: 0.875rem;
        }
        .content-wrap.community .board-table table td img {
            width: 14px;
        }
        .content-wrap.community .board-table table td a {
            padding: 20px 10px;
            font-weight: 500;
        }
        .content-wrap.community .insert-form-outer .insert-tit {
            padding: 10px 0;
            font-size: 1.25rem;
        }
        .content-wrap.community .insert-form-outer .insert-tit span {
            padding-left: 28px;
        }
        .content-wrap.community .insert-form-outer .insert-tit span::before {
            width: 22px;
            height: 22px;
        }
        .content-wrap.community .insert-form-outer ul li {
            padding: 12px 0 0;
        }
        .content-wrap.community .insert-form-outer ul li .tit-box {
            padding: 0 0 4px;
        }
        .content-wrap.community .insert-form-outer ul li .tit-box label {
            font-weight: 500;
            font-size: 1rem;
        }
        .content-wrap.community .insert-form-outer ul li .tit-box .add-txt {
            padding: 0 0 1px 8px;
            font-size: 0.75rem;
        }
        .content-wrap.community .insert-form-outer ul li .chk-wrap.land .chk-box {
            margin: 0 0 5px 0;
        }
        .content-wrap.community .insert-form-outer ul li textarea {
            margin: 5px 0 0;
            height: 120px;
            padding: 12px;
            font-size: 1rem;
        }
        .content-wrap.community .insert-form-outer ul li input[type="file"] {
            font-size: 0.875rem;
        }
        .content-wrap.community .insert-form-outer ul li .attach-wrap input[type=file]::file-selector-button {
            margin-right:4px;
            width: 80px;
            height: 40px;
            font-weight: 400;
            font-size: 0.875rem;
            border-radius: 6px;
        }
        .content-wrap.community .insert-form-outer ul li .attach-wrap {
            padding: 16px 16px 10px;
        }
        .content-wrap.community .insert-form-outer ul li .attach-wrap strong {
            padding: 5px 0 0;
            font-size: 0.75rem;
        }
        .content-wrap.community .insert-form-outer ul li .attach-wrap .attach-list {
            padding: 15px 0 0;
        }
        .content-wrap.community .insert-form-outer ul li .attach-wrap .attach-list strong span {
            font-size: 0.875rem;
        }
        .content-wrap.community .insert-form-outer ul li .attach-wrap .attach-list strong {
            margin: 0 4px 4px 0;
            padding: 4px 12px;
        }
        .content-wrap.community .insert-form-outer .btn-box {
            padding: 20px 0 0;
        }
        .content-wrap.community .insert-form-outer .btn-box .btn {
            padding: 16px;
            width: calc((100% - 8px) / 2);
            font-size: 0.875rem;
        }
        .content-wrap.community .board-view-content {
            padding: 16px 20px;
            border-radius: 6px;
        }
        .content-wrap.community .board-view-content h3 {
            margin: 0 0 20px;
            padding: 0 0 12px;
            font-size: 1.125rem;
        }
        .content-wrap.community .board-view-content .com-list li {
            flex-direction: column;
        }
        .content-wrap.community .board-view-content .com-list li + li {
            margin-top: 12px;
        }
        .content-wrap.community .board-view-content .com-list li .tit{
            width: 100%;
            font-weight: 500;
            font-size: 1rem;
        }
        .content-wrap.community .board-view-content .com-list li p {
            padding: 4px 0 0;
            width: 100%;
            line-height: 1.5;
            font-size: 0.875rem;
        }
        .content-wrap.community .board-view-content .com-list li p a {
            margin: 0 4px 4px 0;
            padding: 6px 10px;
            border-radius: 6px;
        }
        .content-wrap.community .board-view-content .com-list li p a strong {
            margin-right: 4px;
            padding-right: 18px;
            font-size: 0.875rem;
        }
        .content-wrap.community .board-view-content .com-list li p a strong::after {
            width: 12px;
            height: 12px;
        }
        .content-wrap.community .board-view-content .com-list li p a em {
            font-size: 0.75rem;
        }
        .board-view-footer {
            margin-top: 20px;
        }
        .content-wrap.community .board-view-footer .btn {
            padding: 12px 30px;
            max-width: 160px;
        }
        /* =========== 분양정보 ========== */
        /* - FAQ */
        .faq-top .board-total {
            margin:10px 0 0;
        }
        .faq-list {
            margin-top: 6px;
        }
        .faq-toggle {
            gap: 5px;
            padding: 20px 12px;
            font-size: 1rem;
        }
        .faq-item {
            border-radius: 6px;
        }
        .faq-panel {
            padding: 0 12px 20px 12px;
        }
        .faq-answer{
            font-size: 1rem;
        }
        .faq-catbadge{
            font-size: 0.75rem;
        }
        .faq-catbadge + span{
            width: calc( 100% - 100px);
        }
        .faq-qbadge, .faq-abadge{
            margin-right: 0;
            font-size: 1.125rem;
        }
        .faq-arrow {
            width: 12px;
            height: 6px;
        }
        .fc .fc-toolbar-title {
            font-size: 1.75rem;
            padding: 0 10px;
        }
        .fc .fc-toolbar.fc-header-toolbar {
            margin-bottom: 1.5rem;
        }
        .fc table{
            font-size: 1rem !important;
        }
        .fc-event-main {
            padding: 3px 6px 0;
            font-size: 0.75rem !important;
            font-weight: 400;
        }
        .fc-daygrid-day-events {
            margin-bottom: 6px !important;
            min-height: 3rem !important;
            overflow-y: auto;
            height: 50px;
        }
        .fc .fc-daygrid-day-number {
            padding: 5px 4px;
        }
        .fc-daygrid-event{
            white-space: initial;
        }
        .fc-daygrid-block-event .fc-event-title{
            line-height: 1;
        }
        .fc-icon-chevron-left::before{
            width: 10px;
            height: 18px;
        }
        .fc-icon-chevron-right::before{
            width: 10px;
            height: 18px;
        }


        /* ========== 홍보센터 ======== */
        /* - 발행물 */
        .grid-list--publication {
            grid-template-columns: repeat(1, 1fr);
            gap: 40px;
        }

        /* ========== 사업개요 ======== */
        /* 사업소개 */
        .project-desc {
            margin-top: 25px;
            font-size: 1.25rem;
        }
        .summary-title {
            margin-bottom: 15px;
            font-size: 1.25rem;
        }
        .summary-desc {
            margin-bottom: 15px;
            font-size: 0.875rem;
            word-break: keep-all;
        }
        .project-summary {
            margin-bottom: 50px;
            width: 100%;
        }
        .summary-figure img {
            width: 100%;
        }
        .project-info th, .project-info td {
            font-size: 0.875rem;
            word-break: keep-all;
        }
        .project-info th {
            width: 22%;
        }
        .project-map {
            flex-direction: column;
        }
        .space-separator {
            margin-top: 40px;
            padding-top: 40px;
        }
        .project-map {
            margin-bottom: 40px;
        }
        .project-partners {
            flex-direction: column;
            margin-bottom: 40px;
        }
        .partner-thumb {
            margin-top: 20px;
            margin-bottom: 20px;
        }
        .partner-name {
            font-size: 0.9375rem;
        }
        .partner-role li {
            font-size: 0.875rem;
            word-break: keep-all;
        }
        .partner-role li::before {
            margin-right: 8px;
            font-size: 1rem;
        }
        .partner-role li + li {
            margin-top: 10px;
        }
        .step-item {
            height: auto;
            padding: 10px 15px;
        }

        /* 비전 */
        .vision-visual {
            margin: 0 auto 40px;
        }
        .project-vision-core {
            margin-bottom: 50px;
        }
        .project-vision .section-heading {
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        .vision-desc {
            font-size: 1.25rem;
            word-break: keep-all;
        }
        .vision-desc br{
            display: none;
        }
        .goal-desc {
            font-size: 1rem;
        }
        .project-goal {
            display: block;
            margin-bottom: 60px;
        }
        .goal-title {
            font-size: 1.25rem;
        }
        .goal-caption {
            gap: 5px;
        }
        .goal-item:last-child {
            padding-top: 15px;
        }
        .strategy-title {
            font-size: 1.25rem;
        }
        .strategy-text {
            margin-top: 0;
        }
        .strategy-desc {
            margin-bottom: 20px;
        }
        .strategy-desc li {
            font-size: 0.875rem;
        }
        .strategy-desc li::before {
            font-size: 1rem;
        }
        .strategy-desc li + li {
            margin-top: 10px;
        }
        .project-strategy {
            margin-bottom: 0;
        }
        .strategy-list {
            display: block;
        }
        .strategy-item {
            margin-top: 40px !important;
        }
        /* 추진일정 */
        .timeline-desc {
            font-size: 1.25rem;
            word-break: keep-all;
        }
        .timeline-desc br{
            display: none;
        }
        .timeline-section {
            margin-top: 40px;
            padding-top: 40px;
        }
        .project-timeline .section-heading {
            margin-bottom: 25px;
        }
        .timeline-year {
            margin-bottom: 35px;
            font-size: 1.875rem;
        }
        .timeline-figure img {
            width: 100%;
        }
        .timeline-wrap {
            gap: 30px;
        }
        .timeline-list {
            margin-left: 10px;
        }
        /* .timeline-list {
            padding-left: 50px;
        }
        .timeline-list li::before {
            left: -60px;
        }
        .timeline-list li::after {
            left: -55px;
        } */
        .timeline-list li {
            font-size: 0.875rem;
            gap: 0;
            height: 80px;
        }
        .timeline-right .timeline-block + .timeline-block {
            margin-top: 70px;
        }
        .timeline-note {
            margin-top: 70px;
            font-size: 0.875rem;
        }

        /* 기대효과 */
        .benefit-desc {
            font-size: 1.75rem;
        }
        .benefit-step-title {
            font-size: 1.25rem;
        }
        .benefit-step-badge {
            padding: 10px 12px;
            font-size: 0.875rem;
        }
        .benefit-step-header {
            margin-bottom: 40px;
            gap: 10px;
        }
        .benefit-intro {
            margin-bottom: 40px;
        }
        .benefit-step {
            margin-top: 0;
        }
        .benefit-label {
            font-size: 1.25rem;
            width: fit-content;
        }
        .benefit-label::after {
            right: -10px;
            width: 6px;
            height: 6px;
        }
        .benefit-value {
            font-size: 1.875rem;
        }
        .benefit-unit {
            font-size: 0.9375rem;
        }
        .benefit-left {
            gap: 8px;
        }
        .benefit-group {
            flex-direction: column;
            gap: 30px;
        }
        .benefit-desc-title {
            font-size: 0.9375rem;
        }
        .benefit-desc-text {
            font-size: 0.875rem;
        }
        .benefit-grid .benefit-group:last-child {
            margin-top: 0;
            padding-top: 0;
        }

        /* 시행자 */
        .project-developer h4 {
            font-size: 1.25rem;
        }
        .org-badge {
            font-size: 0.875rem;
        }
        .org-header {
            gap: 10px;
            margin-bottom: 20px;
        }
        .org-list li {
            font-size: 0.875rem;
        }
        .org-list li::before {
            font-size: 1rem;
        }
        .org-list li + li {
            margin-top: 10px;
        }
        .org-list {
            margin-bottom: 25px;
        }
        .developer-note {
            margin-top: 40px;
            font-size: 0.875rem;
        }
        .project-developer h5 {
            font-size: 1.125rem;
        }
        .vision-list dd {
            margin-top: 4px;
            font-size: 0.875rem;
        }
        .vision-list > div + div, .core-values {
            margin-top: 20px;
        }
        .core-list strong {
            font-size: 1rem;
        }
        .core-list p {
            font-size: 0.875rem;
        }
        .core-list li {
            padding: 15px;
        }
        .developer-desc {
            margin-top: 40px;
            padding-top: 40px;
        }
        .developer-project {
            margin-top: 40px;
            padding-top: 40px;
        }
        .developer-project-name {
            font-size: 1rem;
        }
        .developer-project-name {
            margin-bottom: 10px;
        }
        .developer-project-desc {
            font-size: 0.875rem;
        }

        /* 브랜드 */
        .brand-sub-title {
            font-size: 1.25rem;
        }
        .brand-main-title {
            margin-top: 10px;
            font-size: 2.5rem;
        }
        .brand-desc {
            margin-top: 15px;
            font-size: 1rem;
        }
        .brand-name-meaning li strong {
            font-size: 1rem;
        }
        .brand-intro {
            margin-bottom: 20px;
            padding: 50px 0;
        }
        .project-brand h4 {
            font-size: 1.25rem;
        }
        .brand-symbol-desc img {
            width: 300px;
        }
        .brand-symbol-desc p {
            margin-top: 25px;
            font-size: 1rem;
        }
        .brand-symbol-wrap {
            margin-top: 40px;
        }
        .brand-symbol-wrap {
            gap: 10px;
        }
        .brand-symbol-list {
            width: 100%;
        }
        .brand-symbol-list li {
            height: 80px;
        }
        .brand-symbol-list li p {
            font-size: 1rem;
        }
        .brand-symbol-list li span {
            font-size: 1rem;
        }
        .project-brand .section-heading {
            font-size: 1.75rem;
        }
        .brand-name-meaning {
            flex-direction: column;
        }
        .brand-name-meaning li + li {
            border-left: none;
            border-top: 1px solid #878b9d;
        }
        .brand-name-meaning li {
            padding: 25px 15px 25px;
        }
        .brand-slogan-main {
            font-size: 2rem;
            line-height: 1.3;
            text-decoration-thickness: 2px;
            text-underline-offset: 5px;
        }
        .brand-slogan-visual {
            gap: 20px;
        }
        .brand-slogan-wrap {
            margin-top: 40px;
            gap: 20px;
        }
        .brand-slogan-text p {
            font-size: 1rem;
        }
        .brand-logotype-wrap {
            margin-top: 40px;
        }
        .symbol-box {
            margin-top: 20px;
        }
        .symbol-box {
            padding: 12px 15px;
        }
        .color-list {
            margin-top: 40px;
        }
        .color-item {
            gap: 10px;
            padding: 20px 0 20px 20px;
            font-size: 0.875rem;
            flex-direction: column;
        }
        .color-item .color-meaning {
            font-size: 1rem;
        }
        .color-code {
            width: 100%;
        }
        .color-item h4 {
            flex: 0 0 18%;
        }




























    }












    /* 기대효과 */
    .benefit-desc {
        font-size: 1.5rem;
    }
    .benefit-step-title {
        font-size: 1.25rem;
    }
    .benefit-step-badge {
        padding: 10px 12px;
        font-size: 0.875rem;
    }
    .benefit-step-header {
        margin-bottom: 40px;
        gap: 10px;
    }
    .benefit-intro {
        margin-bottom: 40px;
    }
    .benefit-step {
        margin-top: 0;
    }
    .benefit-label {
        font-size: 1.25rem;
        width: fit-content;
    }
    .benefit-label::after {
        right: -10px;
        width: 6px;
        height: 6px;
    }
    .benefit-value {
        font-size: 1.875rem;
    }
    .benefit-unit {
        font-size: 0.9375rem;
    }
    .benefit-left {
        gap: 8px;
    }
    .benefit-group {
        flex-direction: column;
        gap: 30px;
    }
    .benefit-desc-title {
        font-size: 0.9375rem;
    }
    .benefit-desc-text {
        font-size: 0.875rem;
        word-break: keep-all;
    }

    .benefit-desc-text br {
        display: none;
    }
    .benefit-grid .benefit-group:last-child {
        margin-top: 0;
        padding-top: 0;
    }

    /* 시행자 */
    .project-developer h4 {
        font-size: 1.25rem;
    }
    .org-badge {
        font-size: 0.875rem;
    }
    .org-header {
        gap: 10px;
        margin-bottom: 20px;
    }
    .developer-org {
        margin-top: 50px;
    }
    .org-list li {
        font-size: 0.875rem;
    }
    .org-list li::before {
        font-size: 1rem;
    }
    .org-list li + li {
        margin-top: 10px;
    }
    .org-list {
        margin-bottom: 25px;
    }
    .developer-note {
        margin-top: 40px;
        font-size: 0.875rem;
    }
    .project-developer h5 {
        font-size: 1.125rem;
    }
    .vision-list dd {
        font-size: 0.875rem;
    }
    .vision-list > div + div, .core-values {
        margin-top: 20px;
    }
    .core-list strong {
        font-size: 1rem;
    }
    .core-list p {
        font-size: 0.875rem;
    }
    .core-list li {
        padding: 15px;
    }
    .developer-desc {
        margin-top: 40px;
        padding-top: 40px;
    }
    .developer-project {
        margin-top: 40px;
        padding-top: 40px;
    }
    .developer-project-name {
        font-size: 1rem;
    }
    .developer-project-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 25px 15px;
        margin-top: 30px;
    }
    .developer-project-name {
        margin-bottom: 10px;
    }
    .developer-project-desc {
        font-size: 0.875rem;
    }

    /* 브랜드 */
    .brand-sub-title {
        font-size: 1.25rem;
    }
    .brand-main-title {
        margin-top: 10px;
        font-size: 2.5rem;
    }
    .brand-desc {
        margin-top: 15px;
        font-size: 1rem;
    }
    .brand-name-meaning li strong {
        font-size: 1rem;
    }
    .brand-name-meaning li p {
        font-size: 0.875rem;
        word-break: keep-all;
    }
    .brand-intro {
        margin-bottom: 20px;
        padding: 50px 0;
    }
    .project-brand h4 {
        font-size: 1.25rem;
    }
    .brand-symbol-desc img {
        width: 300px;
    }
    .brand-symbol-desc p {
        margin-top: 25px;
        font-size: 1rem;
    }
    .brand-symbol-wrap {
        margin-top: 40px;
    }
    .brand-symbol-wrap {
        gap: 10px;
    }
    .brand-symbol-list {
        width: 100%;
    }
    .brand-symbol-list li {
        padding: 0 20px;
        height: 80px;
        background-size: cover !important;
    }
    .brand-symbol-list li p {
        font-size: 1rem;
        white-space: nowrap;
    }
    .brand-symbol-list li span {
        font-size: 1rem;
        word-break: auto-phrase;
    }
    .project-brand .section-heading {
        font-size: 1.75rem;
    }
    .brand-name-meaning {
        flex-direction: column;
    }
    .brand-name-meaning li + li {
        border-left: none;
        border-top: 1px solid #878b9d;
    }
    .brand-name-meaning li {
        padding: 25px 15px 25px;
    }
    .brand-slogan-main {
        position: absolute;
        font-size: 2rem;
        line-height: 1.3;
        text-decoration-thickness: 2px;
        text-underline-offset: 5px;
        top: 0;
        right: 0;
        font-size: 10vw;
    }
    .brand-slogan-visual {
        gap: 20px;
    }
    .brand-slogan-wrap {
        margin-top: 40px;
        gap: 20px;
    }

    .brand-slogan-text {
        word-break: auto-phrase;
    }
    .brand-slogan-text br {
        display: none;
    }
    .brand-slogan-text p {
        font-size: 1rem;
    }
    .brand-logotype-wrap {
        margin-top: 40px;
    }
    .symbol-box {
        margin-top: 20px;
    }
    .symbol-box {
        padding: 12px 15px;
    }
    .symbol-table table th:first-child, .symbol-table table th:nth-child(2) {
        width: 20% !important;
    }
    .color-list {
        margin-top: 40px;
    }
    .color-item {
        gap: 10px;
        padding: 20px 0 20px 20px;
        font-size: 0.875rem;
    }
    .color-item .color-meaning {
        font-size: 1rem;
    }
    .color-item .color-desc {
        font-size: 0.875rem;
        word-break: auto-phrase;
    }
    .color-code {
        width: 100%;
    }
    .color-item h4 {
        flex: 0 0 18%;
    }




}

/* 사업개요, 입지, 개발계획, 정주환경 공통 안내 문구 */
.common-disclaimer {
    margin-top: 90px;
    font-size: 0.75rem;
    font-weight: 200;
    color: #424755;
}

@media (max-width: 1280px) {
    .common-disclaimer {
        margin-top: 50px;
        word-break: auto-phrase;
    }
}










