@charset "utf-8";
/* doc.css는 디자인페이지 스타일을 정의합니다. */ 

/* 공통 */

/* CEO 인사말 */
.greetings {display: flex; flex-direction: column; gap: var(--space-70);}
.greetings .sec1 {display: flex; flex-direction: column; gap: var(--space-40);}
.greetings .head .lead {font-size: var(--font-size-36); font-weight: 600; line-height: 1.39; color: #2c2c2c;}
.greetings .head .point {color: var(--color-primary);}
.greetings .head .dim {color: #999;}
.greetings .cont {display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-40); font-size: var(--font-size-20); line-height: 1.7; color: #505050;}
.greetings .col {display: flex; flex-direction: column; gap: var(--space-16);}
.greetings .col strong {font-weight: 600;}
.greetings .col .sign {margin-top: auto; text-align: right; font-weight: 600;}
.greetings .img {border-radius: var(--radius-16); overflow: hidden; aspect-ratio: 1400 / 360;}
.greetings .img img {width: 100%; height: 100%; object-fit: cover;}

/* 회사 연혁 */
.history {display: flex; position: relative;}
.history > section {width: 50%;}
.history .head {position: relative; display: flex; align-items: center; justify-content: center; padding: var(--space-40); border-radius: 260px; text-align: center; color: #fff; background-position: center; background-size: cover; background-repeat: no-repeat; height: clamp(120px, calc(260 / var(--inner) * 100vw), 260px); margin-bottom: var(--space-80);}
.history .head .tit {font-size: var(--font-size-32); font-weight: 600; line-height: 1.44;}
.history .farm .head {background-image: url('/images/sub/history-farm.jpg'); width: calc(100% + (var(--space-60) / 2)); margin-right: calc((var(--space-60) / 2) * -1);}
.history .global .head {background-image: url('/images/sub/history-global.jpg'); width: calc(100% + (var(--space-60) / 2)); margin-left: calc((var(--space-60) / 2) * -1);}
.history .plus {position: absolute; left: 50%; top: 6%; transform: translateX(-50%); width: clamp(24px, calc(48 / var(--inner) * 100vw), 48px); height: clamp(24px, calc(48 / var(--inner) * 100vw), 48px); user-select: none; z-index: 1;}
.history .list {position: relative; display: flex; flex-direction: column; gap: var(--space-70);}
.history .farm .list {padding-right: var(--space-50);}
.history .global .list {padding-left: var(--space-50);}
.history .global .list::before {content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 1px; background: #ddd;}
.history .item {display: flex; flex-direction: column; gap: var(--space-24);}
.history .year {font-size: var(--font-size-32); font-weight: 600; line-height: 1.44; color: var(--color-primary);}
.history .entry {display: flex; flex-direction: column; gap: var(--space-8); font-size: var(--font-size-20); line-height: 1.7;}
.history .entry li {display: flex; gap: var(--space-20); align-items: flex-start;}
.history .month {flex-shrink: 0; min-width: 25px; font-weight: 600;}
.history .txt {position: relative; padding-left: 16px;}
.history .txt::before {content: ''; position: absolute; left: 0; top: .65em; width: 6px; height: 6px; border-radius: 50%; background: #999; opacity: .4;}

/* 사업 분야 */
.business {display: flex; flex-direction: column;}
.business > section {padding: var(--space-120) 0;}
.business > section:first-child {padding-top: 0;}
.business .areas .head {display: flex; justify-content: space-between; align-items: center; gap: var(--space-40); margin-bottom: var(--space-60);}
.business .areas .head .lead {font-size: var(--font-size-48); font-weight: 600; line-height: 1.46; color: #2c2c2c;}
.business .areas .head .tit {font-size: var(--font-size-48); font-weight: 600; line-height: 1.46; color: #2c2c2c;}
.business .areas .head .point {color: var(--color-primary);}
.business .areas .head .dim {color: #999;}
.business .areas .head .logo {flex-shrink: 0; width: clamp(100px, calc(202 / var(--inner) * 100vw), 202px); aspect-ratio: 202 / 140;}
.business .areas .head .logo img {width: 100%; height: 100%; object-fit: contain;}
.business .areas .cont {display: flex; flex-direction: column; gap: var(--space-60);}
.business .areas .row {display: flex; justify-content: space-between; gap: var(--space-80); padding-top: var(--space-40); border-top: 1px solid #ddd;}
.business .areas .col {flex: 1; min-width: 0; display: flex; flex-direction: column;}
.business .areas .col .num {font-size: var(--font-size-24); font-weight: 600; line-height: 1.58; color: var(--color-primary); margin-bottom: var(--space-20);}
.business .areas .col .tit {font-size: var(--font-size-36); font-weight: 600; line-height: 1.39; color: #2c2c2c; margin-bottom: var(--space-40);}
.business .areas .col .txt {font-size: var(--font-size-20); line-height: 1.6; margin-bottom: var(--space-40);}
.business .areas .col .img {border-radius: var(--radius-16); overflow: hidden; aspect-ratio: 660 / 384; margin-top: auto;}
.business .areas .col .img img {width: 100%; height: 100%; object-fit: cover;}
.business .partners {background: url('/images/sub/business-bg.jpg') no-repeat center / cover; position: relative;}
.business .partners::before {content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 5%; background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%); z-index: 1;}
.business .partners .head {margin-bottom: var(--space-40);}
.business .partners .head .sub-tit {color: var(--color-primary); font-size: var(--font-size-20); font-weight: 600; line-height: 1.7; margin-bottom: var(--space-8);}
.business .partners .head .tit {font-size: var(--font-size-40); font-weight: 600; line-height: 1.4; color: #2c2c2c;}
.business .partners .cont {display: flex; flex-direction: column; gap: var(--space-40);}
.business .partners .items {display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-16);}
.business .partners .item {display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: var(--space-80) var(--space-40) var(--space-60); border-radius: var(--radius-16); border: 1px solid rgba(255, 255, 255, 0.08); background: linear-gradient(180deg, rgba(0, 0, 0, 0.40) 0%, rgba(5, 53, 13, 0.40) 100%); backdrop-filter: blur(12px); color: #fff;}
.business .partners .item .icon {width: clamp(40px, calc(50 / var(--inner) * 100vw), 50px); aspect-ratio: 1; margin-bottom: var(--space-40);}
.business .partners .item .icon img {width: 100%; height: 100%; object-fit: contain;}
.business .partners .item .tit {font-size: var(--font-size-28); font-weight: 600; line-height: 1.5; margin-bottom: var(--space-16);}
.business .partners .item .desc {font-size: var(--font-size-20); font-weight: 300; line-height: 1.7; opacity: .7;}
.business .partners .partner {display: flex; align-items: center; justify-content: center; text-align: center; background: rgba(8, 39, 13, 0.4); padding: var(--space-32) var(--space-40); border-radius: var(--radius-16); backdrop-filter: blur(10px); color: #fff;}
.business .partners .partner .icon {flex-shrink: 0; width: clamp(25px, calc(30 / var(--inner) * 100vw), 30px); margin-right: var(--space-16);}
.business .partners .partner .icon img {width: 100%; height: 100%; object-fit: contain;}
.business .partners .partner .txt {font-size: var(--font-size-32); line-height: 1.43; font-weight: 600; display: flex; align-items: center; justify-content: center;}
.business .partners .partner .txt.only-mobile {display: none;}
.business .partners .partner strong {font-weight: 600; color: var(--color-primary); font-size: var(--font-size-50); line-height: 0.92; display: inline-block; padding: 0 var(--space-8); margin-left: var(--space-8); margin-top: -5px;}

/* 찾아오시는 길 */
.root_daum_roughmap {width: 100% !important; height: clamp(300px, calc(480 / var(--inner) * 100vw), 480px); border-radius: var(--radius-16);}
.root_daum_roughmap .wrap_map {height: 100% !important;}
.root_daum_roughmap .map_border {display: none !important;}
.root_daum_roughmap .wrap_controllers {display: none !important;}
.root_daum_roughmap .cont {display: none !important;}

.directions .info {margin-top: var(--space-40); display: flex; gap: var(--space-200);}
.directions .info .tit .sub-tit {color: #999; font-size: var(--font-size-18); font-weight: 500; line-height: 1.77; margin-bottom: 4px;}
.directions .info .tit h3 {color: var(--color-primary); font-size: var(--font-size-32); font-weight: 600; line-height: 1.43;}
.directions .info .cont ul {display: flex; flex-direction: column; gap: var(--space-16); margin-top: var(--space-36);}
.directions .info .cont ul li {display: flex; font-size: var(--font-size-20); line-height: 1.7;}
.directions .info .cont ul li .lbl {width: clamp(100px, calc(140 / var(--inner) * 100vw), 140px); font-weight: 600; padding-left: 15px; position: relative; flex-shrink: 0;}
.directions .info .cont ul li .lbl::before {content: ''; position: absolute; left: 0; top: 0.72em; width: 5px; height: 5px; border-radius: 50%; background: #ccc;}

/* 카탈로그 / CI */
.catalog-wrap {padding-bottom: var(--space-100);}
.ci-wrap {background: #f9f9f9; padding: var(--space-40) 0 var(--space-140);}
.ci-wrap .sub-title {padding-bottom: var(--space-80);}
.ci-wrap .cont {display: flex; gap: var(--space-60);}
.ci-wrap .area h3 {color: #505050; font-size: var(--font-size-20); font-weight: 600; line-height: 1.7; margin-bottom: var(--space-16);}
.ci-wrap .area .items {display: flex; gap: var(--space-24);}
.ci-wrap .area .item {height: clamp(78px, calc(160 / var(--inner) * 100vw), 160px); border-radius: var(--radius-16); overflow:hidden; display: flex;}
.ci-wrap .area.logo .item {width: clamp(200px, calc(408 / var(--inner) * 100vw), 408px); background: #fff; border: 1px solid #eee; align-items: center; justify-content: center;}
.ci-wrap .area.logo .item img {min-width: 100px; width: 54.2%;}
.ci-wrap .area.logo .item.type2 {background: #000; border-color: #000;}
.ci-wrap .area.color .item {width: clamp(116px, calc(238 / var(--inner) * 100vw), 238px); flex-direction: column; padding: var(--space-20); color: #fff; font-size: var(--font-size-20); font-weight: 600; line-height: 1.6;}
.ci-wrap .area.color .item h4 {margin-bottom: auto; opacity: .7; font-weight: inherit;}
.ci-wrap .area.color .item.mint {background: var(--color-primary);}
.ci-wrap .area.color .item.black {background: #1c1c1c;}

/* 제품 체험 신청 */
.support-form {margin:0 auto;}
.support-form .required {color:var(--color-primary)}
.support-form .support-form-txt {color:#505050; font-weight:400; line-height:1.4em; margin-bottom:12px;}
.support-form h3 {color: #2c2c2c; font-size: var(--font-size-28); font-weight: 600; line-height: 1.5; margin-bottom: var(--space-16);}
.support-form table {width:100%; border-collapse:collapse; border-spacing:0px; border-top:2px solid #686868; font-size:16px; line-height:1.5em; margin-bottom: var(--space-60);}
.support-form table:last-child {margin-bottom: 0;}
.support-form table th {padding: var(--space-20); border:1px solid #ddd; background:#fafafa; font-size: var(--font-size-18); font-weight:600; color:#2c2c2c;}
.support-form table td {padding: var(--space-20); border:1px solid #ddd; color:#505050;}
.support-form tr th:first-child,
.support-form tr td:first-child {border-left:0;}
.support-form tr th:last-child,
.support-form tr td:last-child {border-right:0;}
.support-form .input {border:1px solid #ddd; border-radius: var(--radius-8); height: 48px; font-size: var(--font-size-16); font-weight:400; color:#2c2c2c;}
.support-form input[readonly] {background-color:#fff; color:#505050;}
.support-form .radiobox {display:inline-flex; align-items: center; gap: 7px; height: 48px; margin-right: var(--space-24);}
.support-form .item:last-child .radiobox {margin-right: 0;}
.support-form .btn-pack.address-search {padding: 0 16px; height: 48px; border-radius: var(--radius-8); font-size: var(--font-size-16); font-weight:600; line-height: 1.5; margin-left: var(--space-10); display: inline-flex; align-items: center; justify-content: center;}
.support-form .help-text {display:inline-block; margin-left:10px; color:#767676;}
.support-form + .buttons {margin-top: var(--space-60); margin-bottom: 0;}
.support-form + .buttons .btn-pack.xlarge {min-width: 122px; border-radius: var(--radius-8); font-size: var(--font-size-18); font-weight:600; line-height: 1.5; display: inline-flex; align-items: center; justify-content: center;}

/* 통합 검색 */
.search-result {padding-top: var(--space-120);}
html:has(article.search-result) {scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + var(--space-32));}
@media (prefers-reduced-motion: reduce) {
	html:has(article.search-result) {scroll-behavior: auto;}
}
.search-result .field {display: flex; align-items: center; gap: var(--space-16); height: 80px; border: 1px solid #eee; border-radius: var(--radius-16); background: #fff; position: relative; margin-bottom: var(--space-60);}
.search-result .field .btn {flex-shrink: 0; width: 24px; height: 24px; padding: 0; border: 0; background: transparent; cursor: pointer; left: var(--space-24); position: absolute; top: 50%; transform: translateY(-50%);}
.search-result .field img {width: 100%; height: 100%; object-fit: contain;}
.search-result .field .input {flex: 1; min-width: 0; height: 100%; padding: 0; padding-left: calc(var(--space-24) + var(--space-16) + 24px); padding-right: var(--space-24); border: 0; background: transparent; font-size: var(--font-size-20); line-height: 1.7; color: #505050; -webkit-appearance: none; appearance: none; border-radius: var(--radius-16);}
.search-result .field .input::-webkit-search-cancel-button {-webkit-appearance: none; appearance: none; width: 24px; height: 24px; background: url('/images/bbs/search-remove.svg') 50% 50% / contain no-repeat; cursor: pointer;}
.search-result .field .input::-webkit-search-cancel-button:hover {opacity: 1;}
.search-result .field .input::-webkit-search-decoration {-webkit-appearance: none; appearance: none;}
.search-result .tab {padding-bottom: var(--space-24); border-bottom: 1px solid #eee; margin-bottom: var(--space-40);}
.search-result .tab ul {display: flex; flex-wrap: wrap; gap: var(--space-20);}
.search-result .tab a {display: inline-flex; align-items: flex-start; gap: 6px; font-size: var(--font-size-24); font-weight: 600; line-height: 1.67; color: #ccc;}
.search-result .tab .active a {color: #2c2c2c;}
.search-result .tab .cnt {font-size: var(--font-size-16); font-weight: 400; line-height: 1.5; color: inherit;}
.search-result .tab .active .cnt {color: #33823f;}
.search-result .total {font-size: var(--font-size-16); line-height: 1.5; color: #676767; margin-bottom: var(--space-60);}
.search-result .total strong {font-weight: 400; color: #33823f;}
.search-result .card-list {margin-top: var(--space-14);}
.search-result .board-list {margin-top: var(--space-14);}
.search-result .board-list-m {margin-top: var(--space-14);}
.search-result .gallery-list {margin-top: var(--space-14);}
.search-result .product-list {margin-top: var(--space-14);}
.search-result .catalog-list {margin-top: var(--space-14); margin-bottom: 0;}
.search-result .group {display: flex; flex-direction: column; padding-bottom: var(--space-80);}
.search-result .group:last-child {padding-bottom: 0;}
.search-result .head .tit {display: flex; align-items: flex-start; gap: 8px; font-size: var(--font-size-32); font-weight: 600; line-height: 1.44; color: #2c2c2c; margin-bottom: var(--space-40);}
.search-result .head .tit .cnt {font-size: var(--font-size-18); font-weight: 400; line-height: 1.55; color: #33823f;}
.search-result .list {display: flex; flex-direction: column; gap: var(--space-40);}
.search-result .item {display: flex; flex-direction: column;}
.search-result .path {display: flex; flex-wrap: wrap; align-items: center; gap: 6px; font-size: var(--font-size-16); line-height: 1.5; color: #a8a8a8; margin-bottom: var(--space-10);}
.search-result .path .arr {width: 12px; height: 12px; background: url('/images/sub/search-result-arrow.svg') center / contain no-repeat; margin-top: -2px;}
.search-result .path .now {color: #2c2c2c;}
.search-result .txt {font-size: var(--font-size-18); line-height: 1.78; color: #676767;}
.search-result .txt a {color: inherit;}
.search-result .txt a:hover {text-decoration: underline;}
.search-result .txt mark {background: transparent; color: var(--color-primary);}
.search-result .cards {display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-32) var(--space-16);}
.search-result .card {border: 1px solid #eee; border-radius: var(--radius-16); background: #fff; overflow: hidden;}
.search-result .card a {display: flex; flex-direction: column;}
.search-result .card .img {aspect-ratio: 338 / 300; padding: var(--space-20); background: #fff;}
.search-result .card .img img {width: 100%; height: 100%; object-fit: contain;}
.search-result .card .info {display: flex; flex-direction: column; gap: var(--space-16); padding: var(--space-20) var(--space-24) var(--space-24); border-top: 1px solid #eee;}
.search-result .card .cat {font-size: var(--font-size-16); font-weight: 600; line-height: 1.88; color: var(--color-primary);}
.search-result .card .name {font-size: var(--font-size-22); font-weight: 600; line-height: 1.45; color: #2c2c2c;}
.search-result .card .desc {font-size: var(--font-size-18); line-height: 1.67; color: #999;}