  /* 탭 네비게이션 */
.sub-nav-list {
  max-width: 952px;
  margin: 0 auto;
}

/* 오시는길 스타일 */
.location-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 0 100px;
}

.location-title {
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #222;
}

.location-address {
  text-align: center;
  font-size: 17px;
  color: #222;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.copy-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  color: #888;
  transition: color 0.3s;
}

.copy-btn:hover {
  color: #333;
}

.copy-btn svg {
  width: 18px;
  height: 18px;
}

/* 지도 버튼 */
.map-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
}

.map-btn {
  display: flex;
  align-items: center;
  width: 298px;
  height: 60px;
  gap: 10px;
  padding: 12px 25px;
  /*border: 1px solid #ddd;*/
  background-color: #f7f7f7;
  border-radius: 10px;
  font-size: 20px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s;
}

.map-btn:hover {
  border-color: #333;
}

.map-btn.kakao {
  background: #fee500;
  border-color: #fee500;
}

.map-btn.kakao span {
  padding-left: 20px;
}

.map-btn.kakao:hover {
  background: #f5dc00;
}

.map-btn.naver {
  background: #03c75a;
  border-color: #03c75a;
  color: #fff;
}

.map-btn.naver span {
  padding-left: 20px;
}

.map-btn.naver:hover {
  background: #02b350;
}

.map-btn.google span {
  padding-left: 20px;
}

.map-btn .icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  border-radius: 4px;
}

.map-btn.kakao .icon {
  background: #3c1e1e;
  color: #fee500;
  font-size: 10px;
}

.map-btn.naver .icon {
  background: #fff;
  color: #03c75a;
}

.map-btn.google .icon {
  color: #4285f4;
  font-size: 20px;
  font-weight: bold;
}

/* 교통편 안내 */
.traffic-section {
  margin-bottom: 40px;
}

.traffic-title {
  font-size: 20px;
  font-weight: bold;
  color: #222;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.traffic-item {
  display: flex;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}

.traffic-icon {
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
}

.traffic-icon svg {
  width: 24px;
  height: 24px;
}

.traffic-label {
  width: 60px;
  font-size: 17px;
  color: #222;
  font-weight: 500;
  margin: 0 60px 0 20px;
}

.traffic-content {
  flex: 1;
  display: flex;
  gap: 30px;
}

.traffic-content .traffic-line {
  width: 140px;
  height: 12px;
  border-bottom: 1px solid #d8d8d8;
}

.traffic-info {
}

.traffic-info:first-child {
  width: 234px;
}

.traffic-info p {
  font-size: 17px;
  color: #222;
  margin-bottom: 5px;
}

.traffic-info p.sub {
  font-size: 15px;
  color: rgba(34, 34, 34, 0.7);
}

.traffic-info .parking {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 5px;
  font-size: 15px;
  color: rgba(34, 34, 34, 0.7);
}

.traffic-info .parking span {
  font-size: 15px;
  color: #0088ff;
  font-weight: bold;
}



.traffic-info2 {
}



.traffic-info2 p {
  font-size: 17px;
  color: #222;
  margin-bottom: 5px;
}

.traffic-info2 p.sub {
  font-size: 15px;
  color: rgba(34, 34, 34, 0.7);
}

.traffic-info2 .parking {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 5px;
  font-size: 15px;
  color: rgba(34, 34, 34, 0.7);
}

.traffic-info2 .parking span {
  font-size: 15px;
  color: #0088ff;
  font-weight: bold;
}




/* 지도 영역 */
.map-area {
  width: 100%;
  height: 600px;
  background: #f5f5f5;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #999;
}

@media (max-width: 768px) {
  .map-buttons {
    flex-direction: column;
    align-items: center;
  }

  .map-btn {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }

  .traffic-content {
    flex-direction: column;
    gap: 15px;
  }

  .traffic-item {
    flex-wrap: wrap;
  }

  .traffic-icon {
    width: 40px;
  }

  .traffic-label {
    width: 50px;
  }

  .location-title {
    font-size: 24px;
  }
}
