@charset "utf-8";

/* =========================================================
   Sportschosun company responsive layer
   - 기존 company.css 유지
   - 본문 통이미지 영역을 HTML/CSS 반응형으로 전환
   - PC 기존 UI 최대한 유지
   - Mobile: 로고 + 햄버거 → /company/menu.htm 이동
========================================================= */

html,
body,
#main {
	max-width: 100%;
	overflow-x: hidden;
}

/* 로고 기본 크기 */
.gnb h1 img,
.company-logo img {
	display: block;
	width: 200px;
	height: auto;
}

/* 상단 배너 반응형 */
.keyV {
	width: 100%;
	height: 320px;
	overflow: hidden;
	text-align: center;
	background: #111;
}

.keyV img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* 페이지 제목: 기존 title 이미지 대체 */
.sc-page-heading {
	display: block;
	margin: 0;
	color: #0054a6;
	font-size: 20px;
	font-weight: 700;
	line-height: 24px;
	letter-spacing: -0.03em;
}

/* 본문 HTML 전환 공통 */
.cont.sc-html {
	width: 980px;
	margin: 90px auto 0;
	text-align: left;
	color: #555;
	font-size: 15px;
	line-height: 1.75;
	word-break: keep-all;
}

.sc-section {
	display: grid;
	grid-template-columns: 210px minmax(0, 1fr);
	gap: 70px;
	margin-bottom: 96px;
}

.sc-section:last-child {
	margin-bottom: 0;
}

.sc-section-label {
	color: #777;
	font-size: 18px;
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -0.05em;
	text-transform: uppercase;
}

.sc-section-body {
	border-top: 2px solid #555;
	padding-top: 24px;
}

.sc-section-body > *:first-child {
	margin-top: 0;
}

.sc-section-title {
	margin: 0 0 14px;
	color: #555;
	font-size: 24px;
	font-weight: 800;
	line-height: 1.45;
	letter-spacing: -0.04em;
}

.sc-section-subtitle {
	margin: 0 0 10px;
	color: #666;
	font-size: 20px;
	font-weight: 800;
	line-height: 1.45;
	letter-spacing: -0.04em;
}

.sc-lead {
	margin: 0 0 22px;
	color: #555;
	font-size: 16px;
	line-height: 1.8;
}

.sc-muted {
	color: #777;
}

/* 시각 이미지/대체 비주얼 공통 */
.sc-visual {
	display: block;
	width: 100%;
	margin: 0 0 24px;
	border-radius: 0;
	overflow: hidden;
	background: #f3f5f8;
}

.sc-visual img {
	display: block;
	width: 100%;
	height: auto;
}

.sc-visual-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 180px;
	padding: 32px;
	background:
		linear-gradient(135deg, rgba(20, 82, 160, 0.9), rgba(20, 82, 160, 0.58)),
		linear-gradient(45deg, #edf2f8, #dce6f2);
	color: #fff;
	font-size: 34px;
	font-weight: 800;
	letter-spacing: -0.03em;
	text-align: center;
}

/* 공통 테이블 */
.sc-table {
	width: 100%;
	border-collapse: collapse;
	border-top: 0;
	font-size: 14px;
	line-height: 1.55;
}

.sc-table th,
.sc-table td {
	padding: 14px 18px;
	border-bottom: 1px solid #e5e5e5;
	vertical-align: middle;
	text-align: left;
}

.sc-table th {
	width: 120px;
	background: #f5f5f7;
	color: #666;
	font-weight: 800;
}

.sc-table td {
	color: #555;
}

.sc-table.center th,
.sc-table.center td {
	text-align: center;
}

.sc-table .left {
	text-align: left;
}

/* 비전/가치 리스트 */
.sc-icon-list {
	display: grid;
	gap: 0;
}

.sc-icon-item {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr);
	gap: 18px;
	padding: 26px 0;
	border-bottom: 1px solid #ececec;
}

.sc-icon-item:first-child {
	padding-top: 0;
}

.sc-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: 2px solid #8eb2df;
	border-radius: 50%;
	color: #2f67b1;
	font-size: 17px;
	font-weight: 800;
	line-height: 1;
}

.sc-icon-title {
	margin: 0 0 8px;
	color: #666;
	font-size: 24px;
	font-weight: 800;
	line-height: 1.35;
	letter-spacing: -0.03em;
}

.sc-icon-item p {
	margin: 0;
	color: #555;
	font-size: 15px;
	line-height: 1.75;
}

/* 기본 경영철학 노드 */
.sc-node-map {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 42px;
	padding: 52px 36px;
	background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
	overflow: hidden;
}

.sc-node-map::before {
	content: "";
	position: absolute;
	inset: 16px;
	background:
		radial-gradient(circle at 30% 48%, rgba(47, 103, 177, 0.08), transparent 24%),
		radial-gradient(circle at 58% 42%, rgba(47, 103, 177, 0.08), transparent 24%),
		radial-gradient(circle at 76% 58%, rgba(47, 103, 177, 0.06), transparent 24%);
	pointer-events: none;
}

.sc-node {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 108px;
	padding: 18px;
	border-radius: 999px;
	background: #1f64b5;
	color: #fff;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.45;
	text-align: center;
	box-shadow: 0 10px 22px rgba(31, 100, 181, 0.16);
}

/* 회사소개 경영철학 4개 노드 */
.sc-node-map--company {
	position: relative;
	display: block;
	min-height: 340px;
	margin-top: 42px;
	padding: 0;
	background:
		radial-gradient(circle at 50% 50%, rgba(47, 103, 177, 0.08), transparent 34%),
		linear-gradient(180deg, #f8fafc 0%, #fff 100%);
	overflow: hidden;
}

.sc-node-map--company::before {
	content: "";
	position: absolute;
	left: 7%;
	right: 7%;
	top: 42px;
	bottom: 34px;
	background:
		radial-gradient(circle at 24% 58%, rgba(120, 140, 160, 0.14), transparent 24%),
		radial-gradient(circle at 47% 42%, rgba(120, 140, 160, 0.12), transparent 25%),
		radial-gradient(circle at 69% 44%, rgba(120, 140, 160, 0.12), transparent 24%),
		radial-gradient(circle at 83% 58%, rgba(120, 140, 160, 0.10), transparent 22%);
	pointer-events: none;
}

.sc-node-map--company .sc-node {
	position: absolute;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 148px;
	height: 148px;
	min-height: 0;
	padding: 18px;
	border-radius: 50%;
	background: #1f64b5;
	color: #fff;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.45;
	text-align: center;
	box-shadow: 0 10px 24px rgba(31, 100, 181, 0.16);
	box-sizing: border-box;
}

.sc-node-map--company .sc-node:nth-child(1) {
	left: 6%;
	top: 158px;
}

.sc-node-map--company .sc-node:nth-child(2) {
	left: 30%;
	top: 58px;
}

.sc-node-map--company .sc-node:nth-child(3) {
	right: 27%;
	top: 58px;
}

.sc-node-map--company .sc-node:nth-child(4) {
	right: 4%;
	top: 158px;
}

/* 광고/사진대여/정책용 */
.sc-feature-list {
	display: grid;
	gap: 0;
	margin-top: 28px;
	border-top: 1px solid #e5e5e5;
}

.sc-feature {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr);
	gap: 18px;
	padding: 22px 0;
	border-bottom: 1px solid #e5e5e5;
}

.sc-feature-icon {
	color: #2f67b1;
	font-size: 22px;
	font-weight: 800;
	line-height: 1;
}

.sc-feature p {
	margin: 0;
	color: #555;
	font-size: 15px;
	line-height: 1.75;
}

.sc-note {
	margin-top: 12px;
	color: #777;
	font-size: 13px;
	line-height: 1.6;
}

.sc-highlight {
	display: inline-block;
	margin-top: 14px;
	padding: 4px 8px;
	background: #0b5db3;
	color: #fff;
	font-weight: 800;
	line-height: 1.5;
}

/* 개인정보처리방침 텍스트 영역 반응형 보정 */
.policyBox {
	width: 980px;
	margin: 0 auto;
	text-align: left;
}

.policyBox .s_tit {
	float: left;
	width: 210px;
	color: #777;
	font-size: 18px;
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -0.05em;
}

.policyCont {
	float: right;
	width: 700px;
	line-height: 1.8;
	font-size: 14px;
	color: #333;
}

/* =========================================================
   Company header menu
   - PC: 기존 회사소개 가로 메뉴 유지
   - Mobile: 로고 + 오른쪽 햄버거
   - 햄버거 클릭 시 /company/menu.htm 이동
========================================================= */

.company-header {
	position: relative;
	z-index: 1000;
	background: #fff;
}

.company-header__inner {
	position: relative;
}

.company-menu-button {
	display: none;
}

/* PC */
@media (min-width: 769px) {
	.company-desktop-menu {
		display: block;
	}
}

/* Tablet */
@media (max-width: 1024px) {
	.gnb,
	.infoBox,
	.cont.sc-html,
	.policyBox {
		box-sizing: border-box;
		width: 100%;
		padding-left: 24px;
		padding-right: 24px;
	}

	.dropmenu {
		width: calc(100% - 220px);
	}

	.sc-section {
		grid-template-columns: 180px minmax(0, 1fr);
		gap: 44px;
	}
}

/* Mobile */
@media (max-width: 768px) {
	footer {
		margin-top: 80px;
	}

	.company-header {
		width: 100% !important;
	}

	.company-header .gnb.company-header__inner,
	.company-header__inner {
		box-sizing: border-box;
		display: flex !important;
		align-items: center !important;
		justify-content: space-between !important;
		width: 100% !important;
		max-width: none !important;
		min-width: 0 !important;
		height: 64px !important;
		margin: 0 !important;
		padding: 0 22px !important;
		text-align: left !important;
	}

	.company-header .gnb h1,
	.company-header .company-logo {
		float: none !important;
		display: block !important;
		width: auto !important;
		margin: 0 !important;
		padding: 0 !important;
		text-align: left !important;
		flex: 0 1 auto !important;
	}

	.company-header .company-logo img {
		display: block !important;
		width: 170px !important;
		max-width: 62vw !important;
		height: auto !important;
	}

	.company-desktop-menu,
	.company-header .dropmenu {
		display: none !important;
	}

	.company-menu-button {
		display: inline-flex !important;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 5px;
		width: 42px;
		height: 42px;
		margin: 0 -8px 0 auto !important;
		padding: 0;
		border: 0;
		background: transparent;
		text-decoration: none;
		flex: 0 0 42px !important;
	}

	.company-menu-button span {
		display: block;
		width: 25px;
		height: 2px;
		background: #111;
		border-radius: 2px;
	}

	.keyV {
		height: 180px !important;
	}

	.keyV img {
		display: block;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.content {
		margin: 20px 0;
	}

	.cont_info {
		padding-bottom: 18px;
	}

	.infoBox {
		width: 100% !important;
		padding: 0 20px !important;
		text-align: left !important;
	}

	.infoBox h2 {
		float: none !important;
		margin: 0 0 12px !important;
	}

	.infoBox ul {
		float: none !important;
	}

	.infoBox li {
		margin-left: 10px !important;
		font-size: 12px !important;
		line-height: 20px !important;
	}

	.infoBox li:first-child {
		margin-left: 0 !important;
	}

	.cont,
	.cont.sc-html {
		box-sizing: border-box;
		width: 100% !important;
		margin-top: 48px;
		padding-left: 22px !important;
		padding-right: 22px !important;
		font-size: 14px;
	}

	.sc-section {
		display: block;
		margin-bottom: 62px;
	}

	.sc-section-label {
		margin-bottom: 18px;
		font-size: 15px;
	}

	.sc-section-body {
		padding-top: 20px;
	}

	.sc-section-title {
		font-size: 21px;
	}

	.sc-section-subtitle {
		font-size: 18px;
	}

	.sc-lead {
		font-size: 15px;
	}

	.sc-table,
	.sc-table tbody,
	.sc-table tr,
	.sc-table th,
	.sc-table td {
		display: block;
		width: 100%;
		box-sizing: border-box;
	}

	.sc-table tr {
		border-bottom: 1px solid #e5e5e5;
	}

	.sc-table th {
		padding: 12px 14px 4px;
		border-bottom: 0;
		background: transparent;
		color: #2f67b1;
	}

	.sc-table td {
		padding: 4px 14px 12px;
		border-bottom: 0;
	}

	.sc-table.center th,
	.sc-table.center td {
		text-align: left;
	}

	.sc-icon-item,
	.sc-feature {
		grid-template-columns: 38px minmax(0, 1fr);
		gap: 14px;
	}

	.sc-icon-title {
		font-size: 20px;
	}

	.sc-node-map {
		grid-template-columns: 1fr;
		padding: 30px 22px;
	}

	.sc-node {
		min-height: 80px;
	}

	.sc-node-map--company {
		display: grid;
		grid-template-columns: 1fr;
		gap: 14px;
		min-height: 0;
		margin-top: 28px;
		padding: 24px 20px;
	}

	.sc-node-map--company::before {
		display: none;
	}

	.sc-node-map--company .sc-node,
	.sc-node-map--company .sc-node:nth-child(1),
	.sc-node-map--company .sc-node:nth-child(2),
	.sc-node-map--company .sc-node:nth-child(3),
	.sc-node-map--company .sc-node:nth-child(4) {
		position: static;
		width: 100%;
		height: auto;
		min-height: 76px;
		border-radius: 22px;
		font-size: 14px;
	}

	.policyBox {
		padding-left: 22px;
		padding-right: 22px;
	}

	.policyBox .s_tit,
	.policyCont {
		float: none;
		width: 100%;
	}

	.policyBox .s_tit {
		margin-bottom: 18px;
	}
}

/* =========================================================
   Legal pages: privacy policy / youth protection policy
   - 기존 법적 본문은 유지
   - 테이블/긴 문단 모바일 반응형 보정
========================================================= */

.sc-legal-content {
	color: #333;
	font-size: 14px;
	line-height: 1.9;
	word-break: keep-all;
}

.sc-legal-content p {
	margin: 0 0 18px;
}

.sc-legal-content h3,
.sc-legal-content h4 {
	margin: 34px 0 14px;
	color: #333;
	font-weight: 800;
	line-height: 1.45;
	letter-spacing: -0.04em;
}

.sc-legal-content h3 {
	font-size: 24px;
}

.sc-legal-content h4 {
	font-size: 18px;
}

.sc-legal-content ul {
	margin: 18px 0 34px;
	padding-left: 0;
	list-style: none;
	line-height: 1.9;
}

.sc-legal-content table {
	width: 100% !important;
	border-collapse: collapse;
	margin: 18px 0 28px;
	border-top: 2px solid #555;
	font-size: 13px;
	line-height: 1.7;
}

.sc-legal-content table th,
.sc-legal-content table td {
	width: auto !important;
	padding: 12px 14px;
	border: 1px solid #e5e5e5;
	vertical-align: top;
	text-align: left;
}

.sc-legal-content table th {
	background: #f5f5f7;
	color: #555;
	font-weight: 800;
}

.sc-legal-content table td p {
	margin: 0;
}

.sc-legal-index {
	padding: 18px 20px;
	background: #f7f7f8;
	border-top: 2px solid #555;
	color: #333;
	font-size: 14px;
	line-height: 1.9;
}

.sc-legal-contact-table th {
	width: 150px !important;
	background: #f5f5f7;
}

@media (max-width: 768px) {
	.sc-legal-content {
		font-size: 13px;
		line-height: 1.85;
		word-break: keep-all;
		overflow-wrap: anywhere;
	}

	.sc-legal-content h3 {
		font-size: 21px;
	}

	.sc-legal-content h4 {
		font-size: 17px;
	}

	.sc-legal-content table,
	.sc-legal-content table tbody,
	.sc-legal-content table tr,
	.sc-legal-content table th,
	.sc-legal-content table td {
		display: block;
		box-sizing: border-box;
		width: 100% !important;
	}

	.sc-legal-content table tr {
		border-bottom: 1px solid #e5e5e5;
	}

	.sc-legal-content table th,
	.sc-legal-content table td {
		border: 0;
		border-bottom: 1px solid #eee;
	}

	.sc-legal-content table th {
		padding: 12px 14px 4px;
		background: transparent;
		color: #2f67b1;
	}

	.sc-legal-content table td {
		padding: 4px 14px 12px;
	}
}

/* =========================================================
   Company board/location pages
   - 오시는 길 / 공지사항 / 채용공고 공통 보정
   - 무료 Google 지도 iframe 및 게시판 목록 반응형 대응
========================================================= */

/* 오시는 길 지도 */
.sc-location-map {
	position: relative;
	width: 100%;
	margin: 0 0 36px;
	background: #f5f5f5;
	border: 1px solid #eee;
	box-sizing: border-box;
	overflow: hidden;
}

.sc-location-map iframe {
	display: block;
	width: 100%;
	height: 420px;
	border: 0;
}

.sc-location-map img {
	display: block;
	width: 100%;
	height: auto;
	border: 0;
}

.sc-location-map__fallback {
	margin: -22px 0 34px;
	color: #777;
	font-size: 13px;
	line-height: 1.6;
}

.sc-location-map__fallback a {
	color: #0b4ea2;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.sc-location-info {
	display: grid;
	gap: 28px;
}

.sc-location-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 15px;
	line-height: 1.7;
}

.sc-location-table th,
.sc-location-table td {
	padding: 12px 0;
	border-bottom: 1px solid #eee;
	text-align: left;
	vertical-align: top;
}

.sc-location-table th {
	width: 150px;
	color: #555;
	font-weight: 800;
}

.sc-traffic-list {
	display: grid;
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.sc-traffic-list li {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 12px;
	color: #555;
	font-size: 15px;
	line-height: 1.6;
}

.sc-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 50px;
	padding: 4px 10px;
	border-radius: 999px;
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.2;
}

.sc-badge--subway {
	background: #8e44ad;
}

.sc-badge--blue {
	background: #1f76bd;
}

.sc-badge--green {
	background: #55a630;
}

.sc-badge--village {
	background: #66a63a;
}

/* 공지사항 / 채용공고 목록 */
.sc-board {
	width: 100%;
}

.sc-board-table {
	width: 100%;
	border-collapse: collapse;
	border-top: 2px solid #555;
	font-size: 15px;
	line-height: 1.6;
}

.sc-board-table th,
.sc-board-table td {
	padding: 16px 18px;
	border-bottom: 1px solid #eee;
	text-align: left;
	vertical-align: middle;
}

.sc-board-table th {
	color: #666;
	font-weight: 800;
}

.sc-board-table .sc-board-date {
	width: 140px;
	text-align: center;
	white-space: nowrap;
}

.sc-board-table a {
	color: #111;
	text-decoration: none;
}

.sc-board-table a:hover,
.sc-board-table a:focus {
	color: #0b4ea2;
	text-decoration: underline;
}

.sc-board-empty {
	text-align: center;
	color: #777;
}

.sc-board-paging,
.pageN {
	margin: 28px 0 0;
	text-align: center;
}

.sc-board-paging a,
.sc-board-paging span,
.pageN a,
.pageN span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 28px;
	height: 28px;
	margin: 0 3px;
	border: 1px solid #ddd;
	color: #333;
	font-size: 13px;
	text-decoration: none;
	box-sizing: border-box;
}

.sc-board-paging .on,
.pageN .on {
	border-color: #555;
	font-weight: 800;
}

@media (max-width: 768px) {
	.sc-location-map iframe {
		height: 300px;
	}

	.sc-location-table,
	.sc-location-table tbody,
	.sc-location-table tr,
	.sc-location-table th,
	.sc-location-table td {
		display: block;
		width: 100%;
		box-sizing: border-box;
	}

	.sc-location-table th {
		padding: 12px 0 2px;
		border-bottom: 0;
		color: #0b4ea2;
	}

	.sc-location-table td {
		padding: 0 0 12px;
	}

	.sc-traffic-list li {
		align-items: flex-start;
	}

	.sc-board-table {
		font-size: 14px;
	}

	.sc-board-table thead {
		display: none;
	}

	.sc-board-table,
	.sc-board-table tbody,
	.sc-board-table tr,
	.sc-board-table td {
		display: block;
		width: 100%;
		box-sizing: border-box;
	}

	.sc-board-table tr {
		padding: 14px 0;
		border-bottom: 1px solid #eee;
	}

	.sc-board-table td {
		padding: 0;
		border-bottom: 0;
	}

	.sc-board-table .sc-board-date {
		width: 100%;
		margin-top: 6px;
		text-align: left;
		color: #777;
		font-size: 13px;
	}
}

/* =========================================================
   Company board line fix
   - 공지사항 / 채용공고 게시판 상단 라인 중복 제거
   - sc-section-body 기본 border-top 제거
   - table border-top 1줄만 유지
========================================================= */

.sc-section--board .sc-section-body {
	border-top: 0;
	padding-top: 0;
}

.sc-section--board .sc-board-table {
	border-top: 2px solid #555;
}

/* =========================================================
   Company board detail pages
   - 공지사항 / 채용공고 상세 페이지
   - 기존 tableBox 상세 구조를 HTML/CSS 반응형 구조로 대체
========================================================= */

.sc-board-detail-table {
	table-layout: fixed;
}

.sc-board-detail-table .sc-board-detail-title {
	color: #111;
	font-size: 17px;
	font-weight: 800;
	line-height: 1.55;
	word-break: keep-all;
}

.sc-board-detail-table .sc-board-date {
	color: #555;
}

.sc-board-content {
	min-height: 180px;
	padding: 28px 0;
	color: #333;
	font-size: 15px;
	line-height: 1.9;
	word-break: keep-all;
	overflow-wrap: anywhere;
}

.sc-board-content img,
.sc-board-content iframe,
.sc-board-content video {
	max-width: 100%;
	height: auto;
}

.sc-board-content table {
	max-width: 100%;
	border-collapse: collapse;
}

.sc-board-content a {
	color: #0b4ea2;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.sc-board-download {
	margin-top: 20px;
	padding: 16px 18px;
	background: #f7f7f8;
	border: 1px solid #e5e5e5;
}

.sc-board-download a {
	color: #0b4ea2;
	font-weight: 800;
	text-decoration: none;
}

.sc-board-actions {
	margin-top: 24px;
	text-align: right;
}

.sc-board-list-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 86px;
	height: 36px;
	padding: 0 18px;
	border: 1px solid #555;
	color: #333;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	box-sizing: border-box;
}

.sc-board-list-button:hover,
.sc-board-list-button:focus {
	background: #111;
	color: #fff;
}

@media (max-width: 768px) {
	.sc-board-detail-table .sc-board-detail-title {
		font-size: 16px;
	}

	.sc-board-content {
		padding: 22px 0;
		font-size: 14px;
		line-height: 1.85;
	}

	.sc-board-actions {
		text-align: center;
	}

	.sc-board-list-button {
		width: 100%;
	}
}