@charset "UTF-8";

/* ==========================================
   NEOK JAPAN - アクセス 전용 스타일 (access.css)
   ========================================== */

/* ------------------------------------------
   1. 상단 브레드크럼 & 타이틀 Header
   ------------------------------------------ */
.page-header {
  padding: 40px 0 50px;
  background-color: var(--white);
}

.breadcrumb {
  font-size: 13px;
  color: var(--text-gray);
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.breadcrumb a {
  color: var(--text-gray);
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: var(--main-navy);
}

.breadcrumb .separator {
  margin: 0 10px;
  color: #cbd5e0;
  font-weight: 300;
}

.breadcrumb .current {
  color: var(--main-navy);
  font-weight: 600;
}

.page-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--main-navy);
  letter-spacing: -0.5px;
}

/* ------------------------------------------
   2. 구글 지도 Section
   ------------------------------------------ */
.access-map-section {
  width: 100%;
  background-color: var(--white);
  padding-bottom: 60px;
}

.map-wrapper {
  max-width: 960px;
  margin: 0 auto;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.map-wrapper iframe {
  display: block;
  width: 100%;
}

/* ------------------------------------------
   3. 주소 및 오시는 길 정보 Section
   ------------------------------------------ */
.access-info-section {
  background-color: var(--white);
  padding-bottom: 100px;
}

.access-info-box {
  max-width: 960px;
  margin: 0 auto;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.info-row {
  display: flex;
  border-bottom: 1px solid #e2e8f0;
}

.info-row:last-child {
  border-bottom: none;
}

.info-title {
  width: 22%;
  font-size: 16px;
  font-weight: 700;
  color: var(--main-navy);
  margin: 0;
  padding: 24px 20px;
  background-color: #f8fafc; /* company 표와 동일한 연회색 배경 */
  display: flex;
  align-items: center;
}

.info-content {
  width: 78%;
  padding: 24px 20px;
}

.jp-address,
.station-info {
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.6;
  margin: 0;
}

.en-address {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.5;
  margin-top: 4px;
}

/* ------------------------------------------
   4. 모바일 반응형 (768px 이하)
   ------------------------------------------ */
@media (max-width: 768px) {
  .page-header {
    padding: 25px 0 30px;
  }

  .page-title {
    font-size: 24px;
  }

  .access-map-section {
    padding-bottom: 40px;
  }

  .map-wrapper {
    border-radius: 0;
  }

  .map-wrapper iframe {
    height: 320px;
  }

  .access-info-section {
    padding-bottom: 60px;
  }

  /* 모바일에서 [선 -> 제목 -> 내용 -> 선] 구조 유지 */
  .info-row {
    display: block;
    padding: 16px 0;
  }

  .info-title {
    width: 100%;
    font-size: 13px;
    margin-bottom: 6px;
    padding: 0;
    background-color: transparent; /* 모바일에서는 배경 제거 */
  }

  .info-content {
    width: 100%;
    padding: 0;
  }

  .jp-address,
  .station-info {
    font-size: 15px;
  }

  .en-address {
    font-size: 13px;
  }
}