:root {
  --red: #ff1e00;
  --black: #111;
  --box-bg: #f3f3f3;
  --box-border: #cfcfcf;
  --text: #222;
  --link: #111;
  --link-hover: #ff1e00;
  
  /* 가로폭 확장: 1280px -> 1400px (125% 확대 대응) */
  --max: 1400px;
  --line: #e7e7e7;
}

* { box-sizing: border-box; }
html, body { height: 100%; }

body {
  margin: 0;
  background: #fff;
  color: var(--text);
  font-family: "Noto Sans KR", sans-serif;
  /* 기본 폰트 사이즈 상향: 15px */
  font-size: 15px; 
}

.logo{ 
	font-family: "Times New Roman", Times, serif;
    font-size: 50px;
    line-height: 1;
    letter-spacing: 0.5px;
    margin: 0;
    font-weight: 400;
 }
.logo .red{ color:#ff3900; }
.logo .black{ color:#111; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
}

.center {
  min-height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  /* 상단 여백 확대 */
  padding-top: 180px; 
}

.hero {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo {
  margin: 0;
  line-height: 1;
}

.logo img {
  /* 로고 크기 확대: 300px -> 380px */
  width: 380px; 
  max-width: 80vw;
}

.tagline {
  margin: 10px 0 0;
  /* 12px -> 15px */
  font-size: 15px; 
  color: #555;
}

/* PC 기본: 박스 크기 및 내부 폰트 확대 */
.city1-box {
  margin-top: 40px;  
  background: var(--box-bg);
  border: 1px solid var(--box-border);
  padding: 30px; /* 내부 여백 확대 */
  width: 865px;
    min-width: 865px;
}

.city1-title {
  text-align: left;
  /* 12px -> 16px */
  font-size: 16px; 
  font-weight: 700;
  color: #000;
  margin: 0 0 15px;
}

.city1-links {
  display: flex;
  flex-wrap: wrap;
  /* 간격 확대 */
  gap: 12px 18px; 
  justify-content: flex-start;
  align-items: center;
  text-align: left;
  /* 12px -> 15px */
  font-size: 15px; 
  line-height: 1.6;
}

.city1-links a {
  color: var(--link);
  text-decoration: none;
}

/* ✅ 모바일: 리스트 화면 최적화 (768px 이하) */
@media (max-width: 768px) {
  .tagline { display: none; }
  .wrap { padding: 0; }
  
  .center {
    padding-top: 0px;
    justify-content: stretch;
  }
  
  .hero {
    align-items: stretch;
    text-align: left;
  }

  .logo {
    text-align: center;
    margin: 40px 0; /* 여백 조정 */
	font-size: 34px;
  }

  .city1-box {
    width: 100%;
    max-width: none;
    margin-top: 0px;
    background: transparent;
    border: none;
    padding: 0;
	min-width:100%;
  }

  .city1-title {
    margin: 0;
    padding: 10px; /* 모바일 터치 영역 고려 확대 */
    font-size: 14px; /* 제목 강조 */
    font-weight: 600;
    background: #f8f8f8;
    color: #444;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
  }

  .city1-links {
    display: block;
    /* 모바일 리스트 폰트 사이즈 확대 */
    font-size: 14px; 
    padding: 0;
    margin: 0;
  }

  .city1-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px; /* 터치하기 쉬운 높이 */
    border-bottom: 1px solid var(--line);
    color: #111;
  }

  .city1-links a::after {
    content: ">";
	color: #111;
	font-size: 14px;	
  }

  .city1-links a:active {
    background: #f0f0f0;
  }
}