@charset "UTF-8";
/* ==========================================================================
   Navigation Styles with Scroll Effect
   ========================================================================== */
#main-navigation {
	transition: background 220ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
#main-navigation.is-transparent, #main-navigation.is-detail {
	background: rgba(255, 255, 255, 0) !important;
	box-shadow: none !important;
}
#main-navigation.is-transparent .nav-link,
#main-navigation.is-transparent .nav-menu > .nav-item > .nav-link,
#main-navigation.is-transparent .nav-logo a {
	color: #fff !important;
}
#main-navigation.is-detail .nav-link,
#main-navigation.is-detail .nav-menu > .nav-item > .nav-link,
#main-navigation.is-detail .nav-logo a {
	color: var(--text-primary);
}
#main-navigation.is-solid {
	background: #fff !important;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}
#main-navigation.is-hidden {
	transform: translateY(-110%);
}

.navbar {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(227, 31, 65, 0.1);
	z-index: 1000;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	transform: translateY(0);
}
.navbar.nav-hidden {
	transform: translateY(-100%);
}
.navbar.nav-visible {
	transform: translateY(0);
	box-shadow: 0 4px 20px var(--shadow-light);
}

.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 2rem;
	max-width: 1440px;
	margin: 0 auto;
}

.nav-logo .logo-img {
	width: auto;
	height: 30px;
	margin: auto;
}
.nav-logo .nav-link {
	padding: 0;
}

.nav-menu {
	display: flex;
	gap: 2.5rem;
	list-style: none;
}

.nav-item {
	position: relative;
}

.nav-link {
	padding: 0.5rem 0;
	color: var(--text-primary);
	font-size: 1.6rem;
	font-weight: 500;
	text-decoration: none;
	transition: color 0.3s ease;
}
.nav-link:hover {
	color: var(--primary-color);
}

.dropdown:hover .dropdown-content, .dropdown:focus-within .dropdown-content {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateX(-50%);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s;
}

.dropdown-content {
	position: absolute;
	top: calc(100% + 8px);
	left: 50%;
	min-width: 200px;
	height: auto;
	margin: 0;
	padding: 0.5rem 0;
	list-style: none;
	background: #fff;
	box-shadow: 0 8px 25px var(--shadow-medium);
	border-radius: 8px;
	opacity: 0;
	visibility: hidden;
	transform: translateX(-50%);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.dropdown-content::before {
	content: "";
	position: absolute;
	top: -12px;
	left: 0;
	right: 0;
	height: 12px;
}
.dropdown-content li {
	list-style: none;
}
.dropdown-content li > a {
	display: block;
	padding: 0.75rem 1.25rem;
	line-height: 1.2;
	text-align: center;
	font-size: 1.5rem;
}
.dropdown-content li:hover > a {
	background: var(--bg-secondary);
	color: var(--primary-color);
}
.dropdown-content a {
	display: block;
	padding: 0.75rem 1.25rem;
	line-height: 1.2;
	color: var(--text-primary);
	text-decoration: none;
	transition: all 0.3s ease;
}

.hamburger {
	position: relative;
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 24px;
	height: 18px;
	cursor: pointer;
}
.hamburger span {
	display: block;
	width: 100%;
	height: 2px;
	background: #e31f41;
	border-radius: 999px;
	transition: all 0.3s ease;
}
.hamburger.is-active span:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}
.hamburger.is-active span:nth-child(2) {
	opacity: 0;
}
.hamburger.is-active span:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================================================
   Navigation Responsive
   ========================================================================== */
@media screen and (max-width: 1024px) {
	.nav-container {
		padding: 0.875rem 1.5rem;
	}
	.nav-menu {
		gap: 1.5rem;
	}
}
@media screen and (max-width: 768px) {
	#main-navigation, #main-navigation.is-transparent, #main-navigation.is-detail, #main-navigation.is-solid {
		background: rgba(255, 255, 255, 0.98) !important;
		box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06) !important;
		border-bottom: 1px solid rgba(227, 31, 65, 0.12);
	}
	#main-navigation.is-transparent .nav-link,
	#main-navigation.is-transparent .nav-menu > .nav-item > .nav-link,
	#main-navigation.is-transparent .nav-logo a, #main-navigation.is-detail .nav-link,
	#main-navigation.is-detail .nav-menu > .nav-item > .nav-link,
	#main-navigation.is-detail .nav-logo a {
		color: var(--text-primary) !important;
	}
	.nav-container {
		padding: 1rem 1.25rem;
	}
	.nav-logo .logo-img {
		height: 28px;
	}
	.hamburger {
		position: relative;
		z-index: 1101;
		display: flex;
	}
	.hamburger span {
		width: 24px;
		height: 2px;
		background: var(--primary-color);
		border-radius: 999px;
	}
	.nav-menu {
		position: fixed;
		top: 53px;
		right: -100%;
		z-index: 1099;
		display: flex;
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		gap: 0;
		width: 100%;
		height: calc(100vh - 53px);
		margin: 0;
		padding: 0;
		list-style: none;
		background: #fff;
		overflow-y: auto;
		transition: right 0.3s ease;
	}
	.nav-menu.active {
		right: 0;
	}
	.nav-item {
		width: 100%;
		border-bottom: 1px solid #e9e9e9;
	}
	.nav-item:last-child {
		border-bottom: 0;
	}
	.nav-link {
		display: block;
		padding: 18px 20px;
		color: #111 !important;
		font-size: 1.8rem;
		font-weight: 700;
		text-align: left;
	}
	.nav-link:hover, .nav-link:focus {
		color: var(--primary-color) !important;
	}
	.dropdown:hover .dropdown-content, .dropdown:focus-within .dropdown-content {
		transform: none;
	}
	.dropdown-content {
		position: static;
		top: auto;
		left: auto;
		display: block;
		width: 100%;
		min-width: 100%;
		margin: 0;
		padding: 0 0 12px;
		background: #fff;
		box-shadow: none;
		border-radius: 0;
		list-style: none;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: none;
	}
	.dropdown-content::before {
		display: none;
	}
	.dropdown-content li {
		list-style: none;
	}
	.dropdown-content li > a,
	.dropdown-content a {
		display: block;
		width: unset;
		padding: 10px 20px 10px 36px;
		color: #444;
		font-size: 1.5rem;
		font-weight: 500;
		line-height: 1.4;
		text-align: left;
		background: #fff;
	}
	.dropdown-content li > a:hover, .dropdown-content li > a:focus,
	.dropdown-content a:hover,
	.dropdown-content a:focus {
		color: var(--primary-color);
		background: #fff;
	}
	.dropdown-content li:hover > a {
		color: var(--primary-color);
		background: #fff;
	}
}
@media screen and (max-width: 480px) {
	.nav-container {
		padding: 0.9rem 1rem;
	}
	.nav-logo .logo-img {
		height: 26px;
	}
	.hamburger span {
		width: 22px;
	}
	.nav-link {
		padding: 16px 18px;
		font-size: 1.7rem;
	}
	.dropdown-content li > a,
	.dropdown-content a {
		padding: 9px 18px 9px 32px;
		font-size: 1.4rem;
	}
}
/* ==========================================================================
   Footer Styles
   ========================================================================== */
.footer {
	background: var(--bg-dark);
	color: rgba(255, 255, 255, 0.7);
	padding: 4rem 0 2rem;
}

.footer-content {
	display: grid;
	grid-template-columns: 2.5fr 1fr 1.5fr;
	gap: 4rem;
	margin-bottom: 3rem;
}

.footer-section h4 {
	font-size: 1.6rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: var(--accent-color);
}

.footer-section ul {
	list-style: none;
}

.footer-section ul li {
	margin-bottom: 0.75rem;
}

.footer-section a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-section a:hover {
	color: var(--accent-color);
}

.footer-logo img {
	height: 30px;
	margin-bottom: 1rem;
}

.company-description {
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.social-links {
	display: flex;
	gap: 1rem;
}

.social-links a {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.social-links a:hover {
	background: var(--primary-color);
	transform: translateY(-2px);
}

.contact-item {
	margin-bottom: 1rem;
	font-size: 1.65rem;
}

.contact-item h4 {
	color: var(--accent-color);
	display: block;
	margin-bottom: 0.5rem;
}

.footer-bottom {
	font-size: 1.3rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 2rem;
}

.footer-bottom-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
}

.footer-links {
	display: flex;
	gap: 2rem;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: var(--accent-color);
}

/* --- company_contents.css : history tablet rules --- */
@media screen and (max-width: 1024px) {
	.footer {
		background: var(--bg-dark);
		color: rgba(255, 255, 255, 0.7);
		padding: 4rem 0 2rem;
	}
	.footer .container {
		max-width: 90%;
	}
	.footer-content {
		display: grid;
		grid-template-columns: 2.3fr 0.7fr 1.2fr;
		gap: 2rem;
		margin-bottom: 3rem;
	}
	.footer-section h4 {
		font-size: 1.8rem;
		font-weight: 700;
		margin-bottom: 1.5rem;
		color: var(--accent-color);
	}
}
/* =========================================================
   MOBILE (<= 768px)
   ========================================================= */
@media screen and (max-width: 768px) {
	.footer-content {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		text-align: center;
		gap: 3rem;
		font-size: 1.3rem;
	}
	.social-links {
		justify-content: center;
	}
	.contact-item {
		font-size: 1.3rem;
	}
	.contact-item h4 {
		font-size: 1.5rem;
	}
	.footer-bottom-content {
		font-size: 1.3rem;
	}
}
/* ==========================================================================
   main.scss
   Extracted for index.html only
   Source basis: style_main.css + components.css + responsive.css
   Notes:
   - Keeps only selectors required by index.html.
   - Excludes legacy/other-page responsive rules.
   - Excludes navigation/footer styles managed by their own CSS files.
   - Includes .flex-warp because index.html uses that class.
   ========================================================================== */
:root {
	--primary-color: #E31F41;
	--secondary-color: #1A1A2E;
	--accent-color: #00F5FF;
	--text-primary: #333333;
	--text-secondary: #666666;
	--text-light: #FFFFFF;
	--bg-primary: #FFFFFF;
	--bg-secondary: #F8F9FA;
	--bg-dark: #1A1A2E;
	--shadow-light: rgba(0, 0, 0, 0.1);
	--shadow-medium: rgba(0, 0, 0, 0.15);
	--shadow-dark: rgba(0, 0, 0, 0.25);
	--gradient-primary: linear-gradient(135deg, var(--primary-color), #FF4D6D);
	--gradient-cyber: linear-gradient(135deg, var(--accent-color), #4FC3F7);
	--gradient-dark: linear-gradient(135deg, var(--secondary-color), #2C2C54);
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body {
	overflow-x: hidden;
	color: var(--text-primary);
	background-color: var(--bg-primary);
}

.news-section .container,
.solutions-section .container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 20px;
}

/* ========================================================================== 
   Hero
   ========================================================================== */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--gradient-dark);
	overflow: hidden;
}
.hero-background {
	position: absolute;
	inset: 0;
	z-index: 1;
}
.hero-background img {
	width: 100%;
	height: 100%;
	/* 이미지가 영역을 가득 채우되, 비율을 유지하며 넘치는 부분은 자릅니다. */
	object-fit: cover;
	object-position: center center; /* 가로 세로 모두 중앙 기준 */
}
.hero-content {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 4rem;
	align-items: center;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 2rem;
}
.hero-text {
	color: var(--text-light);
}
.hero-title {
	font-size: 5rem;
	font-weight: 900;
	line-height: 1.1;
	margin-bottom: 1.5rem;
	letter-spacing: -0.02em;
}
.hero-subtitle {
	font-size: 1.8rem;
	font-weight: 300;
	margin-bottom: 2.5rem;
	opacity: 0.9;
	line-height: 1.6;
}
.hero-buttons {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}
.hero-visual {
	display: flex;
	justify-content: center;
	align-items: center;
}

.ai-particles {
	position: absolute;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at 20% 30%, var(--accent-color) 2px, transparent 2px), radial-gradient(circle at 60% 70%, var(--primary-color) 1px, transparent 1px), radial-gradient(circle at 80% 20%, var(--accent-color) 1.5px, transparent 1.5px);
	background-size: 200px 200px, 150px 150px, 300px 300px;
	animation: particleFloat 20s linear infinite;
	opacity: 0.6;
}

@keyframes particleFloat {
	0% {
		transform: translate(0, 0) rotate(0deg);
	}
	100% {
		transform: translate(-50px, -100px) rotate(360deg);
	}
}
.data-streams {
	position: absolute;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent 48%, var(--accent-color) 49%, var(--accent-color) 51%, transparent 52%), linear-gradient(180deg, transparent 48%, var(--primary-color) 49%, var(--primary-color) 51%, transparent 52%);
	background-size: 100px 100px, 150px 150px;
	animation: dataFlow 15s linear infinite;
	opacity: 0.1;
}

@keyframes dataFlow {
	0% {
		transform: translateX(0) translateY(0);
	}
	100% {
		transform: translateX(-100px) translateY(-150px);
	}
}
.tech-grid {
	position: absolute;
	width: 120%;
	height: 120%;
	top: -10%;
	left: -10%;
	background-image: linear-gradient(rgba(0, 245, 255, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 245, 255, 0.1) 1px, transparent 1px);
	background-size: 50px 50px;
	animation: gridPulse 8s ease-in-out infinite;
}

@keyframes gridPulse {
	0%, 100% {
		opacity: 0.3;
		transform: scale(1);
	}
	50% {
		opacity: 0.6;
		transform: scale(1.05);
	}
}
@keyframes cubeRotate {
	0% {
		transform: rotateX(0deg) rotateY(0deg);
	}
	100% {
		transform: rotateX(360deg) rotateY(360deg);
	}
}
@keyframes mouseScroll {
	0% {
		opacity: 1;
		transform: translateY(0);
	}
	100% {
		opacity: 0;
		transform: translateY(12px);
	}
}
.gradient-text {
	color: var(--text-light);
}

.btn {
	padding: 1rem 2rem;
	border: none;
	border-radius: 50px;
	font-size: 1.3rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}
.btn-primary {
	background: var(--gradient-primary);
	color: #fff;
	box-shadow: 0 4px 15px rgba(227, 31, 65, 0.3);
}
.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(227, 31, 65, 0.4);
}
.btn-secondary {
	background: transparent;
	color: var(--accent-color);
	border: 2px solid var(--accent-color);
}
.btn-secondary:hover {
	background: var(--accent-color);
	color: var(--secondary-color);
	transform: translateY(-2px);
}

.ai-cube {
	position: relative;
	width: 200px;
	height: 200px;
	transform-style: preserve-3d;
	animation: cubeRotate 20s linear infinite;
}

.cube-face {
	position: absolute;
	width: 200px;
	height: 200px;
	border: 2px solid var(--accent-color);
	background: rgba(0, 245, 255, 0.1);
}
.cube-face.front {
	transform: rotateY(0deg) translateZ(100px);
}
.cube-face.back {
	transform: rotateY(180deg) translateZ(100px);
}
.cube-face.right {
	transform: rotateY(90deg) translateZ(100px);
}
.cube-face.left {
	transform: rotateY(-90deg) translateZ(100px);
}
.cube-face.top {
	transform: rotateX(90deg) translateZ(100px);
}
.cube-face.bottom {
	transform: rotateX(-90deg) translateZ(100px);
}

.scroll-indicator {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
}

.mouse {
	width: 24px;
	height: 40px;
	border: 2px solid var(--accent-color);
	border-radius: 12px;
	display: flex;
	justify-content: center;
	padding-top: 8px;
}

.wheel {
	width: 3px;
	height: 6px;
	background: var(--accent-color);
	border-radius: 2px;
	animation: mouseScroll 2s infinite;
}

/* ========================================================================== 
    Section header
   ========================================================================== */
.section-header {
	text-align: center;
	margin-bottom: 4rem;
}
.section-title {
	font-size: 5.3rem;
	font-weight: 900;
	margin-bottom: 1rem;
	color: var(--text-primary);
}
.section-subtitle {
	font-size: 1.8rem;
	color: var(--text-secondary);
	max-width: 600px;
	margin: 0 auto;
}

/* ========================================================================== 
   News
   ========================================================================== */
.news-section {
	padding: 6rem 0;
	background: var(--bg-secondary);
}
.news-section .swiper-button-next,
.news-section .swiper-button-prev {
	color: var(--primary-color) !important;
	background: #fff;
	width: 44px !important;
	height: 44px !important;
	border-radius: 50%;
	box-shadow: 0 4px 15px var(--shadow-light);
	transition: all 0.3s ease;
}
.news-section .swiper-button-next::after,
.news-section .swiper-button-prev::after {
	font-size: 16px !important;
	font-weight: 700;
}
.news-section .swiper-button-next:hover,
.news-section .swiper-button-prev:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 20px var(--shadow-medium);
}
.news-container {
	position: relative;
}
.news-swiper {
	padding: 2rem 0;
}
.news-card {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 10px var(--shadow-light);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	height: 100%;
}
.news-card:hover {
	box-shadow: 0 6px 6px var(--shadow-medium);
}
.news-image {
	position: relative;
	width: 100%;
	height: 200px;
	overflow: hidden;
}
.news-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}
.news-category {
	position: absolute;
	top: 1rem;
	right: 1rem;
	padding: 0.5rem 1.2rem;
	border-radius: 16px;
	font-size: 1.2rem;
	font-weight: 600;
	color: #fff;
}
.news-category.public {
	background: var(--gradient-primary);
}
.news-category.enterprise {
	background: var(--gradient-cyber);
}
.news-category.company {
	background: var(--gradient-dark);
}
.news-content {
	padding: 1.5rem;
}
.news-content h3 {
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
	line-height: 1.5;
	color: var(--text-primary);
}
.news-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0.75rem;
}
.news-date {
	color: var(--text-secondary);
	font-size: 0.875rem;
}

/* ========================================================================== 
    Solutions
   ========================================================================== */
.solutions-section {
	padding: 6rem 0;
	background: var(--bg-primary);
}
.solutions-section .feature-tag {
	background: var(--bg-secondary);
	color: var(--text-primary);
	padding: 0.5rem 1rem;
	border-radius: 16px;
	font-size: 1.4rem;
	font-weight: 500;
}
.solutions-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}
.solutions-features {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	justify-content: center;
	margin-bottom: 2rem;
}

.solution-card {
	background: #fff;
	border-radius: 20px;
	padding: 2rem;
	text-align: center;
	box-shadow: 0 4px 20px var(--shadow-light);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
	min-height: 400px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
}
.solution-card:hover {
	transform: translateY(-12px);
	box-shadow: 0 20px 60px var(--shadow-medium);
}
.solution-card:hover .solution-icon {
	transform: scale(1.1) rotateY(180deg);
}
.solution-card .card-tit {
	font-size: 1.7rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--text-primary);
}
.solution-card .card-sub {
	color: var(--text-secondary);
	margin-bottom: 1.5rem;
	line-height: 1.6;
}
.solution-icon {
	width: 76px;
	height: 76px;
	margin: 1.5rem auto;
	transition: transform 0.3s ease;
}
.solution-icon img {
	width: 100%;
	display: block;
}
.solution-btn {
	background: var(--gradient-primary);
	color: #fff;
	border: none;
	padding: 0.875rem 2rem;
	border-radius: 50px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}
.solution-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(227, 31, 65, 0.3);
}

/* index.html uses .flex-warp, not .text-wrap */
.flex-warp {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

/* ========================================================================== 
    Responsive
    - main-only selectors kept
   ========================================================================== */
@media screen and (max-width: 1024px) {
	.news-section .container,
	.solutions-section .container {
		padding: 0 16px;
	}
	.hero-content {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 2rem;
		padding: 0 1.5rem;
	}
	.hero-visual {
		display: none;
	}
	.hero-title {
		font-size: 3.5rem;
	}
	.section-title {
		font-size: 2.6rem;
	}
	.solutions-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media screen and (max-width: 768px) {
	.news-section .container,
	.solutions-section .container {
		padding: 0 16px;
	}
	.hero-title {
		font-size: 2.2rem;
	}
	.hero-subtitle {
		font-size: 1.5rem;
	}
	.hero-buttons {
		flex-direction: column;
		align-items: center;
	}
	.btn {
		width: 100%;
		max-width: 320px;
	}
	.section-title {
		font-size: 2.2rem;
	}
	.section-subtitle {
		font-size: 1.2rem;
		padding: 0 1rem;
	}
	.solutions-grid {
		grid-template-columns: 1fr;
	}
	.news-section .swiper-button-next,
	.news-section .swiper-button-prev {
		display: none;
	}
}
@media screen and (max-width: 480px) {
	.news-section,
	.solutions-section {
		padding: 4.5rem 0;
	}
	.news-section .container,
	.solutions-section .container {
		padding: 0 12px;
	}
	.hero-title {
		font-size: 1.9rem;
	}
	.hero-subtitle {
		font-size: 0.95rem;
	}
	.section-title {
		font-size: 2rem;
	}
	.section-subtitle {
		font-size: 1.1rem;
	}
	.feature-tag {
		font-size: 0.95rem;
		padding: 0.4rem 0.8rem;
	}
	.btn {
		max-width: 280px;
	}
	.solution-card {
		padding: 1.5rem;
		min-height: auto;
	}
}
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}
.contents_area .company {
	width: 80%;
	margin: 0 auto;
}

.title_wrap {
	max-width: 1440px;
	font-size: 6rem;
	margin: 0 auto;
	padding: 140px 0 0;
}

.company .contentswrap {
	border: 0px;
	height: 100%;
	margin-bottom: 30px;
	max-width: 1440px;
	margin: 50px auto 120px;
}
.company .contentstitle {
	margin: 40px auto 70px;
	width: 100%;
	height: 100%;
	text-align: center;
}
.company .subtitle {
	font-size: 4.8rem;
	font-weight: 700;
	line-height: 48px;
	margin: 30px 0 0 0;
}
.company .contentswrap_d {
	max-width: 1440px;
	margin: 0 auto;
}
.company .contentstxt {
	max-width: 1440px;
	margin: 0 0 30px 0;
	line-height: 30px;
	text-align: center;
}
.company .company_info {
	display: block;
	width: 100%;
	height: auto;
	border-top: 1px solid #dddddd;
	border-bottom: 1px solid #dddddd;
}
.company .info_table {
	width: auto;
	height: 100%;
	margin-left: auto;
	margin-right: auto;
	line-height: 35px;
	margin: 60px auto;
}
.company .info_table tr {
	display: block;
	float: left;
}
.company .info_table tr:first-child {
	width: 80px;
}
.company .info_table td {
	display: block;
}
.company .history {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 20px 120px;
	color: #111;
}
.company .history__head {
	padding: 52px 40px 48px;
	background-color: #f5f5f5;
	border-radius: 24px;
	text-align: center;
}
.company .history__title {
	margin: 0;
	font-size: 48px;
	font-weight: 700;
	line-height: 1.2;
}
.company .history__tab-scroll {
	margin-top: 32px;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
}
.company .history__tab-scroll::-webkit-scrollbar {
	height: 6px;
}
.company .history__tab-scroll::-webkit-scrollbar-thumb {
	background: rgba(0, 0, 0, 0.18);
	border-radius: 999px;
}
.company .history__tabs {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: max-content;
	white-space: nowrap;
}
.company .history__tab {
	flex: 0 0 auto;
	min-width: 140px;
	height: 54px;
	padding: 0 28px;
	border: 1px solid #8f8f8f;
	border-radius: 999px;
	background-color: #fff;
	color: #222;
	font-size: 18px;
	font-weight: 600;
	line-height: 1;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.company .history__tab.is-active {
	border-color: #da291c;
	background-color: #da291c;
	color: #fff;
}
.company .history__tab-divider {
	position: relative;
	display: inline-block;
	width: 24px;
	height: 20px;
	flex: 0 0 auto;
}
.company .history__tab-divider::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 1px;
	height: 14px;
	background-color: #bcbcbc;
	transform: translate(-50%, -50%);
}
.company .history__body {
	margin-top: 68px;
}
.company .history__panel {
	display: none;
}
.company .history__panel.is-active {
	display: block;
}
.company .history__timeline {
	display: flex;
	flex-direction: column;
}
.company .history__item {
	display: grid;
	grid-template-columns: minmax(180px, 1fr) 44px minmax(320px, 1fr);
	column-gap: 32px;
	align-items: start;
}
.company .history__item + .history__item {
	margin-top: 28px;
}
.company .history__item:last-child .history__axis {
	min-height: 120px;
}
.company .history__item:last-child .history__line {
	bottom: 0;
}
.company .history__year {
	padding-top: 2px;
	font-size: 60px;
	font-weight: 700;
	line-height: 1;
	text-align: right;
	letter-spacing: -0.03em;
}
.company .history__axis {
	position: relative;
	display: flex;
	justify-content: center;
	min-height: 160px;
	height: 100%;
}
.company .history__dot {
	position: relative;
	z-index: 1;
	display: block;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background-color: #da291c;
}
.company .history__line {
	position: absolute;
	top: 18px;
	bottom: 0;
	left: 50%;
	width: 1px;
	background-color: #d9d9d9;
	transform: translateX(-50%);
}
.company .history__content {
	padding-top: 12px;
}
.company .history__list {
	margin: 0;
	padding: 0;
	list-style: none;
}
.company .history__list li {
	position: relative;
	padding-left: 16px;
	font-size: 18px;
	line-height: 1.9;
	color: #222;
	word-break: keep-all;
}
.company .history__list li::before {
	content: "";
	position: absolute;
	top: 0.95em;
	left: 0;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background-color: currentColor;
	transform: translateY(-50%);
}
.company .ufo img, .company .arrow img {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.company .business_wrap, .company .d_people_wrap, .company .d_people_wrap_line, .company .d_benefit_01, .company .d_recruit_wrap01, .company .d_recruit_wrap02, .company .download_btn {
	width: 100%;
	text-align: center;
}
.company .d_people, .company .d_people_line, .company .d_benefit, .company .d_recruit, .company .arrow {
	display: inline-block;
	text-align: center;
	letter-spacing: -0.5px;
}
.company .d_people ul, .company .d_benefit ul, .company .d_recruit ul, .company .arrow img, .company .download_btn {
	text-align: center;
	text-decoration-color: #333333;
}
.company .d_people ul img, .company .d_benefit ul img {
	height: auto;
}
.company .line_l {
	width: 1px;
	border-left: 1px solid #e3e3e3;
	transform: rotate(13deg);
}
.company .line_r {
	width: 1px;
	border-left: 1px solid #e3e3e3;
	transform: rotate(-13deg);
}
.company .d_people ul {
	font-size: 1.6rem;
}

.company_patent .contents_background {
	width: 100vw;
	padding: 0.1rem 0 10rem;
	background-color: #fbfbfb;
}
.company_patent .contentswrap_d {
	max-width: 1440px;
	margin: 0 auto;
	color: #111;
}
.company_patent .d_patent_wrap {
	height: auto;
	margin: 5px auto;
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	row-gap: 2rem;
}
.company_patent .d_patent_wrap li {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.company_patent .d_patent-img {
	display: flex;
	justify-content: center;
}
.company_patent .d_patent-img img {
	width: 75%;
}
.company_patent .d_patent-txt {
	font-size: 1.2rem;
	padding: 2.5px;
	text-align: center;
	line-height: 1.35rem;
}

.company_location {
	width: 100%;
	text-align: center;
	margin: 0 0 70px;
}
.company_location iframe {
	width: 100%;
	height: 400px;
}
.company_location .directions {
	width: 100%;
	height: 330px;
	margin: 10px;
}
.company_location .locationWrap {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.company_location .locationWrap:not(:last-child) {
	margin-bottom: 18px;
}
.company_location .locationWrap .location_tit {
	font-family: "NanumGothicB", "돋움", "돋움체";
	color: #e41e31;
	display: inline-block;
	width: 5vw;
	font-size: 1.5rem;
	line-height: 22px;
	text-align: left;
}
.company_location .locationWrap .location_txt {
	font-family: "NanumGothic", "돋움", "돋움체";
	color: #202020;
	letter-spacing: -0.5px;
	display: inline-block;
	font-size: 1.5rem;
	line-height: 20px;
	margin-left: 5px;
}

@media screen and (max-width: 1024px) {
	.contents_area .business {
		width: 80%;
		margin: 0 auto;
	}
	.title_wrap {
		max-width: 100%;
		width: 80%;
		font-size: 4rem;
		margin: 0 auto;
		padding: 140px 0;
	}
	.company .contentswrap {
		max-width: 100%;
		width: 90%;
		margin: 50px auto 120px;
		padding: 0;
	}
	.company.company_location {
		margin: 0 0 60px;
	}
	.company.company_location .directions {
		width: 100%;
		height: unset;
		margin: 10px;
	}
	.company.company_location .locationWrap .location_tit {
		width: 100px;
		text-align: left;
	}
	.company_patent .contents_background {
		width: 100vw;
		padding: 0.1rem 0 10rem;
		background-color: #fbfbfb;
	}
	.company_patent .contentswrap_d {
		width: 80%;
	}
	.company_patent .d_patent_wrap {
		height: auto;
		margin: 5px auto;
		display: grid;
		grid-template-columns: repeat(4, 1fr);
	}
}
/* =========================================================
   MOBILE (<= 768px)
   ========================================================= */
@media screen and (max-width: 768px) {
	.title_wrap {
		max-width: unset;
		width: 90%;
		font-size: 4rem;
		margin: 0 auto;
		padding: 140px 0 50px;
	}
	.company .contentswrap {
		max-width: 100%;
		width: 100%;
		margin: 50px auto 120px;
		padding: 0;
	}
	.company .contentstitle {
		margin: 0 0 30px;
	}
	.company .subtitle {
		font-size: 3.8rem;
		line-height: 48px;
		margin: 30px 0 0 0;
	}
	.company .contentstitle {
		margin: 0 0 30px;
	}
	.company .contentstxt {
		width: 90%;
		margin: 0 auto 30px;
		line-height: 30px;
		word-break: keep-all;
	}
	.company .company_info {
		width: 90%;
		margin: 0 auto;
	}
	.company .info_table {
		margin: 40px auto;
		font-size: 1.7rem;
	}
	.company.company_location {
		width: 90%;
		margin: 0 auto 60px;
	}
	.company.company_location .company_location {
		margin: 0 0 60px;
	}
	.company.company_location .locationWrap {
		flex-direction: column;
		align-items: flex-start;
	}
	.company.company_location .location_txt {
		padding-left: 20px;
	}
	.company_patent .d_patent_wrap {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media screen and (max-width: 1024px) {
	.company .history {
		padding: 0 16px 100px;
	}
	.company .history__head {
		padding: 40px 24px 36px;
		border-radius: 20px;
	}
	.company .history__title {
		font-size: 40px;
	}
	.company .history__tab-scroll {
		margin-top: 24px;
	}
	.company .history__tab {
		min-width: 130px;
		height: 48px;
		padding: 0 22px;
		font-size: 16px;
	}
	.company .history__body {
		margin-top: 52px;
	}
	.company .history__item {
		grid-template-columns: minmax(120px, 1fr) 36px minmax(0, 2fr);
		column-gap: 20px;
	}
	.company .history__item:last-child .history__axis {
		min-height: 96px;
	}
	.company .history__year {
		font-size: 54px;
	}
	.company .history__axis {
		min-height: 170px;
	}
	.company .history__list li {
		font-size: 17px;
		line-height: 1.8;
	}
}
@media screen and (max-width: 768px) {
	.company .history {
		padding: 0 12px 80px;
	}
	.company .history__head {
		padding: 28px 16px 24px;
		border-radius: 16px;
	}
	.company .history__title {
		font-size: 28px;
	}
	.company .history__tab-scroll {
		margin-top: 20px;
		margin-right: -16px;
		margin-left: -16px;
		padding: 0 16px 4px;
	}
	.company .history__tabs {
		justify-content: flex-start;
	}
	.company .history__tab {
		min-width: 124px;
		height: 44px;
		padding: 0 18px;
		font-size: 15px;
	}
	.company .history__tab-divider {
		width: 16px;
	}
	.company .history__body {
		margin-top: 40px;
	}
	.company .history__item {
		grid-template-columns: 24px minmax(0, 1fr);
		column-gap: 16px;
	}
	.company .history__item + .history__item {
		margin-top: 10px;
	}
	.company .history__year {
		grid-column: 2/3;
		order: 2;
		font-size: 24px;
		text-align: left;
		line-height: 1.25;
	}
	.company .history__axis {
		grid-column: 1/2;
		grid-row: 1/3;
		min-height: 100%;
	}
	.company .history__dot {
		width: 12px;
		height: 12px;
	}
	.company .history__line {
		top: 12px;
	}
	.company .history__content {
		grid-column: 2/3;
		order: 3;
		padding-top: 14px;
		padding-bottom: 28px;
	}
	.company .history__list li {
		padding-left: 14px;
		font-size: 15px;
		line-height: 1.8;
	}
}
@media screen and (max-width: 480px) {
	.company .history {
		padding: 0 10px 64px;
	}
	.company .history__head {
		padding: 24px 14px 20px;
		border-radius: 14px;
	}
	.company .history__title {
		font-size: 22px;
	}
	.company .history__tab {
		min-width: 112px;
		height: 40px;
		padding: 0 16px;
		font-size: 14px;
	}
	.company .history__body {
		margin-top: 32px;
	}
	.company .history__year {
		font-size: 18px;
	}
	.company .history__content {
		padding-top: 12px;
		padding-bottom: 24px;
	}
	.company .history__list li {
		font-size: 14px;
		line-height: 1.75;
	}
}

.contents_area .business {
	width: 80%;
	margin: 0 auto;
}

.title_wrap {
	max-width: 1440px;
	font-size: 6rem;
	margin: 0 auto;
	padding: 140px 0 0;
}

.business .contentswrap, .business .contentswrap_d {
	border: 0px;
	height: 100%;
	margin-bottom: 30px;
	max-width: 1440px;
	margin: 50px auto 120px;
}
.business .contentstitle {
	margin: 40px auto 70px;
	width: 100%;
	height: 100%;
	text-align: center;
}
.business .subtitle {
	font-size: 4.8rem;
	font-weight: 700;
	line-height: 48px;
	margin: 30px 0 0 0;
}
.business .center_txt {
	width: 100%;
	height: auto;
	text-align: center;
}
.business .business_wrap {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1rem;
	width: 100%;
}
.business {
	/*사업분야*/
}
.business .business_section1 {
	width: 26%;
	min-width: 350px;
	background: #fff;
	border-radius: 20px;
	padding: 1rem;
	box-shadow: 0 4px 20px var(--shadow-light);
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
}
.business .business_section1 hover {
	transform: translateY(-12px);
	box-shadow: 0 20px 60px var(--shadow-medium);
}
.business .business_txt1 {
	margin: 50px auto 10px auto;
	min-height: 60px;
	font-weight: 700;
	font-size: 3rem;
	line-height: 30px;
	color: var(--primary-color);
}
.business .business_txt2 {
	font-size: 2rem;
	font-weight: 600;
	line-height: 22px;
	height: 30px;
	margin: 20px auto;
	color: var(--bg-dark);
}
.business .business_txt3 {
	font-size: 1.6rem;
	line-height: 22px;
	height: 70px;
	margin: 20px auto;
	color: var(--bg-dark);
}
.business .business_txt1, .business .business_txt2, .business .business_txt3 {
	width: 90%;
	text-align: center;
}
.business .result {
	display: block;
	width: 100%;
	height: 100%;
}
.business .subTit02 {
	font-family: "NanumSquare", "돋움", "돋움체";
	font-weight: 700;
	font-size: 1.8rem;
	height: 30px;
	color: #333;
	border-bottom: 1px solid #dddddd;
}
.business .partnerList {
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	margin: 30px 0 70px;
}
.business .partnerList:nth-child(1) {
	margin-top: 50px;
}
.business .partnerList li {
	text-align: center;
}
.business .partnerList li img {
	width: 70%;
}
.business .contactus_Wrap {
	position: relative;
	width: 100%;
	height: auto;
	font-family: "NanumSquare", "돋움", "돋움체";
	background: linear-gradient(to top, #1A1A2E 50%, #ffffff 50%);
	color: #ffffff;
	text-align: center;
}
.business .contactus_red {
	width: 60vw;
	height: 300px;
	display: block;
	margin: auto;
	background: #e7384e;
}
.business .contact_tit {
	width: 80%;
	font-size: 3.5rem;
	height: 35px;
	margin: 35px auto;
	padding: 40px 10px 10px 10px;
}
.business .contact_txt {
	font-size: 1.8rem;
	width: 80%;
	margin: 5px auto;
	padding: 3px;
	line-height: 20px;
}
.business .contactus_red img {
	width: 280px;
	margin: 20px auto;
}

@media screen and (max-width: 1024px) {
	.contents_area .business {
		width: 80%;
		margin: 0 auto;
	}
	.title_wrap {
		max-width: 100%;
		width: 80%;
		font-size: 4rem;
		margin: 0 auto;
		padding: 140px 0;
	}
	.business .contentswrap, .business .contentswrap_d {
		border: 0px;
		height: 100%;
		margin-bottom: 30px;
		max-width: 1440px;
		margin: 50px auto 120px;
	}
	.business .contentstitle {
		margin: 40px auto 70px;
		width: 100%;
		height: 100%;
		text-align: center;
	}
	.business .subtitle {
		font-size: 4.8rem;
		line-height: 48px;
		margin: 30px 0 0 0;
	}
	.business .center_txt {
		width: 100%;
		height: auto;
		text-align: center;
	}
	.business .business_wrap {
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		gap: 1rem;
		width: 100%;
	}
	.business {
		/*사업분야*/
	}
	.business .business_section1 {
		display: flex;
		width: 90%;
		height: auto;
		min-height: 180px;
		margin: 10px auto;
	}
	.business .business_section1 hover {
		transform: translateY(-12px);
		box-shadow: 0 20px 40px var(--shadow-medium);
	}
	.business .business_txt1 {
		margin: 40px auto 10px auto;
		height: 50px;
		font-weight: 700;
		font-size: 3rem;
		line-height: 30px;
		color: var(--primary-color);
	}
	.business .business_txt2 {
		font-size: 2rem;
		font-weight: 600;
		line-height: 22px;
		height: 30px;
		margin: 10px auto;
		color: var(--bg-dark);
	}
	.business .business_txt3 {
		font-size: 1.6rem;
		line-height: 22px;
		height: 70px;
		margin: 10px auto;
		color: var(--bg-dark);
	}
	.business_txt1, .business_txt2, .business_txt3 {
		width: 90%;
		text-align: center;
	}
	.partner-box {
		width: 90%;
		margin: 0 auto;
	}
	.subTit02 {
		font-family: "NanumSquare", "돋움", "돋움체";
		font-weight: 700;
		font-size: 1.8rem;
		height: 30px;
		color: #333;
		border-bottom: 1px solid #dddddd;
	}
	.partnerList {
		display: grid;
		grid-template-columns: repeat(6, 1fr);
	}
	.contactus_red {
		width: 80%;
	}
}
/* =========================================================
   MOBILE (<= 768px)
   ========================================================= */
@media screen and (max-width: 768px) {
	.title_wrap {
		max-width: unset;
		width: 90%;
		font-size: 4rem;
		margin: 0 auto;
		padding: 140px 0 50px;
	}
	.business .contentswrap {
		max-width: 100%;
		width: 100%;
		margin: 50px auto 120px;
		padding: 0;
	}
	.business .contentstitle {
		margin: 0 0 30px;
	}
	.business .subtitle {
		font-size: 3.8rem;
		line-height: 48px;
		margin: 30px 0 0 0;
	}
	.business .contentstitle {
		margin: 0 0 30px;
	}
	.business .contentstxt {
		width: 90%;
		margin: 0 auto 30px;
		line-height: 30px;
		text-align: center;
	}
	.business .business_wrap {
		width: 100%;
		text-align: center;
	}
	.business .business_section1 {
		display: flex;
		width: 90%;
		height: auto;
		min-height: 250px;
		margin: 10px auto;
	}
	.business .business_section1 hover {
		transform: translateY(-12px);
		box-shadow: 0 20px 40px var(--shadow-medium);
	}
	.business .business_txt1 {
		margin: 50px auto 10px auto;
		height: 50px;
		font-weight: 700;
		font-size: 2.8rem;
		line-height: 30px;
		color: var(--primary-color);
	}
	.business .business_txt2 {
		font-size: 2.2rem;
		font-weight: 600;
		line-height: 22px;
		height: 30px;
		margin: 10px auto;
		color: var(--bg-dark);
	}
	.business .business_txt3 {
		font-size: 1.8rem;
		line-height: 22px;
		height: 70px;
		margin: 10px auto;
		color: var(--bg-dark);
	}
	.business .business_txt1, .business .business_txt2, .business .business_txt3 {
		width: 90%;
		text-align: center;
	}
	.business .partnerList {
		grid-template-columns: repeat(4, 1fr);
		margin: 0 0 30px;
	}
	.business .contactus_Wrap {
		background: none;
	}
	.business .contactus_red {
		width: 100%;
	}
	.business .contactus_red img {
		width: 250px;
		margin: 18px auto;
	}
	.business .contact_tit {
		font-size: 3rem;
		height: 35px;
		margin: 35px auto;
		padding: 35px 10px 10px 10px;
	}
	.business .contact_txt {
		font-size: 1.6rem;
		width: 80%;
		margin: 10px auto;
		padding: 3px;
		line-height: 20px;
	}
}
.contents_area .recruit {
	width: 80%;
	margin: 0 auto;
}

.title_wrap {
	max-width: 1440px;
	font-size: 6rem;
	margin: 0 auto;
	padding: 140px 0 0;
}

.recruit .contentswrap {
	border: 0px;
	margin-bottom: 30px;
	max-width: 1440px;
	margin: 50px auto 120px;
}
.recruit .contentswrap.mb-0 {
	margin-bottom: 0;
}
.recruit .contentstitle {
	margin: 40px auto 70px;
	width: 100%;
	height: 100%;
	text-align: center;
}
.recruit .subtitle {
	font-size: 4.8rem;
	line-height: 48px;
	margin: 30px 0 0 0;
}
.recruit .center_txt {
	width: 100%;
	height: auto;
	text-align: center;
}
.recruit .recruit_culture {
	width: 900px;
	margin: 120px auto;
}
.recruit .contentstxt {
	margin: 0 0 30px 0;
	line-height: 30px;
	text-align: center;
}
.recruit .subtitle {
	font-weight: 700;
	font-size: 4.8rem;
	line-height: 48px;
	margin: 30px 0 0 0;
}
.recruit {
	/***** 디오티스 인재상 *****/
}
.recruit .ufo img, .recruit .arrow img {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.recruit .business_wrap, .recruit .d_people_wrap, .recruit .d_people_wrap_line, .recruit .d_benefit_01, .recruit .d_recruit_wrap01, .recruit .d_recruit_wrap02, .recruit .download_btn {
	width: 100%;
	text-align: center;
}
.recruit .d_people, .recruit .d_people_line, .recruit .d_benefit, .recruit .d_recruit, .recruit .arrow {
	display: inline-block;
	text-align: center;
	letter-spacing: -0.5px;
}
.recruit .d_people ul, .recruit .d_benefit ul, .recruit .d_recruit ul, .recruit .arrow img, .recruit .download_btn {
	text-align: center;
	text-decoration-color: #333333;
}
.recruit .d_people ul img, .recruit .d_benefit ul img {
	height: auto;
}
.recruit .line_l {
	width: 1px;
	border-left: 1px solid #e3e3e3;
	transform: rotate(13deg);
}
.recruit .line_r {
	width: 1px;
	border-left: 1px solid #e3e3e3;
	transform: rotate(-13deg);
}
.recruit .d_people ul {
	font-size: 1.6rem;
}
.recruit {
	/**** 소통하는 디오티스 ****/
}
.recruit .contentswrap-commuicate {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 20px 94px;
	color: #111;
}
.recruit .recruit-txt {
	font-size: 1.8rem;
	text-align: center;
}
.recruit .contentswrap_2 {
	width: 100vw;
	height: 100%;
	margin: 80px auto;
}
.recruit .contentswrap_m_2 {
	display: none;
}
.recruit .ccwrap {
	width: 100%;
	height: auto;
	margin: 80px auto;
}
.recruit .cc_bg {
	display: inline-block;
	width: 100%;
	height: 510px;
	margin-top: -180px;
	border: 0px;
	background-image: url(../images/company/images/coil_bg.png);
	object-fit: cover;
	background-size: 99.9%;
	background-repeat: no-repeat;
}
.recruit .culture_group {
	width: 900px;
	height: 450px;
	margin: 0 auto;
}
.recruit .culture_contentswrap {
	display: inline-block;
	float: left;
	min-width: 245px;
	height: 360px;
	margin: 0 22px;
}
.recruit .culture_solution {
	text-align: left;
	width: 100%;
	height: 100%;
	border-radius: 60px;
	background-color: #e31b41;
	transform: rotate(-20deg);
	margin: 0 auto;
	box-shadow: 0px 60px 30px rgba(0, 0, 0, 0.25);
}
.recruit .culture_solution_txt {
	width: 80%;
	height: 60%;
	margin: 80px auto;
	display: inline-block;
	transform: rotate(20deg) translateX(10%);
	text-align: left;
}
.recruit .culture_solution p {
	margin: 15px;
	padding: 2px;
	letter-spacing: -1px;
}
.recruit .culture_txt01 {
	font-size: 2rem;
	color: #fff;
}
.recruit .culture_txt02 {
	font-weight: 700;
	font-size: 3.5rem;
	height: 30px;
	line-height: 30px;
	color: #fff;
}
.recruit .culture_txt03 {
	font-size: 1.5rem;
	height: 80px;
	line-height: 28px;
	color: #fff;
}
.recruit .contents_area .d_benefit_wrap {
	width: 100%;
	text-align: center;
}
.recruit .contents_area .d_benefit {
	justify-content: center;
}
.recruit .b_title {
	font-size: 2rem;
	line-height: 30px;
}
.recruit .b_txt {
	font-size: 1.3rem;
	line-height: 18px;
	width: 100%;
	word-break: keep-all;
}
.recruit .d_benefit ul img {
	width: 60px;
	margin: 32px auto 20px auto;
}
.recruit .d_recruit_wrap01 {
	width: 100%;
	height: 230px;
	margin-top: 50px;
}
.recruit .d_recruit_wrap02 {
	width: 100%;
	text-align: center;
	display: none;
}
.recruit .d_recruit {
	border: 2px dotted #e3e3e3;
	color: #333333;
	white-space: nowrap;
	letter-spacing: -0.5px;
	border-radius: 50%;
}
.recruit .d_recruit ul {
	padding: 40px 4px;
	width: 150px;
	height: 150px;
	margin: 0 2px;
}
.recruit .r_title {
	font-size: 2rem;
	line-height: 30px;
}
.recruit .r_txt {
	font-size: 1.3rem;
	line-height: 18px;
}
.recruit .arrow {
	transform: translateY(-25px);
}
.recruit .company_info {
	width: 100%;
	height: auto;
	border-top: 1px solid #dddddd;
	border-bottom: 1px solid #dddddd;
	padding: 70px 0 80px;
	margin: 0 auto;
}
.recruit .download_info {
	height: 30px;
	display: flex;
	justify-content: center;
}
.recruit .download {
	font-size: 2rem;
	float: left;
	width: 200px;
	height: 30px;
}
.recruit .download_btn {
	width: 100%;
	text-align: center;
	text-decoration-color: #333333;
}
.recruit .download_btn img {
	width: 20%;
	margin-top: 50px;
}

/* =========================================================
   TABLET (<= 1024px)
   ========================================================= */
@media screen and (max-width: 1024px) {
	.title_wrap {
		max-width: 100%;
		width: 80%;
		font-size: 4rem;
		margin: 0 auto;
		padding: 140px 0;
	}
	.recruit .contentswrap {
		max-width: 100%;
		width: 80%;
		margin: 50px auto 120px;
		padding: 0;
	}
	.recruit .contentswrap_2 {
		width: 100vw;
		height: 500px;
		margin: 60px auto;
	}
	.recruit .ccwrap {
		width: 100%;
		height: 450px;
		margin: 60px auto;
	}
	.recruit .culturewrap {
		margin-top: 200px;
	}
	.recruit .culture_group {
		width: 720px;
		height: 450px;
		margin: -10rem auto;
	}
	.recruit .culture_contentswrap {
		display: inline-block;
		float: left;
		min-width: 205px;
		height: 320px;
		margin: 0 15px;
	}
	.recruit .culture_solution {
		text-align: left;
		width: 100%;
		height: 100%;
		border-radius: 60px;
		background-color: #e31b41;
		transform: rotate(-20deg);
		margin: 0 auto;
		box-shadow: 0px 60px 30px rgba(0, 0, 0, 0.25);
	}
	.recruit .culture_solution p {
		margin: 10px;
		padding: 2px;
		letter-spacing: -1px;
	}
	.recruit .culture_txt01 {
		font-size: 1.8rem;
		color: #fff;
	}
	.recruit .culture_txt02 {
		font-weight: 700;
		font-size: 3rem;
		height: 30px;
		line-height: 30px;
		color: #fff;
	}
	.recruit .culture_txt03 {
		font-size: 1.4rem;
		height: 80px;
		line-height: 28px;
		color: #fff;
	}
	.recruit .d_people_wrap {
		width: 80vw;
		height: 240px;
		margin: 0 auto;
	}
	.recruit .d_people {
		width: 186px;
		height: 240px;
		margin: 0 2px;
	}
	.recruit .d_people_line {
		width: 2px;
		height: 200px;
		margin: 0 6px;
	}
	.recruit .d_people ul img {
		width: 150px;
		margin: 35px auto 20px auto;
	}
	.recruit .line_l, .recruit .line_r {
		height: 165px;
		margin-top: 40px;
	}
	.recruit .culture_solution {
		text-align: left;
		width: 100%;
		height: 100%;
		border-radius: 60px;
		background-color: #e31b41;
		transform: rotate(-20deg);
		margin: 0 auto;
		box-shadow: 0px 60px 30px rgba(0, 0, 0, 0.25);
	}
	.recruit .culture_solution_txt {
		width: 80%;
		height: 60%;
		margin: 80px auto;
		display: inline-block;
		transform: rotate(20deg) translateX(15%);
		text-align: left;
	}
	.recruit {
		/* 복리후생 */
	}
	.recruit .d_benefit_wrap {
		width: 80vw;
		height: 450px;
		margin: 0 auto;
	}
	.recruit .d_benefit {
		width: 150px;
		height: 220px;
		margin: 0;
	}
	.recruit .d_benefit ul {
		padding: 0 2px;
		width: 148px;
		height: auto;
	}
	.recruit .bb_title {
		height: 270px;
	}
	.recruit .bb_txt {
		height: 180px;
	}
	.recruit .b_title {
		font-size: 1.8rem;
		line-height: 22px;
	}
	.recruit .b_txt {
		font-size: 1.16rem;
		line-height: 18px;
	}
	.recruit .d_benefit ul img {
		width: 48px;
		margin: 20px auto;
	}
	.recruit {
		/* 채용정보  */
	}
	.recruit .recruit_info {
		width: unset;
		margin: 150px auto 0;
	}
	.recruit .d_recruit_wrap01 {
		width: unset;
		height: 180px;
	}
	.recruit .d_recruit {
		width: 130px;
		height: 130px;
		border-radius: 100%;
	}
	.recruit .d_recruit ul {
		padding: 25px 4px;
		width: 120px;
		height: 80px;
		margin: 0 1px;
	}
	.recruit .r_title {
		font-size: 1.7rem;
		line-height: 25px;
	}
	.recruit .r_txt {
		font-size: 1.2rem;
		line-height: 16px;
	}
	.recruit .arrow {
		width: 12px;
		height: 30px;
		margin: 0 3px;
		transform: unset;
	}
	.recruit .arrow img {
		width: 12px;
		margin-top: -5px;
	}
	.recruit .download_btn img {
		width: 35%;
		margin-top: 40px;
	}
	.recruit .directions {
		width: 100%;
		height: 230px;
		margin-top: 20px;
	}
	.recruit .directions li:nth-child(1) {
		display: inline-block;
		margin: 18px 0 0 0;
		width: 13vw;
		font-size: 1.5rem;
		line-height: 22px;
	}
	.recruit .directions li:nth-child(2) {
		display: inline-block;
		width: 45vw;
		font-size: 1.5rem;
		line-height: 20px;
		margin-left: 18px;
	}
	.recruit .company_info {
		width: 100%;
		height: auto;
		border-top: 1px solid #dddddd;
		border-bottom: 1px solid #dddddd;
		padding: 50px 0 50px;
		margin: 0 auto;
	}
	.recruit .download_info {
		height: 30px;
		display: flex;
		justify-content: center;
	}
	.recruit .download {
		font-size: 2rem;
		float: left;
		width: 200px;
		height: 30px;
	}
	.recruit .download_btn {
		width: 100%;
		text-align: center;
		text-decoration-color: #333333;
	}
}
/* =========================================================
   MOBILE (<= 768px)
   ========================================================= */
@media screen and (max-width: 768px) {
	.title_wrap {
		max-width: unset;
		width: 90%;
		font-size: 4rem;
		margin: 0 auto;
		padding: 140px 0 50px;
	}
	.recruit .contentswrap {
		max-width: 100%;
		width: 100%;
		margin: 50px auto 120px;
		padding: 0;
	}
	.recruit .contentstxt {
		width: 90%;
		margin: 0 0 30px 0;
		line-height: 30px;
	}
	.recruit .contentstitle {
		margin: 0 0 30px;
	}
	.recruit .subtitle {
		font-size: 3.8rem;
		line-height: 48px;
		margin: 30px 0 0 0;
	}
	.recruit .contentswrap_2 {
		width: 100vw;
		height: 500px;
		margin: 60px auto;
	}
	.recruit .ccwrap {
		width: 100%;
		height: 450px;
		margin: 60px auto;
	}
	.recruit .culturewrap {
		margin-top: 80px;
	}
	.recruit .culture_group {
		width: 720px;
		height: 450px;
		margin: 0 auto;
	}
	.recruit .contentstxt {
		line-height: 30px;
		text-align: center;
		width: 90%;
		margin: 0 auto 30px;
	}
	.recruit .culture_contentswrap {
		display: inline-block;
		float: left;
		min-width: 205px;
		height: 320px;
		margin: 0 15px;
	}
	.recruit .culture_solution {
		text-align: left;
		width: 100%;
		height: 100%;
		border-radius: 60px;
		background-color: #e31b41;
		transform: rotate(-20deg);
		margin: 0 auto;
		box-shadow: 0px 60px 30px rgba(0, 0, 0, 0.25);
	}
	.recruit .culture_solution p {
		margin: 10px;
		padding: 2px;
		letter-spacing: -1px;
	}
	.recruit .culture_txt01 {
		font-size: 1.4rem;
		color: #fff;
	}
	.recruit .culture_txt02 {
		font-weight: 700;
		font-size: 1.8rem;
		height: 30px;
		line-height: 30px;
		color: #fff;
	}
	.recruit .culture_txt03 {
		font-size: 1.4rem;
		height: 80px;
		line-height: 28px;
		color: #fff;
	}
	.recruit {
		/* 인재상 */
	}
	.recruit .d_people_wrap {
		width: 90vw;
		height: auto;
		margin-top: 0;
	}
	.recruit .d_people {
		width: 90vw;
		height: 100px;
	}
	.recruit .d_people li {
		font-size: 1.6rem;
		letter-spacing: -0.8px;
	}
	.recruit .d_people ul img {
		width: 120px;
		margin: 35px auto 0;
	}
	.recruit .people {
		font-size: 3rem;
		font-weight: 600;
	}
	.recruit .d_people_line {
		display: none;
	}
	.recruit .ufo img {
		margin-top: -20px;
	}
	.recruit .line_l {
		height: 45px;
		margin-top: 30px auto;
	}
	.recruit .peopletxt {
		margin: 0 0 100px 0;
	}
	.recruit .d_people ul .ufo-mt10 {
		margin-top: 10px;
	}
	.recruit {
		/***** 디오티스 문화 *****/
	}
	.recruit .contentswrap-commuicate {
		width: 80vw;
		padding: 0 20px 20px;
	}
	.recruit .contentswrap_m_2 {
		display: block;
		width: 100vw;
		height: 100%;
		margin: 20px auto;
	}
	.recruit .contentswrap_2 {
		display: none;
	}
	.recruit .ccwrap_m {
		width: 99.9%;
		height: auto;
		margin: 40px auto;
	}
	.recruit .cc_bg_m {
		display: inline-block;
		width: 100vw;
		height: 150px;
		margin-top: -40%;
		background-image: url(company/images/coil_bg.png);
		object-fit: cover;
		background-size: 100%;
		background-repeat: no-repeat;
	}
	.recruit .culture_group_m {
		width: 100vw;
		height: 700px;
		margin: 0 auto;
	}
	.recruit .culture_contentswrap_m {
		display: inline-block;
		width: 100%;
		height: 180px;
		margin: 10px auto;
	}
	.recruit .culture_solution_m {
		text-align: left;
		width: 90%;
		border-radius: 40px;
		background-color: #e31b41;
		margin: 0 auto;
		box-shadow: 5px 8px 10px rgba(0, 0, 0, 0.15);
	}
	.recruit .culture_solution_m_txt {
		width: 80%;
		height: 60%;
		margin: 20px auto;
		display: inline-block;
		transform: translateX(5%);
	}
	.recruit .culture_solution_m p {
		width: 100%;
		margin: 10px;
		padding: 2px;
		letter-spacing: -0.6px;
	}
	.recruit .culture_txt01 {
		font-size: 1.8rem;
		color: #fff;
	}
	.recruit .culture_txt02 {
		font-weight: 700;
		font-size: 3.5rem;
		height: 30px;
		line-height: 20px;
		color: #fff;
	}
	.recruit .culture_txt03 {
		font-size: 2rem;
		height: 30px;
		line-height: 22px;
		color: #fff;
	}
	.recruit {
		/* 복리후생  */
	}
	.recruit .contentswrap.benefit {
		width: 90%;
		margin: 0 auto;
	}
	.recruit .d_benefit_wrap {
		width: 100%;
		height: auto;
		margin-bottom: 50px;
	}
	.recruit .d_benefit_01 {
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}
	.recruit .d_benefit {
		float: unset;
		height: 220px;
		margin: 0;
		width: 50%;
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.recruit .bb_title {
		width: 40vw;
		height: 120px;
	}
	.recruit .bb_txt {
		width: 40vw;
		height: 100px;
	}
	.recruit .b_title {
		width: 100%;
		font-size: 1.85rem;
		line-height: 23px;
	}
	.recruit .b_txt {
		font-size: 1.2rem;
		height: 100px;
		line-height: 18px;
	}
	.recruit .d_benefit ul img {
		width: 58px;
		margin: 15px auto;
	}
	.recruit {
		/* 채용정보  */
	}
	.recruit .recruit_info {
		width: 90%;
		margin: 50px auto 0;
	}
	.recruit .d_recruit_wrap01 {
		display: none;
	}
	.recruit .d_recruit_wrap02 {
		display: block;
		width: 100%;
		height: 460px;
		margin-top: 50px;
	}
	.recruit .d_recruit {
		width: 100%;
		height: 75px;
		border: 2px dotted #e3e3e3;
		border-radius: 20px;
		color: #333333;
		letter-spacing: -0.5px;
	}
	.recruit .d_recruit ul {
		padding: 0px 4px;
		width: 150px;
		height: 85px;
		margin: 0 2px;
	}
	.recruit .r_title {
		width: 25vw;
		height: 60px;
		font-size: 1.85rem;
		line-height: 72px;
		display: inline-block;
	}
	.recruit .r_txt {
		width: 55vw;
		height: 60px;
		font-size: 1.55rem;
		margin-top: 15px;
		display: inline-block;
		text-align: left;
	}
	.recruit .arrow {
		display: block;
		width: 100%;
		height: 30px;
		margin: 0 3px;
	}
	.recruit .arrow img {
		width: 15px;
		margin-top: 5px;
		transform: rotate(90deg);
	}
	.recruit .download_info {
		width: 90%;
		height: 30px;
		margin: 30px auto 180px auto;
	}
	.recruit .download {
		font-size: 1.65rem;
		float: left;
		width: 280px;
		height: 30px;
	}
	.recruit .company_info {
		width: 100%;
		height: auto;
		border-top: 1px solid #dddddd;
		border-bottom: 1px solid #dddddd;
		padding: 50px 0;
		margin: 0 auto;
	}
	.recruit .download_info {
		height: 30px;
		display: flex;
		justify-content: center;
		flex-direction: column;
		margin: 30px auto 50px auto;
	}
	.recruit .download {
		font-size: 2rem;
		float: left;
		width: 200px;
		height: 30px;
	}
	.recruit .download_btn {
		width: 100%;
		text-align: center;
		text-decoration-color: #333333;
	}
	.recruit .download_btn img {
		width: 38%;
		margin-top: 10px;
	}
}
/* =====================================================================
   HOTFIX: wp.html (Solutions / WISEPORTAL) layout safeguard
   - IVR & Solutions styles kept intact
   - Responsive simplified to: PC base / <=1024 / <=768 / <=480
   - Sticky preserved on PC, released on tablet/mobile
   ===================================================================== */
body.wp-page {
	overflow: visible;
}
body.wp-page .title_wrap {
	max-width: 1440px;
	font-size: 6rem;
	margin: 0 auto;
	padding: 100px 0 0;
}
body.wp-page .title_solutions {
	width: 100%;
	height: 250px;
	background-position: center;
}
body.wp-page .title_solutions .top_title {
	margin: 0 auto;
	font-size: 6rem;
	padding: 80px 0 0;
}
body.wp-page .contentswrap_s {
	width: 95%;
}
body.wp-page .contentstit {
	font-size: 3rem;
	color: #D61C4E;
	font-weight: 700;
}
body.wp-page #solution_ani_box,
body.wp-page #solution_ani {
	margin: 0 auto;
}
body.wp-page #solution_ani_box {
	width: 100%;
}
body.wp-page {
	/* IVR & Solutions */
}
body.wp-page .contentswrap_s {
	margin: 30px auto;
	height: 100%;
}
body.wp-page .contentswrap_s1 {
	width: 1000px;
	margin-top: 900px;
}
body.wp-page .contentswrap_m {
	display: block;
}
body.wp-page .contents_menu {
	width: 1000px;
	height: auto;
	margin: 0 auto;
	border-top: 1px solid #dddddd;
}
body.wp-page .container.mt-5.list {
	width: 100vw;
	height: 100px;
}
body.wp-page .contentswrap_m > ul.list {
	list-style-type: none;
}
body.wp-page .tab-button {
	display: inline-block;
	width: 16.8%;
	height: 80px;
}
body.wp-page .tab-button p {
	text-align: center;
	font-size: 20px;
	line-height: 80px;
	font-weight: 700;
}
body.wp-page .active {
	color: #e31f41;
	border-top: 3px solid #e31f41;
}
body.wp-page .tab-content {
	display: none;
	padding: 10px;
	width: 1000px;
	height: auto;
}
body.wp-page .wrapper {
	display: none;
	padding: 10px;
	width: 95vw;
	height: 1000px;
}
body.wp-page .show {
	display: block;
}
body.wp-page .s_contentstitle {
	margin: 40px 0 70px 0;
}
body.wp-page .s_contentstitle img {
	width: 45px;
	margin: 10px 0px;
}
body.wp-page .s_subtitle {
	font-size: 4.8rem;
	height: 60px;
	margin: 5px 10px;
}
body.wp-page .contentstxt_s1 {
	width: 100%;
	margin: 0 0 10px 0;
	font-size: 1.73rem;
	line-height: 30px;
}
body.wp-page .wp_wrap01_m {
	display: none;
}
body.wp-page .wp_wrap01 {
	width: 100%;
	margin: 10px auto;
}
body.wp-page .wp_wrap02 {
	width: 450px;
	margin: 50px auto;
}
body.wp-page .wp_wrap03 {
	width: 160px;
	height: 320px;
	float: right;
	transform: translate(0, 5em);
	box-shadow: 5px 15px 30px rgba(0, 0, 0, 0.2);
}
body.wp-page .wp_wrap04 {
	width: 160px;
	height: 320px;
	float: right;
	transform: translate(12em, 18em);
	box-shadow: 5px 15px 30px rgba(0, 0, 0, 0.2);
}
body.wp-page .wp_wrap05 {
	width: 950px;
	margin: 80px 30px;
}
body.wp-page .wp_wrap06 {
	width: 600px;
	margin: 50px auto;
}
body.wp-page .scenario {
	width: auto;
	margin-bottom: 20px;
}
body.wp-page .solutions_img img {
	width: 60%;
	margin: 10%;
}
body.wp-page .solutions2_img img {
	width: 100%;
	margin: 2% auto 2% 0;
}
body.wp-page .info_img {
	width: auto;
	margin: 1% auto;
}
body.wp-page .voicetit {
	color: #e41e31;
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 10px;
}
body.wp-page .subtitle {
	font-size: 4.8rem;
	line-height: 48px;
	margin: 30px 0 0 0;
}
body.wp-page .subtitle1 {
	font-size: 7.5rem;
	line-height: 48px;
	color: #333333;
}
body.wp-page .subtitle2 {
	font-weight: 700;
	font-size: 2.5rem;
	line-height: 28px;
	color: #333333;
}
body.wp-page .subtitle3 {
	font-size: 7.2rem;
	line-height: 48px;
	color: #344CB7;
}
body.wp-page .subtitle4 {
	font-weight: 600;
	font-size: 3rem;
	line-height: 36px;
	color: #344CB7;
}
body.wp-page .voicetxt1 {
	font-size: 1.6rem;
	margin: 10px 0;
	line-height: 23px;
	width: 100%;
}
body.wp-page .voicetxt2 {
	font-size: 1.6rem;
	margin: 10px 0 20px 80px;
	line-height: 25px;
	width: 90%;
}
body.wp-page .voicetxt3 {
	font-size: 1.6rem;
	margin: 10px 0 20px 5px;
	line-height: 25px;
	width: 90%;
}
body.wp-page .voicetxt4 {
	font-size: 1.4rem;
	margin: 10px 0 20px 5px;
	line-height: 23px;
}
body.wp-page .gapline_dt {
	width: 100%;
	height: auto;
	margin: 20px 0;
	border-top: 1px solid #dddddd;
}
body.wp-page .gapline {
	display: none;
}
body.wp-page .gapline_dt2 {
	width: 100%;
	height: 30px;
	margin-top: 10px;
	border-top: 1px solid #dddddd;
	color: #e31f41;
}
body.wp-page .video {
	text-align: center;
	margin: 80px auto;
	width: 100%;
	height: 400px;
}
body.wp-page .video iframe {
	width: 100%;
	height: 100%;
	margin: 0 auto;
}
body.wp-page #solution_ani_box {
	width: 100%;
	height: 100%;
	margin: 0 auto;
}
body.wp-page #solution_ani {
	width: 100%;
	height: 100%;
	margin: 0 auto;
}
body.wp-page .wp_wrap01 {
	width: 100%;
	height: 100%;
	margin: 30px auto;
}
body.wp-page .culture_group {
	width: 100%;
	height: 100%;
	margin: 0 auto 50px auto;
}
body.wp-page .culture_contentswrap {
	float: left;
	min-width: 200px;
	height: auto;
	margin: 0 0.3rem;
}
body.wp-page .culture_solution {
	text-align: left;
	height: 100%;
	border-radius: 15px;
	background-color: #e2e2e2;
	margin: 0 auto;
}
body.wp-page .culture_solution_txt {
	width: 80%;
	height: 60%;
	margin: 20px auto;
	display: inline-block;
	text-align: center;
}
body.wp-page .culture_solution p {
	margin: 5px;
	padding: 2px;
	letter-spacing: -1px;
	text-align: center;
}
body.wp-page .culture_txt01 {
	font-weight: 500;
	font-size: 1.8rem;
	color: #333;
}
body.wp-page .culture_txt02 {
	width: 80%;
	font-size: 1.5rem;
	height: 80px;
	line-height: 28px;
	color: #333;
}
body.wp-page {
	/* =========================
	   PC base (sticky 유지)
	========================= */
}
body.wp-page .contents_area {
	max-width: 1440px;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	margin: 0 auto;
	position: relative;
}
body.wp-page .contents_area_solution1 {
	width: 45%;
	position: sticky;
	top: 200px;
}
body.wp-page .contents_area_solution2 {
	width: 55%;
}
body.wp-page .contentswrap_s {
	margin: 50px 0;
}
body.wp-page {
	/* =========================================================
	   Tablet <= 1024px
	========================================================= */
}
@media screen and (max-width: 1024px) {
	body.wp-page .title_solutions {
		height: auto;
	}
	body.wp-page .title_solutions .top_title {
		width: 90vw;
		margin: 0 auto;
		font-size: 4rem;
		padding: 0;
	}
	body.wp-page .contents_area {
		max-width: unset;
		width: 90%;
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
		gap: 1%;
		margin: 0 auto;
		position: unset;
	}
	body.wp-page .contents_area_solution1 {
		width: 100%;
		position: unset;
		top: 200px;
	}
	body.wp-page .contents_area_solution2 {
		width: 100%;
	}
	body.wp-page .contentswrap_s {
		margin: 100px 0;
	}
	body.wp-page .contentswrap_s {
		width: 100%;
		margin: 60px 0;
	}
	body.wp-page #solution_ani_box {
		width: 100%;
	}
	body.wp-page #solution_ani {
		width: 100%;
	}
	body.wp-page .contentstit {
		font-size: 2.5rem;
	}
	body.wp-page .wp_wrap05 {
		width: calc(100vw - 60px);
		max-width: 950px;
		margin: 60px auto;
		overflow-x: auto;
	}
	body.wp-page .contents_menu,
	body.wp-page .tab-content,
	body.wp-page .contentswrap_s1 {
		width: 100%;
		max-width: 100%;
	}
	body.wp-page .contentswrap_s1 {
		margin-top: 0;
	}
}
body.wp-page {
	/* =========================================================
	   Mobile <= 768px
	========================================================= */
}
@media screen and (max-width: 768px) {
	body.wp-page .title_solutions .top_title {
		font-size: 4rem;
		padding: 0;
	}
	body.wp-page .contentswrap_s {
		margin: 40px 0;
	}
	body.wp-page .contentstit {
		font-size: 2rem;
	}
	body.wp-page #solution_ani_box,
	body.wp-page #solution_ani {
		width: 100%;
	}
	body.wp-page .container.mt-5.list {
		height: auto;
	}
	body.wp-page .contents_menu,
	body.wp-page .tab-content,
	body.wp-page .wrapper {
		width: 100%;
	}
	body.wp-page .tab-button {
		width: 33.33%;
		height: 64px;
	}
	body.wp-page .tab-button p {
		font-size: 1.6rem;
		line-height: 64px;
	}
	body.wp-page .s_subtitle,
	body.wp-page .subtitle {
		font-size: 3.6rem;
		line-height: 1.2;
		height: auto;
	}
	body.wp-page .subtitle1,
	body.wp-page .subtitle3 {
		font-size: 5rem;
		line-height: 1.1;
	}
	body.wp-page .subtitle2,
	body.wp-page .subtitle4 {
		font-size: 2.2rem;
		line-height: 1.4;
	}
	body.wp-page .contentstxt_s1,
	body.wp-page .voicetxt1,
	body.wp-page .voicetxt2,
	body.wp-page .voicetxt3,
	body.wp-page .voicetxt4 {
		width: 100%;
		margin-left: 0;
		margin-right: 0;
	}
	body.wp-page .wp_wrap02,
	body.wp-page .wp_wrap06 {
		width: 100%;
		max-width: 600px;
	}
	body.wp-page .wp_wrap03,
	body.wp-page .wp_wrap04 {
		float: none;
		display: inline-block;
		transform: none;
		margin: 20px 10px 0 0;
	}
	body.wp-page .video {
		height: auto;
	}
	body.wp-page .video iframe {
		aspect-ratio: 16/9;
		height: auto;
	}
}
body.wp-page {
	/* =========================================================
	   Small Mobile <= 480px
	========================================================= */
}
@media screen and (max-width: 480px) {
	body.wp-page .title_solutions .top_title {
		width: 90vw;
		margin: 0 auto;
		font-size: 3rem;
	}
	body.wp-page .contentswrap_s {
		margin: 30px 0;
	}
	body.wp-page .contentstit {
		font-size: 2rem;
	}
	body.wp-page #solution_ani_box,
	body.wp-page #solution_ani {
		width: 100%;
	}
	body.wp-page .tab-button {
		width: 50%;
		height: 56px;
	}
	body.wp-page .tab-button p {
		font-size: 1.4rem;
		line-height: 56px;
	}
	body.wp-page .s_subtitle,
	body.wp-page .subtitle {
		font-size: 3rem;
	}
	body.wp-page .subtitle1,
	body.wp-page .subtitle3 {
		font-size: 4rem;
	}
	body.wp-page .subtitle2,
	body.wp-page .subtitle4 {
		font-size: 1.8rem;
	}
	body.wp-page .contentstxt_s1,
	body.wp-page .voicetxt1,
	body.wp-page .voicetxt2,
	body.wp-page .voicetxt3,
	body.wp-page .voicetxt4 {
		font-size: 1.4rem;
		line-height: 1.6;
	}
	body.wp-page .wp_wrap05 {
		width: calc(100vw - 30px);
		margin: 40px auto;
	}
	body.wp-page .wp_wrap03,
	body.wp-page .wp_wrap04 {
		width: 130px;
		height: auto;
		margin-right: 8px;
	}
	body.wp-page .wp-voice-slide {
		overflow-x: auto;
	}
}