/* Header, Footer, Layout 관련 CSS 작성 */
:root {
  --header-h: 100px; 
  --sub-visual-h: 560px; 
  --gnb-open-w: 260px; /* 1440px 초과: GNB 1depth 펼침 시 고정 너비 (normal.js GNB_AUTO_WIDTH_BP와 연동) */
  --gnb-closed-gap: 80px; 
  --gnb-duration: 450ms; 
  --gnb-close-delay: 120ms; 
  --gnb-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dep1-open-padding-x: 0px;
}
/* ========== Header { ========== */
.header { --header-solid: 0; --gnb-sub-y: 0px; position: fixed; top: 0; left: 0; z-index: 10000; height: var(--header-h); overflow: visible; width: 100%; background: rgba(255, 255, 255, calc(0.13 + 0.87 * var(--header-solid))); box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.08); backdrop-filter: blur(9.9px); transition: box-shadow var(--gnb-duration) var(--gnb-ease), backdrop-filter var(--gnb-duration) var(--gnb-ease); }
/* 하단 보더는 header::after가 아니라 gnb-wrap 안에서 그림 → SNS(z-index)와 같은 컨텍스트에서 알약 아래로 */
.header .gnb-wrap { position: relative; height: var(--header-h); overflow: hidden; background: rgba(255, 255, 255, calc(var(--header-solid))); }
.header .gnb-wrap::after { content: ''; position: absolute; top: calc(var(--header-h) - 1px); left: calc(50% - 50vw); z-index: 100; width: 100vw; height: 1px; background: #CCCCCC; opacity: var(--header-solid); pointer-events: none; transition: opacity var(--gnb-duration) var(--gnb-ease); }
.header.white .gnb-wrap::after { opacity: 1; }
/* SNS·언어 드롭다운이 헤더 아래로 나와도 보이도록: 펼침 시에만 overflow 해제 */
.header.is-sns-open .gnb-wrap,
.header.is-lang-open .gnb-wrap { overflow: visible; }
/* overflow 해제 시 닫힌 GNB 서브메뉴가 비치지 않게 숨김 */
.header.is-sns-open:not(.is-open) .gnb-wrap .sub-menu-wrap,
.header.is-lang-open:not(.is-open) .gnb-wrap .sub-menu-wrap { visibility: hidden; pointer-events: none; }
.header .gnb-wrap .header-logo { aspect-ratio: 188/72; width: 188px; }
.header .gnb-wrap .header-logo > a { position: relative; display: block; width: 100%; height: 100%; background: url('../img/logo/ci_kr_en_mix.svg') no-repeat center / contain; }
.header .gnb-wrap .header-logo > a::after { content: ''; position: absolute; inset: 0; background: url('../img/logo/ci_kr_en_dark.svg') no-repeat center / contain; opacity: var(--header-solid); transition: opacity var(--gnb-duration) var(--gnb-ease); }
.header .gnb-wrap .menu-depth-1 { height: 100%; }
.header .gnb-wrap .inner { display: flex; align-items: center; justify-content: space-between; }
.header .gnb-wrap .header-contents { display: flex; align-items: center; justify-content: flex-end; gap: 50px; }
.header .gnb-wrap .gnb .menu-depth-1 { display: flex; align-items: flex-start; justify-content: center; gap: 0; }
.header .gnb-wrap .gnb .menu-depth-1 > li { position: relative; width: auto; margin-left: 80px; }
.header .gnb-wrap .gnb .menu-depth-1 > li:first-child { margin-left: 0; }
.header .gnb-wrap .gnb .menu-depth-1 > li > .dep1-a-wrap { position: relative; display: flex; align-items: center; justify-content: center; height: var(--header-h); font-size: 23px; font-weight: 700; line-height: normal; letter-spacing: -3%; color: color-mix(in srgb, #000000 calc(var(--header-solid) * 100%), #ffffff); overflow: hidden; transition: color var(--gnb-duration) var(--gnb-ease); }
.header .gnb-wrap .gnb .menu-depth-1 > li > .dep1-a-wrap::before { content: ''; position: absolute; bottom: 1px; left: 50%; z-index: 1; transform: translateX(-50%); width: 0%; height: 4px; background: var(--color-point-yellow); transition: width .3s; }
.header .gnb-wrap .gnb .menu-depth-1 > li > .dep1-a-wrap > a { padding: 5px; }
.header .gnb-wrap .gnb .menu-depth-1 > li > .dep1-a-wrap > a > span { display: inline-block; }
.header .gnb-wrap .gnb .menu-depth-1 > li > .dep1-a-wrap > a > span > div { display: inline-block; }
.header .gnb-wrap .gnb .menu-depth-1 > li > .dep1-a-wrap > a > span .gnb-char-space { display: inline-block; min-width: 0.28em; }
.header .gnb-wrap .gnb .menu-depth-1 > li.hover > .dep1-a-wrap::before, .header .gnb-wrap .gnb .menu-depth-1 > li > .dep1-a-wrap:hover::before, .header .gnb-wrap .gnb .menu-depth-1 > li > .dep1-a-wrap:has(> a.active)::before { width: 100%; }
.header .gnb-wrap .menu-depth-1 > li > .sub-menu-wrap { position: absolute; top: calc(var(--header-h) + var(--gnb-sub-y, 0px)); left: 0; z-index: 1; width: 100%; height: auto; box-sizing: border-box; --gnb-sub-border: 0; border-left: 1px solid rgb(204 204 204 / var(--gnb-sub-border)); transition: background var(--gnb-duration) var(--gnb-ease), border-color var(--gnb-duration) var(--gnb-ease); }
.header .gnb-wrap .menu-depth-2 > li { opacity: 0; transform: translateY(10px); transition: opacity var(--gnb-duration) var(--gnb-ease), transform var(--gnb-duration) var(--gnb-ease); }
.header.is-open .gnb-wrap .menu-depth-2 > li { opacity: 1; transform: translateY(0); }
.header.is-open .gnb-wrap .menu-depth-2 > li:nth-child(1) { transition-delay: calc(var(--gnb-duration) * 0.35); }
.header.is-open .gnb-wrap .menu-depth-2 > li:nth-child(2) { transition-delay: calc(var(--gnb-duration) * 0.42); }
.header.is-open .gnb-wrap .menu-depth-2 > li:nth-child(3) { transition-delay: calc(var(--gnb-duration) * 0.49); }
.header.is-open .gnb-wrap .menu-depth-2 > li:nth-child(4) { transition-delay: calc(var(--gnb-duration) * 0.56); }
.header.is-open .gnb-wrap .menu-depth-2 > li:nth-child(5) { transition-delay: calc(var(--gnb-duration) * 0.63); }
.header.is-open .gnb-wrap .menu-depth-2 > li:nth-child(n+6) { transition-delay: calc(var(--gnb-duration) * 0.7); }
.header .gnb-wrap .menu-depth-1 > li:last-child > .sub-menu-wrap { border-right: 1px solid rgb(204 204 204 / var(--gnb-sub-border)); }
.header .gnb-wrap .menu-depth-2 { padding: 20px 10px 80px; text-align: center; }
.header .gnb-wrap .menu-depth-2 > li:not(:last-of-type) { margin-bottom: 10px; }
.header .gnb-wrap .menu-depth-2 > li > a { position: relative; display: inline-block; color: #666666; font-weight: 400; transition: color .3s; }
.header .gnb-wrap .menu-depth-2 > li > a::after { content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px; background: #000000; transform: scaleX(0); transform-origin: center; transition: transform .3s; }
.header .gnb-wrap .menu-depth-2 > li > a:hover, .header .gnb-wrap .menu-depth-2 > li > a:focus-visible, .header .gnb-wrap .menu-depth-2 > li > a.active { color: #000000; font-weight: 600; }
.header .gnb-wrap .menu-depth-2 > li > a:hover::after, .header .gnb-wrap .menu-depth-2 > li > a:focus-visible::after, .header .gnb-wrap .menu-depth-2 > li > a.active::after { transform: scaleX(1); }
.header .gnb-wrap .menu-depth-3 { display: none; }
.header .gnb-wrap .header-util { --sns-btn-h: 42px; display: flex; align-items: center; justify-content: flex-end; gap: 26px; }
.header .gnb-wrap .header-util-link { display: flex; align-items: center; justify-content: flex-end; gap: 10px; }
.header .gnb-wrap .btn-header-util { min-height: var(--sns-btn-h); line-height: normal; text-align: center; padding: 10px 20px; display: flex; align-items: center; font-size: 16px; font-weight: 700; }
.header .gnb-wrap .btn-header-util.contact { background: var(--color-point-yellow); color: var(--color-point-mint); }
/* SNS: sns-area=자리 확보 / sns-wrap=absolute 알약(높이 슬라이드) */
.header .gnb-wrap .sns-area { position: relative; z-index: 4; flex: 0 0 auto; height: var(--sns-btn-h); }
.header .gnb-wrap .sns-wrap { position: absolute; top: 0; left: 0; z-index: 1; box-sizing: border-box; width: max-content; min-width: 100%; height: var(--sns-btn-h); overflow: hidden; border-radius: calc(var(--sns-btn-h) / 2); background: var(--color-point-mint); color: var(--color-white); transition: height 0.38s cubic-bezier(0.22, 1, 0.36, 1); }
.header .gnb-wrap .btn-header-util.sns { position: relative; z-index: 1; width: 100%; background: transparent; color: var(--color-white); }
.header .gnb-wrap .btn-header-util.sns .arrow { display: inline-block; width: 10px; height: 6px; border-left: 5px solid transparent; border-right: 5px solid transparent; border-top: 6px solid var(--color-white); transition: transform 0.2s ease; }
.header .gnb-wrap .sns-area:is(.is-hover, .is-open) .btn-header-util.sns .arrow { transform: rotate(180deg); }
.header .gnb-wrap .sns-wrap .header-sns-list { display: flex; flex-direction: column; align-items: center; gap: 10px; width: 100%; padding: 4px 0 12px; margin: 0; list-style: none; }
.header .gnb-wrap .sns-wrap .header-sns-list > li > a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 8px; color: var(--color-white); font-size: 20px; background: rgba(255, 255, 255, 0.18); transition: 0.2s ease; }
.header .gnb-wrap .sns-wrap .header-sns-list > li > a:hover, .header .gnb-wrap .sns-wrap .header-sns-list > li > a:focus-visible { border-radius: 50%; background: rgba(255, 255, 255, 1); color: var(--color-point-mint); }
/* 언어: lang-area=자리 확보 / lang-wrap=absolute 알약(높이 슬라이드) */
.header .gnb-wrap .lang-area { margin-left: 16px; position: relative; z-index: 4; flex: 0 0 auto; height: var(--sns-btn-h); }
.header .gnb-wrap .lang-wrap { overflow: hidden; position: absolute; top: 0; left: 0; z-index: 1; box-sizing: border-box; width: max-content; min-width: 100%; height: var(--sns-btn-h); color: var(--color-white); transition: height 0.38s cubic-bezier(0.22, 1, 0.36, 1); }
.header .gnb-wrap .btn-header-util.lang { padding: 6px; position: relative; z-index: 1; width: auto; background: transparent; color: color-mix(in srgb, var(--color-point-salmon) calc(var(--header-solid) * 100%), var(--color-white)); transition: color var(--gnb-duration) var(--gnb-ease); }
.header .gnb-wrap .btn-header-util.lang .arrow { display: inline-block; width: 10px; height: 6px; border-left: 5px solid transparent; border-right: 5px solid transparent; border-top: 6px solid currentColor; transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1); }
.header.white .gnb-wrap .btn-header-util.lang,
.header .gnb-wrap .lang-area:is(.is-hover, .is-open) .btn-header-util.lang,
.header .gnb-wrap .btn-header-util.lang:hover { color: var(--color-point-salmon); }
.header .gnb-wrap .lang-area:is(.is-hover, .is-open) .btn-header-util.lang .arrow { transform: rotate(180deg); }
.header .gnb-wrap .lang-wrap .header-lang-list { overflow: hidden; border-radius: 99px; background: var(--color-point-salmon); display: flex; flex-direction: column; align-items: center; gap: 10px; width: 48px; margin: 0 auto; padding: 10px 0; list-style: none; }
.header .gnb-wrap .lang-wrap .header-lang-list > li > a { display: flex; align-items: center; justify-content: center; padding: 0 10px; color: var(--color-white); font-size: 16px; font-weight: 700; transition: 0.2s ease; }
.header .gnb-wrap .lang-wrap .header-lang-list > li > a:hover, .header .gnb-wrap .lang-wrap .header-lang-list > li > a:focus-visible { text-decoration: underline; }

.header .gnb-wrap .btn-allmenu-open { aspect-ratio: 1/1; height: var(--sns-btn-h); padding: 4px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 5px; }
/* 햄버거 라인: --header-solid에 맞춰 흰색→메인라이트 보간 (로고/GNB와 동일 타이밍) */
.header .gnb-wrap .btn-allmenu-open > span { border-radius: 99px; overflow: hidden; height: 4px; background: color-mix(in srgb, var(--color-main-light) calc(var(--header-solid) * 100%), var(--color-white)); transition: width var(--gnb-duration) var(--gnb-ease), background var(--gnb-duration) var(--gnb-ease); }
.header.white .gnb-wrap .btn-allmenu-open > span { background: var(--color-main-light); }
.header .gnb-wrap .btn-allmenu-open > span:nth-of-type(1) { width: 50%; }
.header .gnb-wrap .btn-allmenu-open > span:nth-of-type(2) { width: 100%; }
.header .gnb-wrap .btn-allmenu-open > span:nth-of-type(3) { width: 80%; }
.header .gnb-wrap .btn-allmenu-open:hover > span { width: 100%; }

/* ===== GNB 활성화 스타일 { ===== */
/* .white = 스크롤 솔리드 / .is-open = GNB 펼침 (--header-solid는 JS GSAP 보간) */
.header.white { --header-solid: 1; background: var(--color-white); }
.header.is-open { overflow: hidden; }
.header.is-open::before { content: ''; position: absolute; top: 0; left: 0; z-index: 2; width: 100%; height: var(--header-h); background: rgba(255, 255, 255, calc(var(--header-solid))); pointer-events: none; transition: background var(--gnb-duration) var(--gnb-ease); }
.header.white .gnb-wrap { background: var(--color-white); }
.header.is-open .gnb-wrap { background: rgba(255, 255, 255, calc(var(--header-solid))); transition: background var(--gnb-duration) var(--gnb-ease); }
.header.is-open .gnb-wrap { height: var(--header-h); overflow: visible; }
.header .gnb-wrap .header-logo,
.header .gnb-wrap .gnb,
.header .gnb-wrap .header-util { position: relative; z-index: 3; }
.header .gnb-wrap .gnb .menu-depth-1 > li > .dep1-a-wrap { z-index: 3; transition: color var(--gnb-duration) var(--gnb-ease), background var(--gnb-duration) var(--gnb-ease); }
.header .gnb-dropdown-panel { display: block; position: absolute; top: var(--header-h); left: 50%; z-index: 0; width: calc(100vw - (100vw - 100%)); height: 0; transform: translateX(-50%); overflow: hidden; background: var(--color-white); overscroll-behavior: contain; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity var(--gnb-duration) var(--gnb-ease), visibility 0s linear var(--gnb-duration); }
.header.is-open .gnb-dropdown-panel { visibility: visible; pointer-events: auto; opacity: 1; transition: opacity var(--gnb-duration) var(--gnb-ease), visibility 0s; }
.header.is-closing .gnb-dropdown-panel { opacity: 0; pointer-events: none; transition: opacity var(--gnb-duration) var(--gnb-ease), visibility 0s linear var(--gnb-duration); }
.header.is-closing .gnb-wrap .menu-depth-2 > li { opacity: 0; transform: translateY(8px); transition-delay: 0s; transition-duration: calc(var(--gnb-duration) * 0.55); }
/* 서브메뉴 컬럼 border: 펼침 시 header-solid와 동시 등장 / 닫힘 시 즉시 제거 */
.header.is-open:not(.is-closing) .gnb-wrap .menu-depth-1 > li > .sub-menu-wrap { --gnb-sub-border: var(--header-solid); transition: background var(--gnb-duration) var(--gnb-ease), border-color var(--gnb-duration) var(--gnb-ease); }
.header.is-closing .gnb-wrap .menu-depth-1 > li > .sub-menu-wrap { --gnb-sub-border: 0; border-left-color: rgb(204 204 204 / 0); border-right-color: rgb(204 204 204 / 0); transition: background var(--gnb-duration) var(--gnb-ease), border-color 0s; }
.header.is-open .gnb-wrap::after { opacity: calc(var(--header-solid)); transition: opacity var(--gnb-duration) var(--gnb-ease); }
/* .header.is-open .gnb-dropdown-panel::before { content: ''; position: absolute; top: -1px; left: 0; z-index: 1; width: 100%; height: 1px; background: #CCCCCC; pointer-events: none; } */
.header .gnb-dropdown-panel-scroll { height: 100%; overflow: hidden; overscroll-behavior: contain; }
.header .gnb-dropdown-panel-scroll.mCSB_inside > .mCSB_container { margin-right: 0; }
.header .gnb-dropdown-panel-scroll .mCSB_scrollTools { width: 6px; right: 0; opacity: 1; }
.header .gnb-dropdown-panel-scroll .mCSB_scrollTools .mCSB_draggerContainer { background: rgba(0, 0, 0, 0.1); }
.header .gnb-dropdown-panel-scroll .mCSB_scrollTools .mCSB_buttonUp, .header .gnb-dropdown-panel-scroll .mCSB_scrollTools .mCSB_buttonDown { display: none; }
.header .gnb-dropdown-panel-scroll .mCSB_draggerRail { width: 6px; background: transparent; }
.header .gnb-dropdown-panel-scroll .mCSB_dragger { height: 48px; }
.header .gnb-dropdown-panel-scroll .mCSB_dragger .mCSB_dragger_bar { width: 6px; border-radius: 999px; background: var(--color-main); }
.header .gnb-dropdown-panel-scroll .mCSB_dragger:hover .mCSB_dragger_bar, .header .gnb-dropdown-panel-scroll .mCSB_dragger:active .mCSB_dragger_bar, .header .gnb-dropdown-panel-scroll .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar { background: var(--color-main); }
.header .gnb-dropdown-panel-inner { width: 100%; }
.header.is-open .gnb-wrap .gnb .menu-depth-1 > li.hover > .sub-menu-wrap { background: #F6F6F6; }
.header.white .gnb-wrap .header-logo > a::after { opacity: 1; }
.header.is-open .gnb-wrap .header-logo > a::after { opacity: var(--header-solid); transition: opacity var(--gnb-duration) var(--gnb-ease); }
.header.white .gnb-wrap .gnb .menu-depth-1 > li > .dep1-a-wrap { color: var(--color-black); }
.header.is-open .gnb-wrap .gnb .menu-depth-1 > li > .dep1-a-wrap { color: color-mix(in srgb, #000000 calc(var(--header-solid) * 100%), #ffffff); padding-inline: calc(var(--dep1-open-padding-x) * var(--header-solid)); white-space: nowrap; }
/* ===== } GNB 활성화 스타일 ===== */

/* ===== All Menu { ===== */
.header .all-menu { padding: 40px 0; position: fixed; top: 0; left: 0; flex-direction: column; align-items: stretch; gap: 40px; justify-content: space-between; width: calc(100vw - (100vw - 100%)); height: 100vh; z-index: 20000; overflow: hidden; background: radial-gradient(91.62% 143.22% at 18.56% 76.93%, #83CCD2 0%, #809DBD 24%, #7F77AD 46%, #7D5CA1 67%, #7D4B9A 86%, #7D4698 100%); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .3s ease, visibility .3s ease; }
.header .all-menu[hidden] { display: none !important; }
.header .all-menu:not([hidden]) { display: flex; }
.header .all-menu::before { content: ''; position: absolute; bottom: 55px; left: 55px; aspect-ratio: 308/464; width: 308px; background: url('../img/logo-all-menu.svg') no-repeat center / contain; }
.header .all-menu.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.header .all-menu .all-menu-head { padding: 0 40px; display: flex; align-items: center; justify-content: flex-end; gap: 32px; }
.header .all-menu .all-menu-tit { color: var(--color-white); font-size: 30px; font-weight: 600; }
.header .all-menu .btn-allmenu-close { aspect-ratio: 72/56; width: 72px; background: var(--color-point-salmon); border-radius: 5px; }
.header .all-menu .btn-allmenu-close i { font-size: 24px; color: var(--color-white); transition: all .3s; }
.header .all-menu .btn-allmenu-close:hover i { rotate: 90deg; }
.header .all-menu .all-menu-nav { flex: 1 1 auto; min-height: 0; width: 100%; padding: 0; overflow: hidden; }
.header .all-menu .all-menu-nav a:hover { text-decoration: underline; }
.header .all-menu .all-menu-nav .menu-depth-1 { display: flex; align-items: stretch; justify-content: center; gap: 40px; width: 100%; padding: 0 220px; box-sizing: border-box; }
.header .all-menu .all-menu-nav .menu-depth-1 > li { flex: 1 1 0; min-width: 0; }
.header .all-menu .all-menu-nav .menu-depth-1 > li > a { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; width: 100%; min-width: 0; box-sizing: border-box; color: var(--color-white); background: var(--color-main); border-radius: 8px; height: 100px; font-size: 30px; font-weight: 600; line-height: normal; padding: 10px 18px; text-align: center; margin-bottom: 28px; transition: .3s; }
.header .all-menu .all-menu-nav .menu-depth-1 > li > a:hover { background: var(--color-main-dark); }
.header .all-menu .all-menu-nav .menu-depth-1 > li > a br { display: none; }
.header .all-menu .all-menu-nav .sub-menu-wrap { padding: 0 40px; color: var(--color-white); text-align: left; }
.header .all-menu .all-menu-nav .menu-depth-2 > li { margin-bottom: 12px; }
.header .all-menu .all-menu-nav .menu-depth-2 > li:last-of-type { margin-bottom: 0; }
.header .all-menu .all-menu-nav .menu-depth-2 > li > a { font-size: 25px; font-weight: 600; line-height: 1; }
.header .all-menu .all-menu-nav .menu-depth-3 > li { position: relative; padding-left: 12px; }
.header .all-menu .all-menu-nav .menu-depth-3 > li::before { content: ''; position: absolute; width: 4px; height: 1px; background: var(--color-white); top: calc((1lh - 1px) / 2); left: 0; opacity: .6; }
.header .all-menu .all-menu-nav .menu-depth-3 > li > a { position: relative; font-size: 20px; opacity: .6; }
/* 4depth 토글 (has-depth4): 라벨 opacity와 화살표 opacity 분리 */
.header .all-menu .all-menu-nav .menu-depth-3 > li.has-depth4 > .depth3-head { display: inline-flex; align-items: center; gap: 2px; max-width: 100%; }
.header .all-menu .all-menu-nav .menu-depth-3 > li.has-depth4 .depth3-toggle { display: flex; align-items: center; padding: 0; border: 0; background: none; cursor: pointer; }
.header .all-menu .all-menu-nav .menu-depth-3 > li.has-depth4 .depth3-toggle-label { color: var(--color-white); font-size: 20px; text-align: left; opacity: .6; }
.header .all-menu .all-menu-nav .menu-depth-3 > li.has-depth4 .depth3-toggle-icon { flex-shrink: 0; font-size: 26px; line-height: 1; color: var(--color-white); opacity: 1; transition: transform .3s ease; }
.header .all-menu .all-menu-nav .menu-depth-3 > li.has-depth4.is-open > .depth3-head .depth3-toggle-icon { transform: rotate(180deg); }
.header .all-menu .all-menu-nav .menu-depth-3 > li.has-depth4 > .menu-depth-4 { display: none; }
.header .all-menu .all-menu-nav .menu-depth-4 { margin: 6px 0 10px; overflow: hidden; }
.header .all-menu .all-menu-nav .menu-depth-4 > li { position: relative; padding-left: 8px; }
.header .all-menu .all-menu-nav .menu-depth-4 > li::before { content: ''; position: absolute; width: 3px; height: 3px; border-radius: 50%; background: var(--color-white); top: calc((1lh - 3px) / 2); left: 0; opacity: .45; }
.header .all-menu .all-menu-nav .menu-depth-4 > li > a { font-size: 16px; opacity: .6; }
/* all-menu-nav mCustomScrollbar */
.header .all-menu .all-menu-nav .mCSB_inside > .mCSB_container { margin-right: 0; }
.header .all-menu .all-menu-nav .mCSB_scrollTools { width: 6px; right: 0; opacity: 1; }
.header .all-menu .all-menu-nav .mCSB_scrollTools .mCSB_draggerContainer { background: rgba(255, 255, 255, 0.12); }
.header .all-menu .all-menu-nav .mCSB_scrollTools .mCSB_buttonUp,
.header .all-menu .all-menu-nav .mCSB_scrollTools .mCSB_buttonDown { display: none; }
.header .all-menu .all-menu-nav .mCSB_draggerRail { width: 6px; background: transparent; }
.header .all-menu .all-menu-nav .mCSB_dragger { height: 48px; }
.header .all-menu .all-menu-nav .mCSB_dragger .mCSB_dragger_bar { width: 6px; border-radius: 999px; background: var(--color-point-yellow); }
.header .all-menu .all-menu-nav .mCSB_dragger:hover .mCSB_dragger_bar,
.header .all-menu .all-menu-nav .mCSB_dragger:active .mCSB_dragger_bar,
.header .all-menu .all-menu-nav .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar { background: var(--color-point-yellow); }
html.is-allmenu-open, html.is-allmenu-open body { overflow: hidden; }
.all-menu-alng-area, .all-menu-sns-list { display: none; }
.all-menu-util { display: flex; align-items: center; justify-content: flex-end; gap: 20px; }
/* ===== } All Menu ===== */
/* ========== } Header ========== */

/* ========== Footer { ========== */
.footer { position: relative; z-index: 100; flex-shrink: 0; background: var(--color-black); color: var(--color-white); height: auto; overflow: visible; }
/* fade-up transform(100px)이 scrollHeight를 footer 아래로 100px 부풀림 → opacity만 사용 */
.footer[data-aos='fade-up'] { transform: none !important; }
.footer .footer-top { display: none; border-top: 1px solid rgba(255, 255, 255, 0.2); }
.footer .footer-nav ul { font-size: 17px; height: 66px; display: flex; align-items: center; justify-content: flex-start; gap: 33px; }
.footer .footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.2); overflow: visible; }
.footer .footer-bottom .inner { position: relative; min-height: 240px; display: flex; align-items: flex-start; justify-content: space-between; overflow: visible; }
.footer .footer-info { align-self: stretch; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.footer .footer-logo { display: block; aspect-ratio: 257/28; height: 28px; margin-bottom: 24px; background: url('../img/logo/ci_en_horizontal_mix.svg') no-repeat center / contain; }
/* .footer .footer-logo > img { width: 100%; height: 100%; } */
.footer address { margin-bottom: 22px; }
.footer address * { color: var(--color-white); font-style: normal; }
.footer .footer-contact { display: flex; align-items: center; gap: 5px 33px; flex-wrap: wrap; }
.footer .footer-contact > div { display: flex; align-items: center; gap: 10px; }
.footer .footer-contact dt { position: relative; }
.footer .footer-contact dt::after { content: ':'; position: absolute; font-weight: 400; right: -7px; }
.footer .rel-site { position: relative; width: 290px; margin-top: 23px; z-index: 20; }
.footer .btn-rel-site { position: relative; z-index: 1; width: 100%; height: 54px; padding: 14px 16px; background: #1E1E1E; color: var(--color-white); font-size: 16px; font-weight: 500; }
.footer .btn-rel-site .arrow { display: inline-block; width: 10px; height: 6px; border-left: 5px solid transparent; border-right: 5px solid transparent; border-bottom: 6px solid var(--color-white); transition: transform .2s ease; }
.footer .btn-rel-site[aria-expanded="true"] .arrow { transform: rotate(180deg); }
.footer .rel-site-panel { position: absolute; left: 0; bottom: 100%; z-index: 2; width: 100%; margin-bottom: 6px; display: grid; grid-template-rows: 0fr; overflow: hidden; visibility: hidden; pointer-events: none; transition: grid-template-rows 320ms cubic-bezier(0.22, 1, 0.36, 1), visibility 0s 320ms; }
.footer .rel-site-panel > .rel-site-list { min-height: 0; opacity: 0; transform: translateY(10px); transition: opacity 280ms ease, transform 280ms cubic-bezier(0.22, 1, 0.36, 1); }
.footer .rel-site.is-open .rel-site-panel,
.footer .rel-site.is-closing .rel-site-panel { grid-template-rows: 1fr; visibility: visible; transition: grid-template-rows 320ms cubic-bezier(0.22, 1, 0.36, 1), visibility 0s 0s; }
.footer .rel-site.is-open:not(.is-closing) .rel-site-panel { pointer-events: auto; }
.footer .rel-site.is-closing .rel-site-panel { pointer-events: none; }
.footer .rel-site.is-open:not(.is-closing) .rel-site-panel > .rel-site-list { opacity: 1; transform: translateY(0); transition-delay: 48ms; }
.footer .rel-site.is-closing .rel-site-panel > .rel-site-list { opacity: 0; transform: translateY(10px); transition-delay: 0s; }
.footer .rel-site-list { margin: 0; padding: 8px 0; list-style: none; background: #1E1E1E; border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 5px; box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.35); }
.footer .rel-site-list li + li { border-top: 1px solid rgba(255, 255, 255, 0.08); }
.footer .rel-site-list a { display: block; padding: 12px 16px; color: rgba(255, 255, 255, 0.82); font-size: 15px; line-height: 1.4; transition: color .2s ease, background .3s ease; }
.footer .rel-site-list a:hover, .footer .rel-site-list a:focus-visible { color: var(--color-white); background: rgba(255, 255, 255, 0.06); outline: none; }
/* ========== } Footer ========== */

/* ========== Common Layout { ========== */
/* sticky footer (flex): contents 내용이 적어도 footer는 화면 하단 고정 */
body { display: flex; flex-direction: column; min-height: 100vh; }
.contents { flex: 1 0 auto; }
/* ========== } Common Layout ========== */

/* ========== Main Layout { ========== */
/* ========== } Main Layout ========== */

/* ========== Sub Layout { ========== */
.sub-contents .contents-body { position: relative; z-index: 2; padding: 100px 0 140px; background: var(--color-white); }
.sub-contents .contents-wrap { display: block; }
.sub-contents .page-content + .page-content { margin-top: 100px; }
/* ===== Sub Visual { ===== */
html:not(.is-page-ready) .sub-visual-bg, html:not(.is-page-ready) .sub-visual .depth-title, html:not(.is-page-ready) .sub-visual .breadcrumb { opacity: 0; transform: translateY(-100px); }
.sub-visual { position: relative; z-index: 1; width: 100%; max-width: 100%; height: var(--sub-visual-h); overflow: hidden; }
.pin-spacer { width: 100% !important; max-width: 100%; margin-left: 0 !important; margin-right: 0 !important; }
.sub-visual .sub-visual-bg { position: absolute; inset: 0; z-index: 0; background-repeat: no-repeat; background-position: center; background-size: cover; }
.sub-visual-01 .sub-visual-bg { background-image: url('../img/sub-visual-bg-01.jpg'); }
.sub-visual-02 .sub-visual-bg { background-image: url('../img/sub-visual-bg-02.jpg'); }
.sub-visual-03 .sub-visual-bg { background-image: url('../img/sub-visual-bg-03.jpg'); }
.sub-visual-04 .sub-visual-bg { background-image: url('../img/sub-visual-bg-04.jpg'); }
.sub-visual .sub-visual-bg::before { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(143, 96, 233, 0.6) 50%, rgba(80, 54, 131, 0) 100%), linear-gradient(90deg, #000000 26.92%, rgba(0, 0, 0, 0) 100%); }
.sub-visual .sub-visual-bg .sub-visual-deco { position: absolute; left: 0; bottom: 0; z-index: 2; height: 100%; width: 527px; }
.sub-visual .sub-visual-bg .sub-visual-deco::before { content: ''; position: absolute; left: 0; bottom: 0; aspect-ratio: 527/522; width: 100%; background-color: #FFFFFF; background-image: none; -webkit-mask: url('../img/sub-visual-deco-circle.svg') no-repeat center / contain; mask: url('../img/sub-visual-deco-circle.svg') no-repeat center / contain; }
.sub-visual-01 .sub-visual-bg .sub-visual-deco::before { background-color: #FFF100; }
.sub-visual-02 .sub-visual-bg .sub-visual-deco::before { background-color: #8FC31F; }
.sub-visual-03 .sub-visual-bg .sub-visual-deco::before { background-color: #E85298; }
.sub-visual-04 .sub-visual-bg .sub-visual-deco::before { background-color: #EB614B; }
.sub-visual .sub-visual-bg .sub-visual-deco::after { content: ''; position: absolute; left: 202px; bottom: 31px; aspect-ratio: 380/49; width: 380px; background: url('../img/sub-visual-deco-text.svg') no-repeat center / contain; }
.sub-visual .inner { position: absolute; width: 100%; height: 100%; left: 0; top: 0; z-index: 3; padding-top: var(--header-h); display: flex; align-items: center; justify-content: center; }
.sub-visual .sub-visual-txt { color: var(--color-white); width: 100%; will-change: transform, opacity; }
.sub-visual .depth-title { width: 100%; word-break: break-all; font-size: 56px; line-height: normal; text-align: center; text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25); margin-bottom: 64px; }
.sub-visual .breadcrumb ol { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; font-size: 18px; line-height: 1; }
.sub-visual .breadcrumb li:not(:first-of-type) { margin-left: 46px; position: relative; }
.sub-visual .breadcrumb li:not(:first-of-type)::before { content: '\ea6e'; font-family: remixicon; position: absolute; display: flex; align-items: center; justify-content: center; aspect-ratio: 1/1; height: 18px; font-size: 18px; right: calc(100% + 14px); top: 50%; transform: translateY(-50%); }
/* ===== } Sub Visual ===== */

/* ===== Page Title { ===== */
.page-title-wrap .inner { position: relative; display: flex; align-items: center; justify-content: center; margin-bottom: 122px;  }
.page-title-wrap .page-title { width: 100%; padding: 0 100px; color: var(--color-black); position: relative; font-size: 50px; line-height: normal; text-align: center; }
.page-title-wrap .page-title::after { content: ''; position: absolute; height: 5px; width: 55px; border-radius: 999px; bottom: -22px; left: 50%; transform: translateX(-50%); background: var(--color-main-gradient); }
.page-title-wrap .page-util { display: flex; align-items: center; justify-content: flex-end; gap: 10px; position: absolute; z-index: 3; right: 0; top: 50%; transform: translateY(-50%); }
.page-title-wrap .page-util button { background: #ACACAC; color: var(--color-white); aspect-ratio: 1/1; width: 40px; transition: all .3s; }
.page-title-wrap .page-util button:hover { background: var(--color-main); }
.page-title-wrap .page-util button i { font-size: 20px; }
/* ===== } Page Title ===== */
/* ========== } Sub Layout ========== */

/* ====================  반응형 ==================== */
@media screen and (max-width:1920px) {
  .header .all-menu .all-menu-nav .menu-depth-1 > li > a br { display: block; }
}
@media screen and (max-width:1820px) {
  :root {
    --header-h: 80px;
  --gnb-open-w: 220px; 
  --gnb-closed-gap: 50px; 
  }
  .header .gnb-wrap .header-logo { width: 140px; }
  .header .gnb-wrap .header-contents { gap: 30px; }
  .header .gnb-wrap .gnb .menu-depth-1 > li > .dep1-a-wrap { font-size: 20px; }
  .header .gnb-wrap .menu-depth-2 { padding: 20px 10px 60px; }
  .header .gnb-wrap .menu-depth-2 > li > a { font-size: 16px; }
  .header .gnb-wrap .menu-depth-2 > li:not(:last-of-type) { margin-bottom: 4px; }
  .header .gnb-wrap .header-util { --sns-btn-h: 38px; gap: 16px; }
  .header .gnb-wrap .btn-header-util { font-size: 15px; padding: 8px 16px; }
  .header .all-menu .all-menu-head { gap: 16px; }
  .header .gnb-wrap .lang-area { margin-left: 6px; }
  .header .all-menu::before { width: 240px; left: 30px; bottom: 30px; }
  .header .all-menu .all-menu-nav .menu-depth-1 { padding: 0 150px; gap: 20px; }
  .header .all-menu .all-menu-nav .menu-depth-1 > li > a { height: 90px; font-size: 26px; }
  .header .all-menu .all-menu-nav .sub-menu-wrap { padding: 0 20px; }
  .header .all-menu .all-menu-nav .menu-depth-2 > li > a { font-size: 23px; }
}
@media screen and (max-width:1600px) {
  :root {
    --gnb-closed-gap: 40px; 
  }
  .header .all-menu .all-menu-tit { font-size: 24px; }
  .header .all-menu .btn-allmenu-close { width: 60px; }
  .header .all-menu .btn-allmenu-close i { font-size: 22px; }
  .header .all-menu { padding: 30px 0; gap: 30px; }
  .header .all-menu::before { width: 200px; left: 20px; bottom: 20px; }
  .header .all-menu .all-menu-nav .menu-depth-1 { padding: 0 100px; }
  .header .all-menu .all-menu-nav .menu-depth-1 > li > a { padding: 6px 12px; height: 80px; font-size: 24px; margin-bottom: 16px; }
  .header .all-menu .all-menu-nav .menu-depth-2 > li { margin-bottom: 8px; }
  .header .all-menu .all-menu-nav .menu-depth-2 > li > a { font-size: 22px; margin-bottom: 8px; }
}
/* ===== GNB 1depth auto 너비 (1440px 이하) — breakpoint 변경 시 normal.js GNB_AUTO_WIDTH_BP도 함께 수정 ===== */
@media screen and (max-width:1440px) {
  :root {
    --sub-visual-h: 400px;
    /* --gnb-open-w: 190px; */
    --gnb-open-w: auto; /* auto: 메뉴별 콘텐츠 너비로 개별 펼침 (JS auto 모드) */
    --dep1-open-padding-x: 20px;
  }
  .header .gnb-wrap .header-logo { width: 120px; }
  .header .gnb-wrap .header-contents { gap: 18px; }
  .header .gnb-wrap .gnb .menu-depth-1 > li > .dep1-a-wrap { font-size: 19px; width: 100%; flex-wrap: wrap; }
  .header .gnb-wrap .menu-depth-2 > li > a { font-size: 15px; letter-spacing: -8%; }
  .header .gnb-wrap .header-util { --sns-btn-h: 34px; gap: 10px; }
  .header .gnb-wrap .btn-header-util { font-size: 14px; letter-spacing: -8%; padding: 6px 12px; }
  .header .gnb-wrap .lang-area { margin-left: 0; }
  .header .gnb-wrap .btn-header-util.lang { padding: 4px; }
  .header .gnb-wrap .btn-allmenu-open > span { height: 3px; }
  .sub-visual .depth-title { font-size: 48px; margin-bottom: 34px; }
  .sub-visual .sub-visual-bg .sub-visual-deco { width: 360px; }
  .sub-visual .sub-visual-bg .sub-visual-deco::after { width: 280px; left: 170px; }
  .sub-contents .contents-body { padding: 80px 0 100px; }
  .page-title-wrap .page-title { font-size: 40px; }
  .page-title-wrap .inner { margin-bottom: 80px; }
  .sub-contents .page-content + .page-content { margin-top: 60px; }
}
@media screen and (max-width:1280px) {
  :root {
    --header-h: 70px;
    --gnb-closed-gap: 20px; 
    --dep1-open-padding-x: 10px;
    --sub-visual-h: 360px;
  }
  .header .gnb-wrap .header-logo { width: 100px; }
  .header .gnb-wrap .header-contents { gap: 10px; }
  .header .gnb-wrap .gnb .menu-depth-1 > li > .dep1-a-wrap { font-size: 17px; }
  .header .gnb-wrap .menu-depth-2 { padding: 16px 10px 40px; }
  .header .gnb-wrap .header-util-link { gap: 6px; }
  .header .all-menu::before { width: 140px; left: 8px; bottom: 16px; }
  .header .all-menu .all-menu-nav .menu-depth-1 { padding: 0 50px; gap: 12px; }
  .header .all-menu .all-menu-nav .menu-depth-1 > li > a { font-size: 21px; }
  .header .all-menu .all-menu-nav .menu-depth-2 > li > a { font-size: 19px; }
  .header .all-menu .all-menu-nav .menu-depth-3 > li > a, .header .all-menu .all-menu-nav .menu-depth-3 > li.has-depth4 .depth3-toggle-label { font-size: 17px; }
  .header .all-menu .all-menu-nav .menu-depth-3 > li.has-depth4 .depth3-toggle-icon { font-size: 22px; }
  .header .all-menu .all-menu-nav .menu-depth-4 { margin: 0 0 4px; }
  .sub-visual .depth-title { font-size: 40px; }
  .sub-visual .sub-visual-bg .sub-visual-deco { width: 300px; }
  .sub-visual .sub-visual-bg .sub-visual-deco::after { width: 220px; left: 140px; }
  .sub-contents .contents-body { padding: 80px 0 100px; }
  .page-title-wrap .page-title { font-size: 36px; }
  .page-title-wrap .inner { margin-bottom: 80px; }
}
@media screen and (max-width:1024px) {
  :root {
    --header-h: 60px;
    --sub-visual-h: 280px;
  }
  .header.mobile .gnb-wrap .gnb, .header.mobile .gnb-wrap .header-util-link { display: none; }
  .header.mobile .gnb-wrap .header-logo { width: 112px; }
  .header.mobile .gnb-wrap .inner { height: var(--header-h); }
  .header.mobile .all-menu { padding: 18px 0 30px; gap: 38px; }
  .header.mobile .all-menu .all-menu-head { padding: 0 18px; align-items: flex-end; justify-content: space-between; }
  .header.mobile .all-menu .all-menu-tit { font-size: 0; aspect-ratio: 188/72; width: 130px; background: url('../img/logo/ci_kr_en_mix.svg') no-repeat center / contain; }
  .header.mobile .all-menu .btn-allmenu-close { width: 48px; }
  .header.mobile .all-menu .all-menu-nav .menu-depth-1 { padding: 0 18px; gap: 14px; flex-direction: column; gap: 0; }
  .header.mobile .all-menu .all-menu-nav .menu-depth-1 > li { border-bottom: 1px solid rgba(255, 255, 255, 0.27); padding-bottom: 0px; }
  .header.mobile .all-menu .all-menu-nav .menu-depth-1 > li:is(.active, .is-open) { border-bottom-color: var(--color-main); padding-bottom: 14px; }
  .header.mobile .all-menu .all-menu-nav .menu-depth-1 > li > a { position: relative; justify-content: flex-start; text-align: left; font-size: 18px; height: 64px; margin-bottom: 0; border-radius: 3px; width: 100%; padding-right: calc(10px + 24px); background: transparent; color: var(--color-black); }
  .header.mobile .all-menu .all-menu-nav .menu-depth-1 > li > a br { display: none; }
  .header.mobile .all-menu .all-menu-nav .menu-depth-1 > li > a:hover { background: transparent; text-decoration: none; }
  .header.mobile .all-menu .all-menu-nav .menu-depth-1 > li:is(.active, .is-open) > a { background: var(--color-main); color: var(--color-white); height: 54px; margin-top: 14px; }
  .header.mobile .all-menu .all-menu-nav .menu-depth-1 > li:has(> .sub-menu-wrap) > a::before { content: '\ea4e'; position: absolute; right: 10px; top: 50%; transform: translateY(-50%) rotate(0deg); order: 2; flex-shrink: 0; color: var(--color-black); font-family: remixicon; font-size: 24px; font-weight: 400; line-height: 1; transition: transform .3s ease; }
  .header.mobile .all-menu .all-menu-nav .menu-depth-1 > li:is(.active, .is-open) > a::before { color: var(--color-white); }
  .header.mobile .all-menu .all-menu-nav .menu-depth-1 > li.is-open > a::before { transform: translateY(-50%) rotate(180deg); }
  .header.mobile .all-menu .all-menu-nav .sub-menu-wrap { display: none; margin-top: 14px; background: var(--color-white); padding: 20px; border-radius: 3px; color: #666666; }
  .header.mobile .all-menu .all-menu-nav .menu-depth-2 > li { padding-left: 10px; margin-bottom: 4px; }
  .header.mobile .all-menu .all-menu-nav .menu-depth-2 > li > a { position: relative; display: block; padding: 8px 0; margin-bottom: 0; font-size: 15px; }
  .header.mobile .all-menu .all-menu-nav .menu-depth-2 > li > a::before { content: ''; position: absolute; width: 4px; height: 1px; top: calc(0.5lh + 6px); left: -10px; background: #666666; }
  .header.mobile .all-menu .all-menu-nav .menu-depth-2 > li > .menu-depth-3 { display: none; }
  .header.mobile .all-menu .all-menu-nav .menu-depth-2 > li:has(> .menu-depth-3) > a { padding-right: 28px; }
  .header.mobile .all-menu .all-menu-nav .menu-depth-2 > li:has(> .menu-depth-3) > a::after { content: '\ea4e'; position: absolute; right: 0; top: 50%; transform: translateY(-50%) rotate(0deg); font-family: remixicon; font-size: 20px; font-weight: 400; line-height: 1; color: #666666; transition: transform .3s ease; }
  .header.mobile .all-menu .all-menu-nav .menu-depth-3 > li::before,
  .header.mobile .all-menu .all-menu-nav .menu-depth-4 > li::before { background: #666666; }
  .header.mobile .all-menu .all-menu-nav .menu-depth-3 > li > a, 
  .header.mobile .all-menu .all-menu-nav .menu-depth-3 > li.has-depth4 .depth3-toggle-label { color: #666666; font-size: 15px; }
  .header.mobile .all-menu .all-menu-nav .menu-depth-3 > li.has-depth4  .depth3-toggle-icon { color: #666666; font-size: 22px; }
  .header.mobile .all-menu .all-menu-nav .menu-depth-2 > li.is-open:has(> .menu-depth-3) > a::after { transform: translateY(-50%) rotate(180deg); }
  .header.mobile .all-menu .all-menu-nav .menu-depth-4 > li > a { font-size: 14px; }
  .header.mobile .all-menu-alng-area { display: block; position: relative; z-index: 2; }
  .header.mobile .all-menu-lang-panel { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); z-index: 2; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .28s ease, transform .28s ease, visibility .28s; }
  .header.mobile .all-menu-alng-area.is-open .all-menu-lang-panel { opacity: 1; visibility: visible; pointer-events: auto; }
  .header.mobile .all-menu-lang-list { overflow: hidden; border-radius: 8px; background: var(--color-point-salmon); display: flex; flex-direction: column; align-items: center; gap: 10px; width: 100%; margin: 0; padding: 10px 0; list-style: none; }
  .header.mobile .all-menu-lang-list > li > a { display: flex; align-items: center; justify-content: center; padding: 0 10px; color: var(--color-white); font-size: 13px; font-weight: 500; transition: 0.2s ease; }
  .header.mobile .all-menu-lang-list > li > a:hover,
  .header.mobile .all-menu-lang-list > li > a:focus-visible { text-decoration: underline; outline: none; }
  .header.mobile .btn-all-menu-lang { display: flex; align-items: center; gap: 4px; padding: 6px; min-height: 38px; color: var(--color-white); font-size: 14px; font-weight: 600; background: transparent; transition: color .28s ease; }
  .header.mobile .btn-all-menu-lang .ri-global-line { font-size: 18px; font-weight: 400; }
  .header.mobile .btn-all-menu-lang .arrow { display: inline-block; width: 10px; height: 6px; border-left: 5px solid transparent; border-right: 5px solid transparent; border-top: 6px solid currentColor; transition: transform .28s ease; }
  /* .header.mobile .all-menu-alng-area.is-open .btn-all-menu-lang { color: var(--color-point-salmon); } */
  .header.mobile .all-menu-alng-area.is-open .btn-all-menu-lang .arrow { transform: rotate(180deg); }
  .header.mobile .all-menu-sns-list { margin-top: 28px; display: flex; gap: 10px; align-items: center; justify-content: center; }
  .header.mobile .all-menu-sns-list > li > a { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 8px; color: var(--color-white); font-size: 20px; background: rgba(255, 255, 255, 0.18); transition: 0.2s ease; }
  .header.mobile .all-menu-sns-list > li > a:hover { text-decoration: none !important; }
  .sub-contents .contents-body { padding: 60px 0 80px; }
  .sub-contents .page-content + .page-content { margin-top: 50px; }
  .sub-visual .depth-title { font-size: 32px; margin-bottom: 20px; }
  .sub-visual .breadcrumb ol { font-size: 14px; }
  .sub-visual .breadcrumb li:not(:first-of-type) { margin-left: 30px; }
  .sub-visual .breadcrumb li:not(:first-of-type)::before { right: calc(100% + 6px); }
  .sub-visual .sub-visual-bg .sub-visual-deco { width: 280px; }
  .sub-visual .sub-visual-bg .sub-visual-deco::after { width: 200px; left: 120px; }
  .page-title-wrap .inner { margin-bottom: 50px; }
  .page-title-wrap .page-title { font-size: 30px; }
  .page-title-wrap .page-title::after { bottom: -16px; height: 4px; width: 50px; }
}
@media screen and (max-width:768px) {
  :root {
    --sub-visual-h: 240px;
  }
  .sub-contents .contents-body { padding: 50px 0 70px; }
  .sub-visual .sub-visual-txt { margin-bottom: 20px; }
  .sub-visual .depth-title { font-size: 26px; margin-bottom: 16px; }
  .sub-visual .breadcrumb li:nth-child(4) { display: none; }
  .sub-visual .sub-visual-bg .sub-visual-deco { width: 240px; }
  .sub-visual .sub-visual-bg .sub-visual-deco::after { width: 180px; left: 95px; bottom: 15px; }
  .sub-contents .page-content + .page-content { margin-top: 30px; }
  .page-title-wrap .page-util { gap: 5px; bottom: calc(100% + 10px); top: auto; transform: none; }
  .page-title-wrap .page-util button { width: 30px; border-radius: 3px; }
  .page-title-wrap .page-util button i { font-size: 16px; }
  .page-title-wrap .inner { margin-bottom: 40px; }
  .page-title-wrap .page-title { padding: 0; }
  .page-title-wrap .page-title { font-size: 26px; }
  .page-title-wrap .page-title::after { bottom: -13px; height: 3px; width: 40px; }
  .footer .footer-bottom .inner { flex-direction: column-reverse; }
  .footer .rel-site { margin: 20px auto 0; width: 260px; }
  .footer .btn-rel-site { padding: 10px 12px; font-size: 14px; }
  .footer .footer-info { width: 100%; padding: 30px 0 40px; align-items: center; }
  .footer .footer-contact { margin-top: 12px; justify-content: center; }
  .footer address { text-align: center; }
}
@media screen and (max-width:480px) {
  :root {
    --sub-visual-h: 220px;
  }
  .sub-visual .sub-visual-txt { margin-bottom: 10px; }
  .sub-visual .depth-title { margin-bottom: 10px; }
  .sub-visual .sub-visual-bg .sub-visual-deco { width: 240px; }
  .sub-visual .sub-visual-bg .sub-visual-deco::after { width: 160px; left: 90px; }
}
