.mb {
  display: none !important;
}

/* ── SUB VISUAL ── */
.sub-visual {
  height: 280px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--pastel-soft);
}

.sub-visual-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  text-align: center;
}

.sub-visual-inner > * {
  padding-left: 20px;
}
/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #999;
  margin-bottom: 14px;
  justify-content: right;
}

.breadcrumb-active {
  color: var(--blue);
  font-weight: 500;
}

/* ── EN TAG ── */
.en-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 10px;
}

/* ── HEADING ── */
.sub-visual-inner h2 {
  font-size: 38px;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

/* ── DESC ── */
.desc {
  font-size: 13px;
  color: #777;
  margin-top: 10px;
  line-height: 1.6;
}

/* 등장 애니메이션 */
@keyframes svFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.sub-nav {
  border-bottom: 1px solid rgba(184, 221, 245, 0.4);
  background: #fff;
  z-index: 10;
}

.sub-nav .inner {
  display: flex;
  flex-wrap: wrap;

  justify-content: center;
  gap: 12px;
  padding: 15px 0;
}

.sub-nav a {
  padding: 14px 32px;
  border-radius: 999px;
  color: var(--text-light);
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.sub-nav a:hover {
  background: var(--gray-200);
  color: #000;
}

.sub-nav a.active {
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
}

.sub-container {
  padding: 80px 0;
}

.sub-container .inner {
  box-sizing: border-box;
  max-width: 1400px;
  margin: 0 auto;
}

/* 기업개요 */
.info-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 0;
}
.company-wrap {
  display: flex;
  justify-content: space-between;
}
.company-info {
  max-width: 1000px;
  margin: 0 auto;
}

.company-title {
  font-size: 38px;
  font-weight: 700;
  text-align: left;
  margin-bottom: 50px;
  padding-left: 20px;
  border-left: 5px solid var(--blue);
}
.company-desc {
  font-size: 20px;
  line-height: 1.9;
  color: #4b5563;
  word-break: keep-all;
}

.company-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 54px;
}
.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  padding: 28px 16px;
  text-align: center;
}
.icon-item:last-child {
  border-right: 0;
}
.icon-item img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 18px;
}
.icon-item p {
  font-size: 17px;
  font-weight: 700;
  color: #0b2559;
  line-height: 1.4;
}
.company-box {
  flex: 0 0 500px;
  background: #f8fbff;
  border: 1px solid #dfe9f6;
  border-radius: 24px;
  padding: 34px 36px;
  box-shadow: 0 20px 50px rgba(15, 48, 95, 0.08);
}
.company-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.company-list li {
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: start;
  gap: 12px;
}
.company-list li span {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  line-height: 1.6;
}
.company-list li p {
  font-size: 16px;
  font-weight: 500;
  color: #5b6472;
  line-height: 1.6;
  word-break: keep-all;
}
/**********************************조직구성********************************/
/* --- ORGANIZATION CHART --- */
.org-chart {
  margin-top: 60px;
  padding: 20px 0;
  text-align: center;
}

/* 상단 (대표이사, 총괄이사) */
.org-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin-bottom: 60px;
}

.org-box {
  width: 200px;
  padding: 20px 0;
  font-size: 18px;
  font-weight: 700;
  border-radius: 5px;
  color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.org-box.red {
  background-color: var(--blue); /* 슈퍼콘 메인 레드 */
}

.org-box.dark-red {
  background-color: var(--navy); /* 다크 그레이/블랙으로 대비 */
}

/* 수직 연결선 */
.org-line {
  width: 2px;
  height: 30px;
  background-color: #ccc;
  margin: 0 auto;
}

/* 하단 부서 목록 레이아웃 */
.org-dept {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative;
  padding-top: 40px;
}

/* 부서 사이를 잇는 가로선 */
.org-dept::before {
  content: "";
  position: absolute;
  top: 0;
  left: 11.8%;
  right: 11.8%;
  height: 2px;
  background-color: #ccc;
}

/* 가로선에서 각 부서로 내려오는 짧은 수직선 */
.dept::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 40px;
  background-color: #ccc;
}

.dept {
  flex: 1;
  min-width: 160px;
  position: relative;
}

/* 부서 타이틀 */
.dept-title {
  background-color: var(--pastel-soft);
  color: #333;
  padding: 18px 5px;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 15px;
  border-radius: 4px;
  position: relative;
}

/* 팀 리스트 */
.team {
  background-color: var(--gray-200);

  padding: 15px;
  margin-bottom: 8px;
  font-size: 14px;
  color: #666;
  border-radius: 3px;
  transition: all 0.3s;
}

/* --- RESPONSIVE (반응형) --- */
@media (max-width: 1024px) {
  .org-dept {
    flex-wrap: wrap; /* 모바일/태블릿에선 줄바꿈 */
    gap: 30px 10px;
  }

  .dept {
    flex: none;
    width: 45%; /* 2열 배치 */
  }

  .org-dept::before,
  .dept::before {
    display: none; /* 모바일에서는 복잡한 선 제거 */
  }
}

@media (max-width: 480px) {
  .dept {
    width: 100%; /* 1열 배치 */
  }

  .org-box {
    width: 160px;
  }
}

/* 사업목표 */
.roadmap-top {
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 80px 0;
}

.roadmap-title {
  margin-top: 100px;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111;
}

.roadmap-desc {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.roadmap-desc li {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  position: relative;
  padding-left: 18px;
}

.roadmap-desc li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: #e21d1d;
  border-radius: 50%;
}

.roadmap-top img {
  width: 100%;
}

info-section {
  padding: 80px 0;
}

/* 사업방향 */
.biz-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 0;
}

.biz-title {
  margin-top: 100px;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.biz-sub {
  color: #777;
  margin-bottom: 40px;
}

.biz-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.biz-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px;
  border-radius: 16px;
  background: var(--pastel-soft);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.biz-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.biz-card:nth-child(even) {
  background: var(--gray-200);
}

.biz-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.biz-text h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--navy);
}

.biz-text p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.6;
}

/* 오시는 길 */
.location-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 0;
}

.location-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 40px;
}

.location-wrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.location-map {
  width: 100%;
  height: 500px;
  border-radius: 12px;
  overflow: hidden;
}

.root_daum_roughmap,
.root_daum_roughmap .wrap_map,
.root_daum_roughmap .map {
  width: 100% !important;
  height: 100% !important;
}

.location-info {
  padding: 30px;
  border-radius: 12px;
  background: var(--pastel-soft);
}

.location-info h4 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 700;
}

.location-info ul {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.location-info li {
  min-width: 200px;
}

.location-info li span {
  font-size: 13px;
  color: var(--blue);
  display: block;
  margin-bottom: 5px;
}

.location-info li p {
  font-size: 17px;
  color: #333;
}

.map-btn {
  display: inline-block;
  text-decoration: none;
  padding: 12px 24px;
  background: var(--blue);
  color: #fff;
  border-radius: 6px;
  transition: 0.3s;
}

/*******************플랫폼구성****************************/
.platform-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 0;
  text-align: center;
}

.platform-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 80px;
}

.platform-partner {
  width: 25%;
}

.platform-partner p {
  display: none;
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 20px;
}

.circle {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.circle.gray {
  width: 180px;
  height: 180px;
  background: var(--pastel-blue);
  margin: 0 auto;
  font-size: 14px;
}

.circle.red {
  width: 260px;
  height: 260px;
  background: var(--blue);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin: 20px auto 0;
  line-height: 1.4;
  transition: all 0.3s ease;
}

.circle.red:hover {
  background: #fff;
  color: var(--blue);
  border: 2px solid var(--blue);
  transform: scale(1.05);
}

.platform-logo {
  width: 120px;
  margin-bottom: 10px;
}

.platform-desc {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 10px;
  font-weight: 600;
}

.platform-bottom {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.service {
  flex: 1;
  padding: 18px;
  border-radius: 30px;
  color: var(--text-light);
  font-weight: 600;
  background: var(--gray-200);
}

.service span {
  display: block;
  font-size: 12px;
  opacity: 0.8;
  margin-top: 5px;
}

.circle.gray strong {
  display: block;
  font-weight: 700;
  font-size: 16px;
}
/*화살표*/
.platform-center {
  position: relative;
}

.arrow {
  position: absolute;
  top: 50%;
  width: 120px;
  height: 2px;
  background: var(--navy);
  transform: translateY(-50%);
}

/* 왼쪽 화살표 */
.arrow-left {
  right: 100%;
  margin-right: 20px;
}

.arrow-left::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid var(--navy);
}

/* 오른쪽 화살표 */
.arrow-right {
  left: 100%;
  margin-left: 20px;
}

.arrow-right::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid var(--navy);
}
/********************기대효과************************/
.value-section {
  padding: 60px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.value-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 0;
  position: relative;
}

/* 세로 연결선 */
.value-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 79px;
  top: 140px;
  bottom: 0;
  width: 2px;
  background: #e8e8e8;
  z-index: 0;
}

.value-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 60px;
  position: relative;
  z-index: 1;
}

.value-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.5;
  background: #fff;
  flex-shrink: 0;
  transition:
    background 0.25s,
    color 0.25s;
  cursor: default;
}

.value-right {
  padding: 18px 0 60px 40px;
}

.value-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 2px;
  margin-bottom: 12px;
  opacity: 0.7;
}

.value-main {
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.75;
  margin-bottom: 16px;
  word-break: keep-all;
}

.value-main .highlight {
  color: var(--blue);
}

.value-main .muted {
  color: #888;
  font-size: 14px;
}

.value-sub-wrap {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 16px;
  background: #fafafa;
  border-left: 3px solid var(--blue);
  border-radius: 0 6px 6px 0;
}

.value-arrow {
  display: flex;
  gap: 2px;
  flex-shrink: 0;
  padding-top: 3px;
}

.value-arrow span {
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid var(--blue);
  display: block;
}

.value-arrow span:last-child {
  margin-left: -4px;
  opacity: 0.5;
}

.value-sub {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
  word-break: keep-all;
}

/* 01 — 흰 배경 */
.value-item:nth-child(1) .value-circle {
  background: var(--pastel-soft);
  color: var(--blue);
}

/* 02 — 연한 빨간 배경 */
.value-item:nth-child(2) .value-circle {
  background: var(--pastel-blue);
}

/* 03 — 중간 빨간 배경 */
.value-item:nth-child(3) .value-circle {
  background: var(--gray-200);
  color: #000;
}

/* 04 — 진한 빨간 (완전히 채움) */
.value-item:nth-child(4) .value-circle {
  background: var(--blue);
  color: #fff;
}

/******************************************서비스개요******************************************/

.dt-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.dt-tag {
  font-size: 16px;
  color: #e02020;
  border: 1px solid #e02020;
  border-radius: 20px;
  padding: 4px 14px;
  font-weight: 500;
}

.dt-title {
  font-size: 30px;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.4;
}

.dt-title strong {
  font-weight: 700;
}

.dt-title-line {
  width: 40px;
  height: 3px;
  background: var(--blue);
  margin-bottom: 24px;
  border-radius: 2px;
}

.dt-desc {
  font-size: 18px;
  color: #444;
  line-height: 1.9;
  margin-bottom: 40px;
  word-break: keep-all;
}

.dt-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 60px;
}

.dt-card {
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 24px 20px;
  position: relative;
  background: #fff;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.dt-card-bar {
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 3px;
  background: var(--blue);
  border-radius: 0 0 2px 2px;
  opacity: 0;
  transition: opacity 0.2s;
}

.dt-card:hover .dt-card-bar {
  opacity: 1;
}

.dt-card-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 2px;
  margin-bottom: 10px;
  opacity: 0.7;
}

.dt-card-title {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
  line-height: 1.5;
}

.dt-card-desc {
  font-size: 13px;
  color: #777;
  line-height: 1.7;
  word-break: keep-all;
}

.service_image img {
  width: 90%;
  height: auto;
  display: block;
}
/*flowimg*/
.flow_img img {
  width: 90%;
}
/* 상단 정보 */
.b2c-info {
  margin-bottom: 60px;
}

.b2c-row {
  display: flex;
  align-items: center;
  gap: 30px;
}

.b2c-label {
  background: #e02020;
  color: #fff;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 14px;
  min-width: 100px;
  text-align: center;
  margin-bottom: 10px;
}
.b2c-label1 {
  background: #e02020;
  color: #fff;
  padding: 21px 35px;
  border-radius: 30px;
  font-size: 16px;
  min-width: 100px;
  text-align: center;
  margin-bottom: 10px;
}

.b2c-row ul {
  margin: 0;
  padding: 0;
}

.b2c-row li {
  font-size: 14px;
  color: #444;
}

/* 서비스 아이콘 영역 */
.b2c-services {
  display: flex;
  justify-content: space-between;
  margin: 80px 0;
  text-align: center;
}

.b2c-service img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
}

.b2c-service {
  text-align: center;
}

.b2c-service h4 {
  font-size: 16px;
  margin-bottom: 6px;
}

.b2c-service p {
  font-size: 13px;
  color: #666;
}

.b2c-service {
  width: 33%;
}

.b2c-service h4 {
  font-size: 16px;
  margin-bottom: 6px;
}

.b2c-service p {
  font-size: 13px;
  color: #666;
}

/* CTA */
.b2c-cta {
  text-align: center;
}

.b2c-cta h4 {
  font-size: 18px;
  margin-bottom: 20px;
}

.b2c-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn {
  background: #e02020;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  transition: 0.3s;
}

/*****************************해외서비스*******************************/
.global-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0;
}

.global-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.global-desc {
  color: #555;
  line-height: 1.8;
  margin-bottom: 50px;
  max-width: 800px;
}

.global-strategy {
  max-width: 500px;
  margin: 0 auto;
  background: linear-gradient(
    135deg,
    #ff5a4f 0%,
    var(--main-color) 60%,
    #d91c1c 100%
  );
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 60px;
  text-align: center;
}

.global-strategy h4 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #fff;
  font-weight: 700;
}

.global-strategy ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #fff;
}

.global-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.global-card {
  border: 1px solid var(--main-color);
  border-radius: 14px;
  padding: 30px;
  transition: all 0.3s ease;
  background: #fff;
}

.global-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.global-card h4 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 10px;
}

.global-card .sub {
  font-size: 14px;
  color: #e02020;
  margin-bottom: 15px;
  justify-content: left;
  padding: unset;
}

.global-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #555;
  font-size: 14px;
}
/*문의하기*/
.ct-box {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border-radius: 32px;
  padding: 4rem;
  box-shadow: 0 24px 64px rgba(13, 31, 78, 0.1);
}
.ct-hd {
  text-align: center;
  margin-bottom: 3rem;
}
.ct-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.fg {
  display: flex;
  flex-direction: column;
  gap: 0.48rem;
}
.fg.full {
  grid-column: 1 / -1;
}
.fg label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
}
.fg input,
.fg select,
.fg textarea {
  padding: 0.88rem 1.1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 12px;
  font-family: "Noto Sans KR", sans-serif;
  font-size: 0.88rem;
  color: var(--text);
  background: var(--gray-100);
  outline: none;
  resize: none;
  transition:
    border-color 0.2s,
    background 0.2s,
    box-shadow 0.2s;
  appearance: none;
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--pastel-sky);
  background: #fff;
  box-shadow: 0 0 0 4px var(--pastel-soft);
}
.fg textarea {
  height: 130px;
}
.ct-btn {
  grid-column: 1 / -1;
  background: var(--navy);
  color: #fff;
  border: none;
  padding: 1.1rem;
  border-radius: 14px;
  font-family: "Noto Sans KR", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 0.3rem;
  box-shadow: 0 6px 24px rgba(13, 31, 78, 0.16);
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
}
.ct-btn:hover {
  background: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(30, 111, 241, 0.26);
}

.ct-info {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--gray-200);
  flex-wrap: wrap;
}
.ci {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.ci-ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--pastel-soft);
  border: 1px solid var(--pastel-sky);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.ci span {
  font-size: 0.84rem;
  color: var(--text-light);
}

.contact1 {
  background:
    radial-gradient(
      ellipse 70% 60% at 10% 30%,
      var(--pastel-soft) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 60% 60% at 90% 80%,
      var(--pastel-blue) 0%,
      transparent 55%
    ),
    linear-gradient(160deg, #eaf5fd 0%, #d4edfb 100%);
}
/* 반응형 */
@media (max-width: 768px) {
  .mb {
    display: block !important;
  }

  .pc {
    display: none !important;
  }

  .sub-container {
    padding: 60px 0;
  }

  .biz-section {
    padding: 60px 20px;
  }

  .location-section {
    padding: 60px 20px;
  }

  .roadmap-top {
    padding: 60px 0;
    margin-bottom: 60px;
  }

  .company-desc {
    margin-bottom: 30px;
  }

  .biz-sub {
    margin-bottom: 30px;
  }

  .location-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .org-chart {
    padding: 0 20px;
  }

  .org-box {
    width: 100%;
    padding: 14px;
    font-size: 15px;
    box-sizing: border-box;
  }

  .org-line {
    height: 30px;
  }

  .org-dept {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .dept {
    width: 100%;
  }

  .dept-title {
    padding: 12px;
    font-size: 14px;
    text-align: center;
  }

  .team {
    background: none;
    color: #333;
    padding: 6px 0;
    margin: 0;
    text-align: center;
    font-size: 14px;
    background-color: var(--gray-200);
    margin-bottom: 5px;
  }

  .location-map {
    height: 320px;
  }

  .location-info {
    padding: 20px;
  }

  .location-info ul {
    flex-direction: column;
    gap: 15px;
  }

  .sub-visual {
    height: 200px;
  }

  .sub-nav .inner {
    gap: 4px;
    padding: 10px 8px;
  }

  .sub-nav a {
    padding: 8px 18px;
    font-size: 12px;
    white-space: nowrap;
  }

  .biz-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .biz-card {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    gap: 0px;
  }

  .biz-icon img {
    width: 70px;
  }

  .biz-text h4 {
    font-size: 16px;
  }

  .platform-partner p {
    font-size: 11px;
  }

  .info-section,
  .roadmap-top,
  .biz-section,
  .location-section {
    padding: unset;
  }

  .platform-section {
    padding: 40px 12px;
  }

  .platform-top {
    margin-bottom: 30px;
    gap: 4px;
  }

  .platform-partner {
    width: 28%;
  }

  .platform-partner p {
    font-size: 10px;
    margin-bottom: 8px;
  }

  .circle.gray {
    width: 85px;
    height: 85px;
    font-size: 9px;
  }

  .circle.gray strong {
    font-size: 10px;
  }

  .circle.red {
    width: 120px;
    height: 120px;
    font-size: 11px;
  }

  .platform-bottom {
    gap: 6px;
  }

  .service {
    font-size: 11px;
    padding: 10px 6px;
    border-radius: 20px;
  }

  .service span {
    font-size: 9px;
  }

  .platform-desc {
    font-size: 11px;
  }

  .value-item {
    grid-template-columns: 1fr;
  }

  .value-item:not(:last-child)::after {
    display: none;
  }

  .value-left {
    flex-direction: row;
    gap: 16px;
    padding-bottom: 16px;
    align-items: center;
    justify-content: center;
  }

  .value-right {
    padding: 0 0 40px 0;
  }

  .dt-section {
    padding: 0;
  }

  .dt-title {
    font-size: 20px;
  }

  .dt-desc {
    font-size: 14px;
  }

  .dt-desc br {
    display: none;
  }

  .dt-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .biz-title {
    margin-top: 50px;
    font-size: 17px;
  }

  .roadmap-title {
    margin-top: 50px;
  }

  .b2c-service {
    width: 100%;
    margin-bottom: 20px;
  }

  .b2c-services {
    flex-direction: column;
  }

  .global-card {
    padding: 16px;
  }

  .global-title {
    font-size: 19px;
  }

  .global-section {
    padding: 0;
  }

  .btn {
    font-size: 16px;
  }

  .roadmap-title {
    font-size: 19px;
  }
  .company-list li {
    grid-template-columns: 100px 1fr;
  }
  .company-list li img {
    max-width: 200px;
  }

  .Affiliate1 {
    max-width: 200px;
  }
  .ct-box {
    border-radius: 20px;
    padding: 2.5rem 2rem;
    margin: 0 1rem;
  }

  .ct-hd {
    margin-bottom: 2rem;
  }

  .ct-form {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .fg.full {
    grid-column: 1;
  }

  .ct-info {
    gap: 1.5rem;
  }
}
@media (max-width: 400px) {
  .sub-nav a {
    padding: 9px 14px;
    font-size: 12px;
  }
  .company-title {
    font-size: 30px;
  }
  .company-list span {
    width: 110px;
  }
  .sub-visual-inner h2 {
    font-size: 28px;
  }
  .desc {
    font-size: 12px;
  }
  .breadcrumb {
    display: none;
  }
  .ct-box {
    border-radius: 16px;
    padding: 2rem 1.2rem;
    margin: 0 0.75rem;
  }

  .ct-hd {
    margin-bottom: 1.5rem;
  }

  .ct-form {
    gap: 0.9rem;
  }

  .fg input,
  .fg select,
  .fg textarea {
    padding: 0.78rem 0.9rem;
    font-size: 0.84rem;
    border-radius: 10px;
  }

  .fg textarea {
    height: 110px;
  }

  .ct-btn {
    padding: 1rem;
    font-size: 0.95rem;
    border-radius: 12px;
  }

  .ct-info {
    gap: 1.2rem;
    margin-top: 1.8rem;
    padding-top: 1.8rem;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 0.5rem;
  }

  .ci span {
    font-size: 0.8rem;
  }
  .icon-item {
    padding: 0;
  }
  .icon-item p {
    font-size: 12px;
  }
  .service_image img {
    margin: 0 auto;
  }
}
