@charset "utf-8";

/* ============================================
   SESSION (사옥초청 채용 설명회)
   ============================================ */
.sec-session {
  padding: 84px 0 64px;
  background: #fff;
  text-align: center;
}

.sec-session .sec-session-catch {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.sec-session .sec-session-catch img {
  display: block;
  width: 124px;
  height: 47px;
  object-fit: contain;
}

.sec-session .sec-session-catch span {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
  color: #676767;
}

.sec-session .sec-session-tit {
  margin-bottom: 32px;
  font-size: 68px;
  font-weight: 700;
  line-height: 1;
}

.sec-session .sec-session-desc {
  margin-bottom: 40px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-text-sub);
}

.sec-session .sec-session-note {
  margin: 0 0 71px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
  color: rgba(0, 0, 0, 0.5);
}

@media (max-width: 1024px) {
  .sec-session {
    padding: 120px 0 100px;
  }

  .sec-session .sec-session-tit {
    font-size: 48px;
  }

  .sec-session .sec-session-desc {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .sec-session {
    padding: 80px 0 70px;
  }

  .sec-session .sec-session-catch img {
    width: 96px;
    height: 36px;
  }

  .sec-session .sec-session-catch span {
    font-size: 15px;
  }

  .sec-session .sec-session-tit {
    margin-bottom: 20px;
    font-size: 32px;
  }

  .sec-session .sec-session-desc {
    margin-bottom: 28px;
    font-size: 15px;
  }

  .sec-session .sec-session-note {
    margin: 12px 0 40px;
    font-size: 12px;
  }
}

/* ============================================
   SESSION — 안내 카드 3종
   원본 카드 366 x 208 기준, 안쪽 요소는 절대배치
   ============================================ */
.card-info {
  display: flex;
  gap: 20px;
  align-items: stretch;
  justify-content: center;
  margin-bottom: 34px;
}

.card-info > li {
  position: relative;
  flex: 0 0 366px;
  height: 208px;
  border-radius: 30px;
  overflow: hidden;
  text-align: left;
  color: #fff;
}

/* 안쪽 가장자리를 밝히는 광택 */
.card-info > li::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.45);
  pointer-events: none;
}

.card-info-01 { background: #435dfd; }
.card-info-02 { background: #fb3caf; }
.card-info-03 { background: #fd7f35; }

/* 카드마다 기울어진 채로 겹쳐 빛을 내는 타원 */
.card-info .card-glow {
  position: absolute;
  width: 291.565px;
  height: 393px;
  mix-blend-mode: plus-lighter;
  pointer-events: none;
}

.card-info-01 .card-glow {
  top: -37.83px;
  left: 181.65px;
  transform: rotate(36.79deg);
}

.card-info-02 .card-glow {
  top: -158.9px;
  left: 190.05px;
  width: 362.453px;
  transform: rotate(-19.44deg);
}

.card-info-03 .card-glow {
  top: -54.83px;
  left: 255.58px;
  transform: rotate(36.73deg);
}

/* 오른쪽 아래를 채우는 장식 이미지 */
.card-info .card-obj {
  position: absolute;
  max-width: none;
  object-fit: contain;
  pointer-events: none;
}

.card-info-01 .card-obj {
  right: -1.15px;
  bottom: 24.64px;
  width: 176.052px;
  height: 167.579px;
  transform: rotate(-30deg);
}

.card-info-02 .card-obj {
  right: -23.16px;
  bottom: 15.21px;
  width: 196.638px;
  height: 200.641px;
  transform: rotate(9.72deg);
}

.card-info-03 .card-obj {
  right: -5.08px;
  bottom: -28.4px;
  width: 141.015px;
  height: 244.241px;
  transform: rotate(-20.99deg);
}

/* 일러스트가 제자리에서 조금씩 움직인다.
   각 이미지에 기울기가 걸려 있어 키프레임마다 그 회전을 함께 써준다 */
.card-info .card-obj {
  will-change: transform;
}

.card-info-01 .card-obj {
  animation: card-float-01 4.4s ease-in-out infinite;
}

.card-info-02 .card-obj {
  animation: card-tick-02 3.2s ease-in-out infinite;
}

.card-info-03 .card-obj {
  animation: card-bob-03 3.8s ease-in-out infinite;
}

/* 달력 — 천천히 떠오르며 살짝 기운다 */
@keyframes card-float-01 {
  0%, 100% { transform: rotate(-30deg) translate3d(0, 0, 0); }
  50%      { transform: rotate(-28.4deg) translate3d(0, -7px, 0); }
}

/* 알람시계 — 좌우로 짧게 흔들린 뒤 쉰다 */
@keyframes card-tick-02 {
  0%, 62%, 100% { transform: rotate(9.72deg); }
  67%           { transform: rotate(6.4deg); }
  73%           { transform: rotate(12.8deg); }
  79%           { transform: rotate(7.6deg); }
  85%           { transform: rotate(11.4deg); }
  91%           { transform: rotate(9.72deg); }
}

/* 위치핀 — 위아래로 부드럽게 떠다닌다 */
@keyframes card-bob-03 {
  0%, 100% { transform: rotate(-20.99deg) translate3d(0, 0, 0); }
  50%      { transform: rotate(-22.4deg) translate3d(0, -9px, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .card-info .card-obj {
    animation: none;
  }
}

/* 시계 그림 위로 시간 글자가 묻히지 않도록 깔아두는 번짐 */
.card-info .card-haze {
  position: absolute;
  background: #fb3caf;
  pointer-events: none;
}

.card-info .card-haze-1 {
  top: 129px;
  left: 153px;
  width: 74px;
  height: 35px;
  filter: blur(9px);
}

.card-info .card-haze-2 {
  top: 164px;
  left: 155px;
  width: 69px;
  height: 12px;
  opacity: 0.7;
  filter: blur(4px);
}

/* 번호 + 분류 */
.card-info .card-head {
  position: absolute;
  top: 26px;
  left: 24px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.card-info .card-num {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: #fff;
  font-size: 12px;
  font-weight: 700;
}

.card-info-01 .card-num { color: #435dfd; }
.card-info-02 .card-num { color: #fb3caf; }
.card-info-03 .card-num { color: #fd7f35; }

.card-info .card-cate {
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}

/* 본문 */
.card-info .card-body {
  position: absolute;
  left: 24px;
  bottom: 26px;
}

.card-info .card-date {
  display: block;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.528px;
  line-height: 1.2;
  white-space: nowrap;
}

.card-info .card-date + .card-date {
  margin-top: 14px;
}

.card-info .card-date .card-day {
  font-size: 20px;
  font-weight: 600;
}

.card-info .card-time {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.4px;
  line-height: 1.35;
  white-space: nowrap;
}

.card-info .card-time + .card-time {
  margin-top: 7px;
}

.card-info .card-time-name {
  color: rgba(255, 255, 255, 0.8);
}

.card-info .card-place {
  display: block;
  margin-bottom: 12px;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.56px;
  line-height: 1.2;
}

.card-info .card-addr {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.4px;
  line-height: 1.3;
}

/* 02 카드는 날짜와 시간 사이 간격이 좁다 */
.card-info-02 .card-date {
  margin-bottom: 20px;
}

@media (max-width: 1280px) {
  .card-info {
    gap: 14px;
  }

  .card-info > li {
    flex: 1 1 0;
    min-width: 0;
  }
}

@media (max-width: 1024px) {
  .card-info {
    flex-wrap: wrap;
  }

  .card-info > li {
    flex: 1 1 300px;
  }
}

@media (max-width: 768px) {
  .card-info {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
  }

  .card-info > li {
    flex: none;
    width: 100%;
    height: 180px;
    border-radius: 24px;
  }

  .card-info .card-date,
  .card-info .card-place {
    font-size: 24px;
  }

  .card-info .card-time,
  .card-info .card-addr {
    font-size: 17px;
  }
}

/* ============================================
   TIME TABLE
   ============================================ */
.sec-timetable {
  padding: 130px 0 140px;
  background: var(--color-bg);
}

.sec-timetable .sec-timetable-head {
  display: flex;
  gap: 20px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 44px;
}

.sec-timetable .sec-timetable-tit {
  font-family: var(--font-en);
  font-size: 100px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .sec-timetable {
    padding: 95px 0 95px;
  }

  .sec-timetable .sec-timetable-head {
    margin-bottom: 34px;
  }

  .sec-timetable .sec-timetable-tit {
    font-size: 64px;
  }
}

@media (max-width: 768px) {
  .sec-timetable {
    padding: 70px 0 70px;
  }

  .sec-timetable .sec-timetable-head {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }

  .sec-timetable .sec-timetable-tit {
    font-size: 44px;
  }
}

/* ============================================
   LOCATION
   원본 카드 404 x 440, 3단 배치
   ============================================ */
.sec-location {
  padding: 210px 0;
  background: #fff;
}

.sec-location .sec-location-tit {
  margin-bottom: 40px;
  font-family: var(--font-en);
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.loc-cards {
  display: flex;
  gap: 14px;
  align-items: stretch;
}

.loc-card {
  display: flex;
  flex: 1 1 0;
  min-width: 0;
  flex-direction: column;
  min-height: 440px;
  padding: 32px 20px 20px;
  border-radius: 14px;
  overflow: hidden;
  background: #f7f7f7;
}

/* 본문 글줄은 카드 가장자리에서 30px 떨어진다 (지도·버튼은 20px) */
.loc-card .loc-label,
.loc-card .loc-tit,
.loc-card .loc-addr,
.loc-card .loc-note,
.loc-card .loc-bus {
  padding: 0 10px;
}

.loc-label {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.16px;
  color: rgba(0, 0, 0, 0.5);
}

.loc-tit {
  display: block;
  margin-top: 36px;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
}

.loc-addr {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 600;
}

/* 지도 */
.loc-map {
  position: relative;
  height: 163px;
  margin-top: 30px;
  border-radius: 8px;
  overflow: hidden;
  background: #eaeaea;
}

.loc-map .map-tip {
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  color: var(--color-text);
}

.loc-links {
  display: flex;
  gap: 8px;
  align-items: stretch;
  margin-top: 30px;
}

.loc-links .loc-link {
  display: flex;
  flex: 1 1 0;
  min-width: 0;
  align-items: center;
  justify-content: center;
  padding: 16px 4px;
  border-radius: 8px;
  background: var(--color-text);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.32px;
  white-space: nowrap;
  color: #fff;
  transition: opacity 0.2s;
}

.loc-links .loc-link:hover {
  opacity: 0.75;
}

/* 크기·색은 .loc-bus-dest(호반써밋서초파크/파크뷰)와 동일하게 맞춘다 */
.loc-note {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 30px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.6);
}

/* 줄이 넘어가도 * 뒤 글자에 맞춰 들여쓰기된다 */
.loc-note > li {
  display: flex;
  gap: 5px;
}

.loc-note > li::before {
  content: '*';
  flex-shrink: 0;
}

/* 대중교통 */
.loc-bus {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 36px;
}

.loc-bus-group {
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: flex-start;
}

.loc-bus-name {
  font-size: 32px;  /* 셔틀버스 카드의 .loc-tit 과 동일 */
  font-weight: 800;
  line-height: 1.2;
}

.loc-bus-dest {
  font-size: 16px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.6);
}

.loc-bus-line {
  height: 1px;
  background: #eaeaea;
}

.loc-bus-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  align-items: center;
  width: 100%;
  margin-top: 7px;
  padding: 20px;
  border-radius: 8px;
  background: #fff;
}

.loc-bus-list > li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.32px;
  white-space: nowrap;
}

.loc-bus-list .bus-dot {
  display: block;
  flex-shrink: 0;
  width: 4px;
  height: 4px;
}

.bus-blue { background: #1983f1; }
.bus-red { background: #f00a09; }
.bus-green { background: #1ec766; }

@media (max-width: 1280px) {
  .sec-location {
    padding: 150px 0;
  }
}

@media (max-width: 1024px) {
  .sec-location {
    padding: 100px 0;
  }

  .sec-location .sec-location-tit {
    margin-bottom: 30px;
    font-size: 48px;
  }

  .loc-cards {
    flex-wrap: wrap;
  }

  .loc-card {
    flex: 1 1 320px;
    height: auto;
    min-height: 400px;
  }

  .loc-tit {
    margin-top: 24px;
    font-size: 28px;
  }

  .loc-bus-name {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .sec-location {
    padding: 70px 0;
  }

  .sec-location .sec-location-tit {
    font-size: 36px;
  }

  .loc-cards {
    flex-direction: column;
    gap: 12px;
  }

  .loc-card {
    flex: none;
    width: 100%;
    min-height: 0;
    padding: 24px 16px 16px;
  }

  .loc-card .loc-label,
  .loc-card .loc-tit,
  .loc-card .loc-addr,
  .loc-card .loc-note,
  .loc-card .loc-bus {
    padding: 0 6px;
  }

  .loc-tit {
    margin-top: 18px;
    font-size: 26px;
  }

  .loc-bus-name {
    font-size: 26px;
  }

  .loc-links {
    margin-top: 20px;
  }

  .loc-note {
    margin-top: 20px;
  }
}
