/* ============= index 1 ============ */
.global-section {
  padding: 130px 0 116px;
  /* padding: 280px 0 200px; */
  /* text-align: center; */
  display: flex;
  margin: 0 auto;
  justify-content: space-between;
  max-width: 1123px;
}
.global-section img {
  margin: 0 auto;
}
.global-section .loop-ani {
  display: flex;
  gap: 20px;
  flex-direction: column;
  align-items: start;
  /* margin-bottom: 24px; */
}

/* loop-ani 애니메이션 */
.global-section .loop-ani h3 {
  /* font-size: 48px; */
  font-size: 68px;
  font-weight: 700;
  color: #d0d0d0;
  opacity: 0.4;
  transition: all 0.5s ease-in-out;
  animation: textLoop 4.5s ease-in-out infinite;
}

/* 각 h3마다 다른 시작 시간 설정 */
.global-section .loop-ani h3:nth-child(1) {
  animation-delay: 0s;
}

.global-section .loop-ani h3:nth-child(2) {
  animation-delay: 1.5s;
}

.global-section .loop-ani h3:nth-child(3) {
  animation-delay: 3s;
}

/* 애니메이션 키프레임 정의 */
@keyframes textLoop {
  0% {
    color: #d0d0d0;
    opacity: 0.4;
  }
  5% {
    color: #111;
    opacity: 1;
  }
  33.33% {
    color: #111;
    opacity: 1;
  }
  38.33% {
    color: #d0d0d0;
    opacity: 0.4;
  }
  100% {
    color: #d0d0d0;
    opacity: 0.4;
  }
}

/* sequential-ani (순차적 애니메이션 - 반복하지 않음) */
.global-section .sequential-ani {
  display: flex;
  gap: 20px;
  flex-direction: column;
  align-items: start;
}

.global-section .sequential-ani h3 {
  /* font-size: 48px; */
  font-size: 52px;
  font-weight: 600;
  color: #d0d0d0;
  opacity: 0.4;
  animation: textSequential 1s ease-in-out forwards;
}

/* 각 h3마다 순차적으로 시작 */
.global-section .sequential-ani h3:nth-child(1) {
  animation-delay: 0s;
}

.global-section .sequential-ani h3:nth-child(2) {
  animation-delay: 1.5s;
}

.global-section .sequential-ani h3:nth-child(3) {
  animation-delay: 3s;
}

/* 순차적 애니메이션 키프레임 - 한 번만 실행되고 활성화 상태 유지 */
@keyframes textSequential {
  0% {
    color: #d0d0d0;
    opacity: 0.4;
  }
  100% {
    color: #111;
    opacity: 1;
  }
}

.global-section .global-text {
  color: var(--system1);
  /* font-size: 20px; */
  font-size: 19px;
  line-height: 180%;
  font-weight: 400;
  text-align: left;
  margin-top: 6px;
}
.global-section .global-text b {
  font-weight: 600;
}
.global-section .global-bottom {
  text-align: left;
  padding: 140px 0;
  max-width: 609px;
  width: 100%;
  display: flex;
  align-items: flex-start;
  margin: 0 auto;
  justify-content: space-between;
}
.global-section .global-bottom div:first-of-type {
  color: var(--system1);
  font-weight: 700;
  font-size: 40px;
  line-height: 120%;
  padding-right: 91.5px;
}
.global-section .global-bottom div:last-of-type {
  padding-top: 114px;
  color: var(--system1);
  padding-left: 91.5px;
  font-size: 15px;
  line-height: 160%;
  border-left: 1px solid var(--system1);
}
.blog-nav {
  overflow: auto;
  display: flex;
  justify-content: start;
  gap: 32px;
  max-width: 1123px;
  margin: 0 auto;
}
.blog-nav button {
  white-space: nowrap;
  cursor: pointer;
  border: unset;
  background-color: transparent;
  font-size: 14px;
  color: #11212c;
  font-family: "Popins";
  font-weight: 400;
  padding: 6px 12px;
  border-radius: 50px;
  transition: background-color 0.2s ease;
}
.blog-nav button.active {
  font-weight: 700;
  background-color: #11212c;
  color: #fff;
}
.blog-nav button:hover {
  background-color: #a9a9a9;
  color: #fff;
}
.blog-nav button.active:hover {
  background-color: #11212c;
}

/* 로딩 스피너 */
.loading-spinner {
  display: none;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
  margin: 0 auto;
  position: relative;
  top: -170px;
}

.loading-spinner.active {
  display: flex;
}

.spinner {
  width: 28px;
  height: 28px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #333849;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* 251216 추가 */
.portfolio_about {
  max-width: 1123px;
  width: 100%;
  padding: 116px 0;
  margin: 0 auto;
  text-align: center;
}
.portfolio_about .do-title {
  color: var(--system1);
  margin-bottom: 42px !important;
  font-weight: 700;
  font-size: 52px;
  line-height: 120%;
  text-align: left;
}
.portfolio_about .portfolio-title {
  color: var(--system1);
  font-size: 40px;
  line-height: 120%;
  font-weight: 700;
}
.portfolio_about .portfolio-list {
  margin: 42px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.portfolio_about .portfolio-list .blog-item {
  text-align: left;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.portfolio_about .portfolio-list .blog-item img {
  width: 100%;
  height: 240px;
}
.portfolio_about .more-btn p {
  margin: 0 auto;
  border-radius: 8px;
  max-width: 200px;
  width: 100% !important;
  background-color: #222;
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
  padding: 20px 32px;
  border-radius: 12px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 22px;
  justify-content: center;
}
/* 251216 추가 */

.portfolio {
  max-width: 1123px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.portfolio .portfolio-title {
  color: var(--system1);
  font-size: 40px;
  line-height: 120%;
  font-weight: 700;
}
.portfolio .portfolio-list {
  margin: 32px 0 280px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}
.portfolio .portfolio-list .blog-item {
  text-align: left;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  overflow: hidden;
}
.portfolio .portfolio-list .blog-item img {
  width: 100%;
  height: 374px;
  transition: transform 0.3s ease;
}
.portfolio .portfolio-list .blog-item:hover img {
  transform: scale(1.05);
}
.portfolio .portfolio-list .blog-item .company {
  display: inline-block;
  /* margin: 8px 0 4px 0; */
  color: #979ca5;
  font-size: 16px;
  line-height: 120%;
}
.portfolio .portfolio-list .blog-item .title {
  font-weight: 600;
  color: #333849;
  font-size: 20px;
  margin: 16px 0 8px;
  line-height: 120%;
}
.portfolio .portfolio-list .blog-item .title .cn {
  font-family: "Noto Sans SC", sans-serif !important;
}
.portfolio .portfolio-blog .portfolio-card_box {
  background-color: #f6f7fb;
  padding: 28px 24px;
  color: #333849;
  font-size: 18px;
  line-height: 120%;
  font-weight: 700;
}

/* 251128 추가 */
.flex_grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  align-items: end;
  margin-top: 0 !important;
  margin-bottom: 180px !important;
}
@media (max-width: 1100px) {
  .flex_grid {
    display: block;
    margin-bottom: unset !important;
  }
}

.work_text {
  width: 50%;
  /* display: flex;
  justify-content: center;
  gap: 480px; */
  /* max-width: 1200px;
  margin: 200px 0; */
}

.do {
  margin: 0 auto;

  text-align: center;
  /* padding-top: 140px; */
}
.do .do-title {
  color: var(--system1);
  margin-bottom: 42px;
  font-weight: 700;
  font-size: 52px;
  line-height: 120%;
  text-align: left;
}
.do .do-text {
  color: var(--system1);
  /* font-size: 18px; */
  font-size: 19px;
  line-height: 180%;
  /* margin-bottom: 60px; */
  text-align: left;
  font-weight: 400;
}
.do > div {
  margin-bottom: 140px;
  max-width: 1123px;
  margin: 0 auto;
}
.do .do-box-parent {
  padding-top: 140px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 762px;
  width: 100%;
  margin: 0 auto;
}
.do .do-box-first {
  padding-right: 64px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 50%;
}
.do .do-box-first .do-left-box {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 12px;
}
.do .do-box-first .do-left-box .do-left-text {
  display: flex;
  align-items: center;
  gap: 6px;
}
.do .do-box-first .do-left-box .do-left-text .region {
  color: #777e97;
  font-weight: 300;
  font-size: 15px;
  line-height: 120%;
}
.do .do-box-first .do-left-box .do-left-text .count {
  color: #333849;
  font-weight: 600;
  font-size: 30px;
  line-height: 160%;
}
.do .do-box-second {
  width: 50%;
  text-align: left;
  display: flex;
  align-items: center;
  /* margin-bottom: 200px; */
  margin-bottom: 135px;
  margin-top: 60px;
}
.do .do-box-second::before {
  display: block;
  content: "";
  width: 1px;
  height: 310px;
  background-color: var(--system1);
  margin-right: 20px;
}

.do-right-box {
  margin-bottom: 24px;
}
.do-right-box:last-child {
  margin-bottom: unset;
}
.do .do-box-second .do-right-box .year {
  color: #11212c;
  font-size: 18px;
  font-weight: 400;
  line-height: 120%;
}
.do .do-box-second .do-right-box .award {
  color: var(--system1);
  font-size: 18px;
  line-height: 120%;
  font-weight: 400;
  margin-top: 4px;
  margin-bottom: 8px;
}
.do .do-box-second .do-right-box .award b {
  font-weight: 700;
}
.do .do-box-second .do-right-box:last-of-type .award {
  margin-bottom: 0;
}

.do > img.pc {
  /* width: 100%;
  max-width: 100%; */
  width: auto;
  margin: 0 auto;
}

.world {
  /* max-width: 1200px; */
  /* margin: 0 auto 280px; */
  width: 100%;
  /* padding-bottom: 140px; */
}

/* 롤링배너 mo */
#slide,
#slide2,
#slide3 {
  /* margin-bottom: 20px; */
  margin-bottom: 40px;
}
#slide,
#slide2,
#slide3,
.slide,
.slide_list {
  height: 24px;
  width: 100%;
  overflow: hidden;
}
.slide_list {
  display: flex;
  width: max-content;
  height: 24px;
  gap: 30px;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}
.slide_item {
  display: flex;
  flex-shrink: 0;
  gap: 30px;
}
.slide_item img {
  width: 60px;
  height: 24px;
  object-fit: contain;
}
/* roller1: 오른쪽 방향 */
#slide .slide_list {
  animation: rollingRight 50s linear infinite;
}
/* roller2: 왼쪽 방향 */
#slide2 .slide_list {
  animation: rollingLeft 50s linear infinite;
}
/* roller3: 오른쪽 방향 */
#slide3 .slide_list {
  animation: rollingRight 50s linear infinite;
}
@keyframes rollingRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(var(--slide-width, -50%));
  }
}
@keyframes rollingLeft {
  0% {
    transform: translateX(var(--slide-width, -50%));
  }
  100% {
    transform: translateX(0);
  }
}

@media (max-width: 1100px) {
  footer {
    padding: 24px 0;
  }
  .portfolio .portfolio-list .blog-item img {
    height: auto;
  }
  .loading-spinner {
    display: none;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    margin: 0 auto;
    position: unset;
    top: unset;
  }

  .footerWrap {
    width: 100%;
    gap: 24px;
    padding: 0 24px;
    box-sizing: border-box;
    flex-direction: column;
  }

  .footer-left {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    max-width: 500px;
  }

  .footer-left-info-wrap {
    width: 100%;
  }

  .footer-left-info-contact {
    margin-top: 8px;
  }

  .footer-left-info-contact > div {
    margin-right: 16px;
  }

  .footer-left-info-contact > div a {
    margin-left: 6px;
  }

  .footer-right {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .footer-sns-logo {
    width: 24px;
    height: 24px;
    margin-left: 0;
    margin-right: 20px;
  }

  .footer-sns-logo > img {
    width: 24px;
    height: 24px;
  }
  .global-section {
    /* padding: 144px 24px 44px; */
    padding: 144px 24px 0;
    flex-direction: column;
  }
  .global-section .loop-ani h3 {
    font-size: 40px;
  }
  .global-section .sequential-ani h3 {
    font-size: 38px;
  }
  .portfolio_about {
    padding: 0;
  }
  .portfolio_about .do-title {
    padding-left: 24px;
  }
  .portfolio .portfolio-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .global-section .global-text {
    font-size: 14px;
    line-height: 160%;
    margin-top: 50px;
    margin-bottom: 48px;
  }
  .portfolio .portfolio-list .blog-item .title {
    font-size: 16px;
  }
  .portfolio .portfolio-list .blog-item .company {
    /* font-size: 12px; */
    font-size: 14px;
  }
  .blog-nav {
    gap: 20px;
    margin-left: 24px;
    margin-top: 24px;
  }
  .global-section .global-bottom {
    padding: 96px 0;
    max-width: unset;
  }
  .global-section .global-bottom span {
    width: 100%;
    display: inline-block;
    letter-spacing: -1.5px;
  }
  .global-section .global-bottom div {
    width: 50%;
  }
  .global-section .global-bottom div:first-of-type {
    padding-right: 15.5px;
    padding-left: 12px;
    font-size: 30px;
  }
  .global-section .global-bottom div:last-of-type {
    padding: 147px 12px 0 15.5px;
    font-size: 13px;
    line-height: 180%;
  }
  .global-section img {
    max-width: 264px;
  }
  .portfolio .portfolio-title {
    font-size: 30px;
  }
  .portfolio .portfolio-blog .portfolio-card_box {
    font-size: 15px;
  }
  .portfolio .portfolio-list .portfolio-card img {
    width: 100%;
  }
  .portfolio .portfolio-list {
    margin: 40px 24px;
    gap: 12px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .portfolio .more-btn p {
    font-size: 15px;
  }

  .do {
    max-width: unset;
  }
  .do > div:first-of-type {
    padding: 0 24px;
  }

  .do .do-title {
    font-size: 30px;
    margin-bottom: 32px;
    padding-top: 80px;
    width: 200px;
  }
  .do .do-text.mo:nth-of-type(2) {
    margin-bottom: 20px;
  }
  .do .do-text {
    margin-bottom: 40px;
    font-weight: 400;
    font-size: 14px;
  }
  .do .do-box-parent {
    padding-top: 96px;
    max-width: unset;
  }
  .do .do-box-first {
    gap: 16px;
    padding-right: 19.5px;
  }
  .do .do-box-second {
    width: 100%;
    margin-bottom: 80px;
  }
  .do .do-box-first .do-left-box {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .do .do-box-first .do-left-box .do-left-text {
    flex-direction: column;
    align-items: flex-start;
  }
  .do .do-box-first .do-left-box .do-left-text .region {
    font-size: 12px;
  }
  .do .do-box-first .do-left-box .do-left-text .count {
    font-size: 25px;
  }
  .do .do-box-first .do-left-box .do-left-text {
    gap: 0;
  }
  .do .do-box-second .do-right-box .year {
    font-size: 14px;
  }
  .do .do-box-second .do-right-box .award {
    margin-top: 4px;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 160%;
  }
  .do .do-box-second .do-right-box .award b {
    font-weight: 600;
  }
  .do .do-box-second::before {
    display: block;
    content: "";
    width: 1px;
    height: 270px;
    background-color: var(--system1);
    margin-right: 12px;
  }

  .do > img.pc {
    margin-left: -24px;
    margin-right: -24px;
    width: calc(100% + 48px);
  }

  .world {
    max-width: 1200px;
    margin: 0 auto;
    height: 100px;
    width: 100%;
    padding-bottom: unset;
  }
  .world img.mo {
    position: relative;
    top: -260px;
    z-index: -1;
    height: 360px;
  }

  .work_text {
    flex-direction: column;
    max-width: unset;
    margin: 0;
    gap: 0;
  }
  .work_text .do-title,
  .work_text .do-text {
    padding-left: 24px;
  }
}

/* ============= protfolio =========== */
.mkt-blog {
  padding: 120px 0;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.mkt-blog h1 {
  color: var(--system1);
  font-size: 64px;
  font-weight: 700;
  line-height: 120%;
  padding-bottom: 120px;
}
.mkt-blog .blog-nav {
  overflow: auto;
  background-color: #333849;
  border-radius: 8px;
  padding: 18px 0;
  display: flex;
  justify-content: center;
  gap: 54px;
  margin-bottom: 72px;
}
.mkt-blog .blog-nav button {
  white-space: nowrap;
  cursor: pointer;
  border: unset;
  background-color: transparent;
  font-size: 15px;
  line-height: 120%;
  color: #fff;
  font-weight: 400;
}
.mkt-blog .blog-nav button.active {
  font-weight: 600;
}
.mkt-blog .blog-list {
  padding-bottom: 64px;
  gap: 40px 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
}
.mkt-blog .blog-list .blog-item {
  text-align: left;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.mkt-blog .blog-list .blog-item img {
  width: 100%;
}
.mkt-blog .blog-list .blog-item .company {
  display: inline-block;
  margin: 8px 0 4px 0;
  color: #333849;
  font-size: 15px;
  line-height: 120%;
}
.mkt-blog .blog-list .blog-item .title {
  font-weight: 600;
  color: #333849;
  font-size: 15px;
  line-height: 120%;
}
.mkt-blog .blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1100px) {
  .mkt-blog {
    padding: 96px 0 80px 0;
  }
  .mkt-blog h1 {
    font-size: 40px;
    padding-bottom: 96px;
  }
  .mkt-blog .blog-nav {
    gap: 20px;
    background-color: transparent;
    justify-content: flex-start;
    margin: 0 12px 60px 12px;
  }
  .mkt-blog .blog-nav button {
    color: #555e70;
    font-size: 15px;
    padding: 16px;
  }
  .mkt-blog .blog-nav button.active {
    color: #fff !important;
    background-color: #333849 !important;
    border-radius: 8px;
  }
  .mkt-blog .blog-list {
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    margin: 0 12px 60px 12px;
    gap: 40px 0;
  }
}

/* ============= post 1 ============= */
#content.post1 .box {
  display: flex;
  /* gap: 100px; */
  justify-content: space-between;
  padding-top: 64px;
}
#content.post1 .box > div {
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 24px;
}
#content.post1 .box span,
#content.post1 .box h3 {
  font-weight: 600;
  font-size: 25px;
  line-height: 160%;
}
#content.post1 .box img {
  max-width: 719px;
}
#content.post1 .box p {
  font-size: 15px;
  line-height: 160%;
  letter-spacing: -0.1px;
}
#content.post1 .box p:nth-child(2) {
  padding: 12px 0;
}
#content.post1 .second {
  padding-bottom: 120px;
}
#content.post1 .second .pc .image-box img {
  width: auto;
  min-width: 600px;
  flex-shrink: 0;
}
#content.post1 .second > div {
  display: flex;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  gap: 100px;
}
#content.post1 .second .text-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
#content.post1 .second .text-box span {
  font-size: 25px;
  font-weight: 600;
  line-height: 160%;
  color: var(--system5);
}
#content.post1 .second p {
  font-size: 15px;
  line-height: 160%;
}
#content.post1 .second .text-box p {
  width: 550px;
}
#content.post1 .text-box ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0;
  padding-top: 12px;
  width: 540px;
}
#content.post1 .text-box ul li {
  font-size: 18px;
  font-weight: 300;
  line-height: 160%;
  color: var(--system5);
}
#content.post1 .text-box ul li::marker {
  font-size: 12px;
}
#content.post1 .third {
  background-color: #fff;
  width: 100%;
  padding: 80px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
#content.post1 .fourth {
  display: flex;
  flex-direction: row;
  gap: 100px;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
}
#content.post1 .fifth {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 0;
  margin-bottom: 120px;
}

@media (max-width: 1440px) {
  #content.post1 .second .image-box img {
    max-width: 381px;
  }
  #content.post1 .second .image-box img:nth-child(1) {
    max-width: 191px;
  }
  #content.post1 .third .image-box {
    padding: 0 24px;
  }
  #content.post1 .third .image-box img {
    max-width: 300px;
  }
  #content.post1 .box img {
    max-width: 600px;
  }
  #content.post1 .box {
    gap: 50px;
  }
  #content.post1 .box p {
    font-size: 13px;
  }
  #content.post1 .box span,
  #content.post1 .box h3 {
    font-size: 22px;
  }
}

@media (max-width: 1100px) {
  #content.post1 .box {
    flex-direction: column;
    padding: 40px 24px 0px;
    gap: 0;
  }
  #content.post1 .box-under {
    padding-top: 24px;
  }
  #content.post1 .box span,
  #content.post1 .box h3 {
    font-size: 20px;
    padding-bottom: 24px;
  }
  #content.post1 .second {
    /* padding: 0 24px 64px; */
  }
  #content.post1 .second > div {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  #content.post1 .second p {
    font-size: 13px;
  }
  #content.post1 .second .text-box p {
    width: auto;
  }
  #content.post1 .text-box ul {
    width: unset;
  }
  #content.post1 .second .text-box span {
    font-size: 16px;
    font-weight: bold;
  }
  #content.post1 .second .image-box {
    display: unset;
  }
  #content.post1 .second .image-box > div {
    display: flex;
    gap: 8px;
  }
  #content.post1 .second .image-box > div img {
    width: 100%;
  }
  #content.post1 .second .mo .image-box > img {
    width: 100%;
    padding-bottom: 6px;
  }
  #content.post1 .second .image-box > img,
  #content.post1 .second .image-box img {
    max-width: 100% !important;
  }
  #content.post1 .second .image-box img:nth-child(1) {
    max-width: unset;
  }
  #content.post1 .third {
    /* padding: 40px 24px; */
  }
  #content.post1 .third .image-box {
    flex-direction: column;
  }
  #content.post1 .third .image-box img {
    max-width: 100%;
  }
  #content.post1 .fourth {
    flex-direction: column-reverse;
    gap: 24px;
    padding: 40px 24px;
  }
  #content.post1 .fifth {
    padding: 40px 24px;
    margin-bottom: 40px;
  }
  #content.post1 .fifth .image-box img {
    max-width: 100%;
  }
}
/* ============= post 2 ============= */
#content.post2 .box {
  flex-direction: row;
  align-items: flex-start;
}
#content.post2 .box > div {
  gap: 24px;
}
#content.post2 .third {
  max-width: 1200px;
  width: 100%;
}
#content.post2 .third > div {
  display: flex;
  flex-direction: row-reverse;
  gap: 100px;
  align-items: center;
}
@media (max-width: 1440px) {
  #content.layout-basic .box img {
    max-width: unset;
  }
}
@media (max-width: 1100px) {
  #content.post2 .third > div {
    gap: 0;
    flex-direction: column-reverse;
    align-items: unset;
  }
  #content.post2 .box > div {
    gap: 0;
  }
}
/* ============= post 3 ============= */
#content.post3 .second .text-box p {
  text-align: center;
}
#content.post3 .box .box-under {
  padding-bottom: 36px;
}
@media (max-width: 1100px) {
  #content.post3 .box .box-under {
    padding-bottom: 0px;
  }
  #content.post3 .second .image-box img {
    max-width: 50%;
  }
  #content.post3 .second .text-box p {
    text-align: left;
  }
}
/* ============= post 4 ============= */
#content.post4 .second .text-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#content.post4 .second .text-box p {
  text-align: center;
}
#content.post4 .text-box ul {
  list-style-type: disc;
  padding-left: 0;
  margin: 0;
  padding-top: 12px;
  list-style-position: inside;
  text-align: center;
}
#content.post4 .text-box ul li {
  font-size: 18px;
  font-weight: 300;
  line-height: 160%;
  color: var(--system5);
}
#content.post4 .text-box ul li::marker {
  font-size: 12px;
}
#content.post4 .box > div {
  justify-content: flex-start;
  gap: 24px;
}
@media (max-width: 1100px) {
  #content.post4 .box > div {
    gap: 0;
  }
  #content.post4 .second .text-box {
    align-items: flex-start;
  }
  #content.post4 .second .text-box p {
    text-align: left;
  }
  #content.post4 .text-box ul {
    text-align: left;
    padding-left: 20px;
    list-style-position: outside;
  }
}
/* ============= post 5 ============= */
#content.post5 .box {
  flex-direction: column;
}

#content.post5 .first .box h3 {
  text-align: center;
  padding-bottom: 24px;
}
#content.post5 .second > div {
  display: flex;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  justify-content: space-between;
}
#content.post5 .second .text-box p {
  text-align: left;
}
@media (max-width: 1440px) {
  #content.post5 .second > div {
    max-width: 1050px;
  }
}
@media (max-width: 1100px) {
  #content.post5 .second > div {
    flex-direction: column;
    align-items: flex-start;
  }
  #content.post5 .second .image-box div {
    padding: 0;
  }
}
/* ============= post 6 ============= */
#content.post6 .box img {
  height: 100%;
}
#content.post6 .first .box p:first-of-type {
  padding: 24px 0 12px;
}
#content.post6 .first .box p.bold {
  padding-top: 12px;
}
#content.post6 .box-under ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0;
}
#content.post6 .box-under ul li {
  font-size: 18px;
  font-weight: 300;
  line-height: 160%;
  color: var(--system5);
}
#content.post6 .box-under ul li::marker {
  font-size: 12px;
}

@media (max-width: 1440px) {
  #content.post6 .second .image-box img {
    max-width: 580px;
  }
}
@media (max-width: 1100px) {
  #content.post6 .second .image-box div {
    padding: 0;
  }
  #content.post6 .second .image-box img {
    max-width: 100%;
  }
  #content.post6 .first .box p:first-of-type {
    padding: 0 0 8px;
  }
  #content.post6 .first .box p.bold {
    padding-top: 8px;
  }
  #content.post6 .second .image-box {
    padding: 0 24px;
  }
}
/* ============= post 7 ============= */
#content.post7 .cn {
  font-family: "Noto Sans SC", sans-serif !important;
}
#content.post7 .second .text-box h4 {
  width: 435px;
}
#content.post7 .third {
  max-width: 1200px;
  width: 100%;
}
#content.post7 .third > div {
  display: flex;
  flex-direction: row-reverse;
  gap: 100px;
  align-items: center;
}
@media (max-width: 1440px) {
  #content.layout-basic .box img {
    max-width: unset;
  }
}
@media (max-width: 1100px) {
  #content.post7 .second .text-box h4 {
    width: unset;
  }
  #content.post7 .third > div {
    gap: 0;
    flex-direction: column;
    align-items: unset;
  }
}
/* ============= post 8 ============= */
#content.post8 .text-box ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0;
  padding-top: 12px;
}
#content.post8 .text-box ul li {
  font-size: 18px;
  font-weight: 300;
  line-height: 160%;
  color: var(--system5);
}
#content.post8 .text-box ul li::marker {
  font-size: 12px;
}
/* ============= post 9 ============= */
#content.post9 .text-box ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0;
  padding-top: 12px;
}
#content.post9 .text-box ul li {
  font-size: 18px;
  font-weight: 300;
  line-height: 160%;
  color: var(--system5);
}
#content.post9 .text-box ul li::marker {
  font-size: 12px;
}
#content.post9 .box {
  align-items: unset;
}
#content.post9 .box .box-under {
  padding-top: 24px;
}
#content.post9 .second > div {
  gap: 48px;
  flex-direction: column-reverse;
  align-items: flex-start;
}
#content.post9 .third .image-box {
  flex-direction: column;
}
#content.post9 .third > div {
  gap: 48px;
  display: flex;
  flex-direction: column-reverse;
}
#content.post9 .fourth > div {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}
#content.post9 .fourth .text-box {
  margin-bottom: 24px;
}
#content.post9 .fourth p {
  font-size: 15px;
  line-height: 160%;
}
#content.post9 .fourth img {
  width: 100%;
}
#content.post9 .second .image-box {
  max-width: 100%;
}
@media (max-width: 1440px) {
  #content.post9 .second .image-box img {
    max-width: 100% !important;
  }
}
@media (max-width: 1100px) {
  #content.post9 .second > div,
  #content.post9 .third > div,
  #content.post9 .fourth > div {
    gap: 24px;
  }
  #content.post9 .second > div,
  #content.post9 .third > div {
    flex-direction: column;
  }
  #content.post9 .fourth > div {
    flex-direction: column-reverse;
  }
}
/* ============= post 10 ============= */
/* 대부분 post 3 코드 자동 적용 */

#content.post10 .cn {
  font-family: "Noto Sans SC", sans-serif !important;
}
#content.post10 p .cn {
  font-size: 18px !important;
  color: var(--system5);
}
#content.post10 p.bold {
  padding-top: 0 !important;
}
#content.post10 .first .box span.pc {
  padding-bottom: 24px;
}
#content.post10 .second .text-box {
  padding-top: 24px;
}
#content.post10 .second .text-box p {
  text-align: center;
}
#content.post10 .box > div {
  justify-content: unset;
}
@media (max-width: 1100px) {
  #content.post10 .second .text-box p:first-of-type {
    padding-top: 0;
  }
  #content.post10 .first .box .box-under {
    padding-top: 24px;
  }
  #content.post10 .box-under p.bold br {
    display: none;
  }
}

/* ============= post 11 ============= */
#content.post11 .third {
  max-width: 1200px;
  width: 100%;
}
#content.post11 .third > div {
  display: flex;
  flex-direction: row-reverse;
  gap: 100px;
  align-items: center;
}
#content.post11 .text-box ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0;
  padding-top: 12px;
}
#content.post11 .text-box ul li {
  font-size: 18px;
  font-weight: 300;
  line-height: 160%;
  color: var(--system5);
}
#content.post11 .text-box ul li::marker {
  font-size: 12px;
}
@media (max-width: 1440px) {
  #content.layout-basic .box img {
    max-width: unset;
  }
}
@media (max-width: 1100px) {
  #content.post11 .third > div {
    gap: 0;
    flex-direction: column;
    align-items: unset;
  }
}
/* ============= post 12 ============= */
#content.post12 .second .text-box p:last-of-type {
  padding-top: 0;
}
#content.post12 .second > div {
  justify-content: flex-start;
  gap: 100px;
}
@media (max-width: 1100px) {
  #content.post12 .second > div {
    gap: 0;
  }
}
/* 
/* ============= post 13 ============= */
#content.post13 .second > div {
  justify-content: flex-start;
  gap: 100px;
}
@media (max-width: 1100px) {
  #content.post13 .second > div {
    gap: 0;
  }
}
/* ============= post 14 ============= */
#content.post14 .second > div {
  justify-content: flex-start;
  gap: 100px;
}
@media (max-width: 1100px) {
  #content.post14 .second > div {
    gap: 0;
  }
}
/* 
/* ============= post 15 ============= */
#content.post15 .box {
  flex-direction: row;
  align-items: flex-start;
}
#content.post15 .box > div {
  gap: 24px;
}
#content.post15 .third {
  max-width: 1200px;
  width: 100%;
}
#content.post15 .third > div {
  display: flex;
  flex-direction: row-reverse;
  gap: 100px;
  align-items: center;
}
#content.post15 .text-box ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0;
  padding-top: 12px;
}
#content.post15 .text-box ul li {
  font-size: 18px;
  font-weight: 300;
  line-height: 160%;
  color: var(--system5);
}
#content.post15 .text-box ul li::marker {
  font-size: 12px;
}
@media (max-width: 1440px) {
  #content.layout-basic .box img {
    max-width: unset;
  }
}
@media (max-width: 1100px) {
  #content.post15 .third > div {
    gap: 0;
    flex-direction: column;
    align-items: unset;
  }
  #content.post15 .box > div {
    gap: 0;
  }
}
/* ============= post 16 ============= */
#content.post16 .second .text-box p {
  text-align: center;
}
#content.post16 .third {
  padding-bottom: 80px;
}
#content.post16 .return-home {
  margin-top: 64px;
}
#content.post16 .box > div {
  justify-content: flex-start;
  gap: 24px;
}
@media (max-width: 1100px) {
  #content.post16 .third {
    padding-bottom: 40px;
  }
  #content.post16 .return-home.short {
    margin-top: 40px;
  }
  #content.post16 .second .text-box {
    align-items: flex-start;
    text-align: left;
  }
  #content.post16 .second .text-box p {
    padding-top: 8px;
    text-align: left;
  }
  #content.post16 .third .image-box {
    gap: 8px;
  }
  #content.post16 .box > div {
    gap: 0;
  }
}
/* ============= post 17 ============= */
#content.post17 .second .text-box p {
  text-align: center;
}
#content.post17 .box {
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
@media (max-width: 1100px) {
  #content.post17 .second .image-box.column div {
    padding: 0;
  }
  #content.post17 .second .text-box {
    align-items: flex-start;
    text-align: left;
  }
  #content.post17 .second .text-box p {
    text-align: left;
  }
}
/* ============= post 18 ============= */
#content.post18 .second .text-box p {
  text-align: center;
}
#content.post18 .second > div {
  justify-content: flex-start;
  gap: unset;
  flex-direction: column;
}
#content.post18 .third {
  display: flex;
  flex-direction: row-reverse;
  gap: 100px;
  align-items: center;
}
#content.post18 .fourth {
  display: flex;
  flex-direction: row;
  gap: 100px;
  align-items: center;
}
@media (max-width: 1100px) {
  #content.post18 .second > div {
    gap: 0;
  }
  #content.post18 .second .text-box {
    align-items: flex-start;
    text-align: left;
  }
  #content.post18 .second .text-box p {
    text-align: left;
  }
  #content.post18 .third {
    gap: 0;
    flex-direction: column-reverse;
    align-items: unset;
  }
  #content.post18 .fourth {
    gap: 0;
    flex-direction: column;
    align-items: unset;
  }
}
/* ============= post 19 ============= */
#content.post19 .text-box ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0;
  padding-top: 12px;
}
#content.post19 .text-box ul li {
  font-size: 18px;
  font-weight: 300;
  line-height: 160%;
  color: var(--system5);
}
#content.post19 .text-box ul li::marker {
  font-size: 12px;
}
#content.post19 .third {
  max-width: 1200px;
  width: 100%;
}
#content.post19 .third > div {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1440px) {
  #content.layout-basic .box img {
    max-width: unset;
  }
}
@media (max-width: 1100px) {
  #content.post19 .third > div {
    flex-direction: column;
    align-items: unset;
  }
}
/* ============= post 20 ============= */
#content.post20 .text-box ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0;
  padding-top: 12px;
}
#content.post20 .text-box ul li {
  font-size: 18px;
  font-weight: 300;
  line-height: 160%;
  color: var(--system5);
}
#content.post20 .text-box ul li::marker {
  font-size: 12px;
}
/* ============= post 21 ============= */
/* ============= post 22 ============= */
#content.post22 .third {
  padding-bottom: 64px;
  max-width: 100%;
}
#content.post22 .box > div {
  justify-content: flex-start;
}
#content.post22 .box-under {
  padding-top: 24px;
}
@media (max-width: 1440px) {
  #content.post22 .second .image-box img {
    max-width: 100%;
  }
}
@media (max-width: 1100px) {
  #content.post22 .second .image-box div {
    padding: 0;
  }
  #content.post22 .second > div {
    width: 100%;
  }
  #content.post22 .return-home {
    margin-top: 40px;
  }
}
/* ============= post 23 ============= */
@media (max-width: 1100px) {
  #content.layout-basic .return-home {
    margin-top: 40px;
  }
}
/* ============= post 24 ============= */
#content.post24 .text-box ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0;
  padding-top: 12px;
}
#content.post24 .text-box ul li {
  font-size: 18px;
  font-weight: 300;
  line-height: 160%;
  color: var(--system5);
}
#content.post24 .text-box ul li::marker {
  font-size: 12px;
}
#content.post24 .second .image-box img {
  max-width: 550px;
}
@media (max-width: 1100px) {
  #content.post24 .second .image-box img {
    max-width: 100%;
  }
}
/* ============= post 25 ============= */
/* ============= post 26 ============= */
#content.post26 .text-box ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0;
  padding-top: 12px;
}
#content.post26 .text-box ul li {
  font-size: 18px;
  font-weight: 300;
  line-height: 160%;
  color: var(--system5);
}
#content.post26 .text-box ul li::marker {
  font-size: 12px;
}
#content.post26 .third {
  max-width: 1200px;
  width: 100%;
}
#content.post26 .box {
  gap: 0;
}
#content.post26 .third > div {
  display: flex;
  flex-direction: row-reverse;
  gap: 100px;
  align-items: center;
}
@media (max-width: 1440px) {
  #content.layout-basic .box img {
    max-width: unset;
  }
}
@media (max-width: 1100px) {
  #content.post26 .third > div {
    gap: 0;
    flex-direction: column;
    align-items: unset;
  }
}
/* ============= post 27 ============= */
#content.post27 .box > div {
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
#content.post27 .box {
  justify-content: center;
}
#content.post27 .first .box span {
  padding-bottom: 24px;
}
#content.post27 .box div.pc > div {
  display: flex;
  gap: 12px;
}
#content.post27 .second > div {
  display: flex;
  flex-direction: column-reverse;
}
#content.post27 .second .text-box p {
  text-align: center;
}
#content.post27 .second .text-box p:first-of-type {
  padding-bottom: 40px;
}
@media (max-width: 1100px) {
  #content.post27 .box img {
    width: 100%;
  }
  #content.post27 .second .image-box div {
    width: 100%;
    padding: 0;
  }
  #content.post27 .second .image-box div img {
    width: 100%;
  }
  #content.post27 .second > div {
    flex-direction: column !important;
  }
  #content.post27 .mo {
    width: 100%;
  }
  #content.post27 .box div.mo > div {
    display: flex;
    gap: 8px;
  }
  #content.post27 .box div.mo > div div {
    width: 100%;
  }
  #content.post27 .first .box h3 {
    text-align: left;
  }
  #content.post27 .second .text-box p:first-of-type {
    padding-bottom: 0;
  }
  #content.post27 .box > div {
    align-items: flex-start;
    gap: 0px;
  }
}
/* ============= post 28 ============= */

#content.post28 .box {
  justify-content: center;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
#content.post28 .second > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#content.post28 .second .text-box {
  text-align: center;
}

@media (max-width: 1440px) {
  #content.post28 .box img {
    max-width: 1000px;
  }
}
@media (max-width: 1100px) {
  #content.post28 .second .image-box div {
    padding: 0;
  }
}
/* ============= post 29 ============= */
#content.post29 .second > div {
  justify-content: flex-start;
  gap: 100px;
}
@media (max-width: 1100px) {
  #content.post29 .second > div {
    gap: 0;
  }
}
/* ============= post 30 ============= */
#content.post30 .third {
  max-width: 1200px;
  width: 100%;
}
#content.post30 .third > div {
  display: flex;
  flex-direction: row-reverse;
  gap: 100px;
  align-items: center;
}
@media (max-width: 1440px) {
  #content.post30 .box img {
    max-width: unset;
  }
}
@media (max-width: 1100px) {
  #content.post30 .third > div {
    gap: 0;
    flex-direction: column;
    align-items: unset;
  }
}
/* ============= post 31 ============= */
/* ============= post 32 ============= */
/* ============= post 33 ============= */
/* ============= post 34 ============= */
#content.post34 .text-box ol {
  list-style-type: decimal;
  padding-left: 20px;
  margin: 0;
  padding-top: 12px;
}
#content.post34 .text-box ol li {
  font-size: 18px;
  font-weight: 300;
  line-height: 160%;
  color: var(--system5);
}
/* ============= post 35 ============= */
/* ============= post 36 ============= */
#content.post36 .third {
  max-width: 1200px;
  width: 100%;
}

#content.post36 .second .text-box {
  width: 500px;
}
#content.post36 .third > div {
  display: flex;
  flex-direction: row;
  gap: 100px;
  align-items: center;
}
#content.post36 .box {
  flex-direction: column;
}

#content.post36 .first .box h3 {
  font-weight: 600;
}
#content.post36 .text-box ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0;
  padding-top: 12px;
}
#content.post36 .text-box ul li {
  font-size: 18px;
  font-weight: 300;
  line-height: 160%;
  color: var(--system5);
}
#content.post36 .text-box ul li::marker {
  font-size: 12px;
}
@media (max-width: 1440px) {
  #content.post36 .box img {
    max-width: unset;
  }
}
@media (max-width: 1100px) {
  #content.post36 .second .text-box {
    width: unset;
  }
  #content.post36 .third > div {
    gap: 0;
    flex-direction: column;
    align-items: unset;
  }
  #content.post36 .first .box h3 {
    font-weight: 600;
  }
}
/* ============= post 37 ============= */
#content.post37 .text-box ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0;
  padding-top: 12px;
}
#content.post37 .text-box ul li {
  font-size: 18px;
  font-weight: 300;
  line-height: 160%;
  color: var(--system5);
}
#content.post37 .text-box ul li::marker {
  font-size: 12px;
}
/* ============= post 38 ============= */
/* ============= post 39 ============= */
#content.post39 .second .text-box ul {
  list-style-type: decimal;
  padding-left: 20px;
  margin: 0;
  padding-top: 12px;
}
#content.post39 .second .text-box ul li {
  font-size: 18px;
  font-weight: 300;
  line-height: 160%;
  color: var(--system5);
}
@media (max-width: 1100px) {
  #content.post39 .third .image-box {
    gap: 8px;
  }
  #content.post39 .return-home {
    margin-top: 40px;
  }
}
/* ============= post 40 ============= */
#content.post40 .text-box ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0;
  padding-top: 12px;
}
#content.post40 .text-box ul li {
  font-size: 18px;
  font-weight: 300;
  line-height: 160%;
  color: var(--system5);
}
#content.post40 .text-box ul li::marker {
  font-size: 12px;
}
@media (max-width: 1100px) {
  #content.post40 .third .image-box {
    gap: 8px;
  }
  #content.post40 .return-home {
    margin-top: 40px;
  }
}
/* ============= post 41 ============= */
@media (max-width: 1100px) {
  #content.post41 .return-home {
    margin-top: 40px;
  }
  #content.post41 .second .text-box p.mo {
    padding-top: 8px;
  }
}
/* ============= post 42 ============= */
#content.post42 .second .text-box p {
  text-align: center;
}
#content.post42 .box {
  justify-content: center;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

/* ============= post 43 ============= */
#content.post43 .second .text-box ul {
  list-style-type: decimal;
  padding-left: 20px;
  margin: 0;
  padding-top: 12px;
}
#content.post43 .second .text-box ul li {
  font-size: 18px;
  font-weight: 300;
  line-height: 160%;
  color: var(--system5);
}
/* ============= post 44 ============= */
#content.post44 .text-box ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0;
  padding-top: 12px;
}
#content.post44 .text-box ul li {
  font-size: 18px;
  font-weight: 300;
  line-height: 160%;
  color: var(--system5);
}
#content.post44 .text-box ul li::marker {
  font-size: 12px;
}
/* ============= post 45 ============= */
/* ============= post 46 ============= */
/* #content.post46 .first .box p { padding-top:24px; } */
@media (max-width: 1100px) {
  #content.post46 .second .text-box {
    width: auto;
  }
  #content.post46 .second .text-box p {
    word-break: break-all;
  }
  #content.post46 .second .text-box a {
    word-break: break-all;
  }
}
/* ============= post 47 ============= */
#content.post47 .second .text-box p {
  text-align: center;
}
#content.post47 .box {
  gap: 100px;
}
#content.post47 .box > div {
  justify-content: flex-start;
}
#content.post47 .box .box-under {
  padding-top: 24px;
}
#content.post47 .second .image-box img {
  max-width: 100%;
}
@media (max-width: 1100px) {
  #content.post47 .third .image-box {
    gap: 8px;
  }
}
/* ============= post 48 ============= */
#content.post48 .text-box ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0;
  padding-top: 12px;
}
#content.post48 .text-box ul li {
  font-size: 18px;
  font-weight: 300;
  line-height: 160%;
  color: var(--system5);
}
#content.post48 .text-box ul li::marker {
  font-size: 12px;
}
/* ============= post 49 ============= */
#content.post49 .third > div {
  flex-direction: column;
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 1100px) {
  #content.post49 .third > div {
    align-items: flex-start;
    gap: 0;
  }
}
/* ============= post 50 ============= */
#content.post50 .text-box ol.numbered-list {
  list-style-type: decimal;
  padding-left: 20px;
  margin: 0;
  padding-top: 12px;
}
#content.post50 .text-box ol.numbered-list > li {
  font-size: 18px;
  font-weight: 300;
  line-height: 160%;
  color: var(--system5);
  padding-top: 8px;
}
#content.post50 .text-box ol.numbered-list > li:first-child {
  padding-top: 0;
}
#content.post50 .text-box ol.numbered-list ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0;
  padding-top: 4px;
}
#content.post50 .text-box ol.numbered-list ul li {
  font-size: 18px;
  font-weight: 300;
  line-height: 160%;
  color: var(--system5);
}
#content.post50 .text-box ol.numbered-list ul li::marker {
  font-size: 12px;
}
/* ============= post 51 ============= */
#content.post51 .third {
  max-width: 1200px;
  width: 100%;
}
#content.post51 .third > div {
  display: flex;
  flex-direction: row-reverse;
  gap: 100px;
  align-items: center;
}
@media (max-width: 1440px) {
  #content.post51 .box img {
    max-width: unset;
  }
}
@media (max-width: 1100px) {
  #content.post51 .third > div {
    gap: 0;
    flex-direction: column-reverse;
    align-items: unset;
  }
  #content.post54 .fourth p {
    font-size: 13px !important;
    font-weight: 400 !important;
  }
}
/* ============= post 52 ============= */
#content.post52 .second .text-box p {
  text-align: center;
}
#content.post52 .box {
  gap: 0;
}
/* ============= post 53 ============= */
#content.post53 .second .text-box ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0;
  padding-top: 12px;
}
#content.post53 .second .text-box ul li {
  font-size: 18px;
  font-weight: 300;
  line-height: 160%;
  color: var(--system5);
}
#content.post53 .second .text-box ul li::marker {
  font-size: 12px;
}
#content.post53 .box {
  gap: 0;
}
/* ============= post 54 ============= */
#content.post54 .text-box ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0;
  padding-top: 12px;
}
#content.post54 .text-box ul li {
  font-size: 18px;
  font-weight: 300;
  line-height: 160%;
  color: var(--system5);
}
#content.post54 .text-box ul li::marker {
  font-size: 12px;
}
#content.post54 .box {
  gap: 0;
}
#content.post54 .third .text-box {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#content.post54 .third .text-box ul {
  list-style-position: inside;
  text-align: center;
}
#content.post54 .third .text-box h4,
#content.post54 .third .text-box p {
  text-align: center;
}
#content.post54 .fourth {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
#content.post54 .fourth p {
  color: var(--system5);
  font-size: 18px;
  font-weight: 300;
  line-height: 160%;
}
@media (max-width: 1100px) {
  #content.post54 .third .text-box {
    align-items: flex-start;
  }
  #content.post54 .third .text-box h4,
  #content.post54 .third .text-box p {
    text-align: left;
  }
  #content.post54 .third .text-box ul {
    text-align: left;
    padding-left: 20px;
    list-style-position: outside;
  }
}

/* ============= post 55 ============= */
#content.post55 .second > div {
  display: flex;
  align-items: center;
  gap: 100px;
  max-width: 1200px;
  width: 100%;
}
#content.post55 .third,
#content.post55 .fourth {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: unset;
  gap: 100px;
}
#content.post55 .text-box ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0;
  padding-top: 12px;
}
#content.post55 .text-box ul li {
  font-size: 18px;
  font-weight: 300;
  line-height: 160%;
  color: var(--system5);
}
#content.post55 .text-box ul li::marker {
  font-size: 12px;
}
@media (max-width: 1100px) {
  #content.post55 .second > div {
    flex-direction: column;
    gap: 0;
  }
  #content.post55 .third {
    flex-direction: column-reverse;
    gap: 0;
  }
  #content.post55 .fourth {
    display: block;
  }
}
/* ============= post 56 ============= */
#content.post56 .second > div {
  justify-content: center;
  align-items: start;
  gap: unset;
  flex-direction: column;
  max-width: unset;
  width: unset;
}
#content.post56 .second {
  gap: 100px;
}
#content.post56 .second .image-box img {
  max-width: 300px;
}
#content.post56 .text-box ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0;
  padding-top: 12px;
}
#content.post56 .text-box ul li {
  font-size: 18px;
  font-weight: 300;
  line-height: 160%;
  color: var(--system5);
}
#content.post56 .text-box ul li::marker {
  font-size: 12px;
}
@media (max-width: 1100px) {
  #content.post56 .second > div {
    flex-direction: column;
    gap: 0;
  }
  #content.post56 .second .image-box img {
    max-width: 100%;
  }
}
/* ============= post 57 ============= */
#content.post57 .text-box ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0;
  padding-top: 12px;
}
#content.post57 .text-box ul ul {
  padding-top: 0;
  list-style-type: "- ";
}
#content.post57 .second .text-box ul {
  width: 450px;
}
#content.post57 .text-box ul li {
  font-size: 18px;
  font-weight: 300;
  line-height: 160%;
  color: var(--system5);
}
#content.post57 .text-box ul li::marker {
  font-size: 12px;
}
#content.post57 .second > div {
  justify-content: flex-start;
  gap: 100px;
  flex-direction: unset;
}
#content.post57 .third {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
}
#content.post57 .fourth {
  justify-content: center;
  flex-direction: unset;
  gap: 100px;
}
@media (max-width: 1100px) {
  #content.post57 .text-box ul,
  #content.post57 .second .text-box ul {
    width: unset;
  }
  #content.post57 .second > div {
    flex-direction: column;
    gap: 0;
  }
  #content.post57 .third {
    flex-direction: column-reverse;
    gap: 0;
  }
  #content.post57 .fourth {
    display: block;
  }
}
/* ============= post 58 ============= */
#content.post58 .text-box ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0;
  padding-top: 12px;
}
#content.post58 .text-box ul li {
  font-size: 18px;
  font-weight: 300;
  line-height: 160%;
  color: var(--system5);
}
#content.post58 .text-box ul li::marker {
  font-size: 12px;
}
#content.post58 .second > div {
  justify-content: center;
  align-items: start;
  gap: unset;
  flex-direction: column;
  max-width: unset;
  width: unset;
}
#content.post58 .second {
  gap: 100px;
}

#content.post58 .third {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
}
#content.post58 .fourth {
  justify-content: center;
  flex-direction: unset;
  gap: 100px;
}
@media (max-width: 1100px) {
  #content.post58 .second > div {
    flex-direction: column;
    gap: 0;
  }
  #content.post58 .third {
    flex-direction: column-reverse;
    gap: 0;
  }
  #content.post58 .fourth {
    display: block;
  }
}
/* ============= post 59 ============= */
#content.post59 .text-box ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0;
  padding-top: 12px;
}
#content.post59 .text-box ul li {
  font-size: 18px;
  font-weight: 300;
  line-height: 160%;
  color: var(--system5);
}
#content.post59 .text-box ul li::marker {
  font-size: 12px;
}
#content.post59 .third {
  display: flex;
  flex-direction: row;
  gap: 100px;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1100px) {
  #content.post59 .third {
    flex-direction: column-reverse;
    gap: 24px;
  }
}
/* ============= post 60 ============= */
#content.post60 .third {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
  max-width: 1200px;
}
#content.post60 .second .text-box,
#content.post60 .third .text-box {
  max-width: 450px;
}
#content.post60 .third .text-box {
  margin-bottom: 24px;
}
/* #content.post60 .fourth {
  display: block;
} */
#content.post60 .fourth .text-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 30px;
}
#content.post60 .fourth .text-box p {
  text-align: center;
}
#content.post60 .text-box ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0;
  padding-top: 12px;
}
#content.post60 .fourth .text-box ul {
  list-style-position: inside;
}
#content.post60 .text-box ul li {
  font-size: 18px;
  font-weight: 300;
  line-height: 160%;
  color: var(--system5);
}
#content.post60 .text-box ul li::marker {
  font-size: 12px;
}
@media (max-width: 1100px) {
  #content.post60 .third {
    display: flex;
    flex-direction: column-reverse;
    gap: 0;
  }
  #content.post60 .fourth .text-box {
    align-items: flex-start;
    text-align: left;
  }
  #content.post60 .fourth .text-box p {
    text-align: left;
  }
  #content.post60 .fourth .text-box ul {
    list-style-position: outside;
  }
}
/* ============= post 61 ============= */
#content.post61 .text-box ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0;
  padding-top: 12px;
}
#content.post61 .text-box ul li {
  font-size: 18px;
  font-weight: 300;
  line-height: 160%;
  color: var(--system5);
}
#content.post61 .text-box ul li::marker {
  font-size: 12px;
}
#content.post61 .second > div {
  justify-content: center;
  align-items: start;
  gap: unset;
  flex-direction: column;
  max-width: unset;
  width: unset;
}
#content.post61 .second {
  gap: 100px;
}
#content.post61 .third {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
}
#content.post61 .fourth {
  justify-content: center;
  flex-direction: unset;
  gap: 100px;
}
@media (max-width: 1100px) {
  #content.post61 .second > div {
    flex-direction: column;
    gap: 0;
  }
  #content.post61 .third {
    flex-direction: column-reverse;
    gap: 0;
  }
  #content.post61 .fourth {
    display: block;
  }
}

#footer {
  width: 100%;
  background-color: #111d2d;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 0 40px;
  box-sizing: border-box;
}

.footerWrap {
  width: 1130px;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 40px;
}

.footerWrap > p {
  width: 100%;
  font-size: 13px;
  line-height: 160%;
  color: #989dad;
  padding-top: 40px;
  /* margin-top: 40px; */
  border-top: 1px solid #3a4554;
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 500px;
  gap: 16px;
}

.footer-logo {
  width: 76px;
  height: 30px;
  background: url("../images/logo_white.svg") center no-repeat;
  background-size: 100%;
  display: block;
}

.footer-left-info-wrap {
  display: flex;
  flex-direction: column;
}

.footer-left-info-wrap p {
  font-size: 13px;
  line-height: 200%;
  color: #989dad;
}

.footer-left-info-contact {
  display: flex;
  align-items: center;
}

.footer-left-info-contact > div {
  display: flex;
  align-items: center;
  margin-right: 20px;
}

.footer-left-info-contact > div a {
  color: #989dad;
  font-size: 13px;
  line-height: 200%;
  margin-left: 8px;
}

.footer-right {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 40px;
  gap: 32px;
}

.footer-right p {
  font-size: 13px;
  line-height: 200%;
  color: #989dad;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-sns-wrap {
  display: flex;
  align-items: center;
}

.footer-sns-logo {
  width: 32px;
  height: 32px;
  display: block;
  flex-shrink: 0;
  margin-left: 24px;
}

.footer-sns-logo > img {
  width: 32px;
  height: 32px;
  display: block;
  /* transition: .3s all; */
}

.icon_24_phone {
  width: 14px;
  height: 14px;
  background: url("../images/icon_24_phone_white.svg") center no-repeat;
  background-size: 100%;
}
.icon_24_message {
  width: 14px;
  height: 14px;
  background: url("../images/icon_24_message_white.svg") center no-repeat;
  background-size: 100%;
}

/* .footer-sns-logo > img:hover {
  opacity: 50%;
} */

/* ============= Footer 반응형 ============= */
@media (max-width: 1440px) {
  .footerWrap {
    width: 1060px;
    gap: 24px;
  }
}

@media (max-width: 1100px) {
  #footer {
    padding: 40px 0 24px;
  }

  .footerWrap {
    width: 100%;
    gap: 24px;
    padding: 0 24px;
    box-sizing: border-box;
    flex-direction: column;
  }

  .footerWrap > p {
    padding-top: 24px;
    margin-top: 24px;
  }

  .footer-left {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-left-info-wrap {
    width: 100%;
  }

  .footer-left-info-contact {
    margin-top: 8px;
  }

  .footer-left-info-contact > div {
    margin-right: 16px;
  }

  .footer-left-info-contact > div a {
    margin-left: 6px;
  }

  .footer-right {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    padding-top: unset;
  }

  .footer-sns-logo {
    width: 24px;
    height: 24px;
    margin-left: 0;
    margin-right: 20px;
  }

  .footer-sns-logo > img {
    width: 24px;
    height: 24px;
  }
}
