* {
  line-height: 1.3;
  letter-spacing: -0.02em;
}

html,
body {
  width: 100%;
  max-width: 100%;
}

hr,
figure {
  padding: 0;
  margin: 0;
}

pre {
  white-space: pre-wrap;
}

textarea {
  resize: none;
}

hr {
  border: none;
  margin: 0;
}

#wrap {
  width: 100%;
  max-width: 100%;
  font-size: 1.6rem;
  position: relative;
  overflow-x: clip;
}

.dimmed {
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

header {
  width: 100%;
  height: 120px;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
header::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: var(--color-border);
  transition: all 0.4s ease;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}
header .header-box {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
header .header-box > *:not(nav) {
  flex-shrink: 0;
}
header a {
  color: var(--color-white);
  line-height: 1.3;
  transition: all 0.4s ease;
}
header .logo {
  width: 100px;
  height: 70px;
}
header .logo a {
  display: block;
  width: 100%;
  height: 100%;
}
header .language {
  margin: 0 auto 0 80px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  column-gap: 30px;
}
header .language a {
  font-weight: 600;
  position: relative;
  opacity: 0.6;
}
header .language a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: var(--color-white);
  transition: all 0.4s ease;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
}
header .language a:hover, header .language a.on {
  opacity: 1;
}
header .language a:hover::after, header .language a.on::after {
  width: 100%;
}
header .gnb-bg {
  width: 100%;
  height: 0;
  background: var(--color-white);
  opacity: 0;
  transition: all 0.4s 0.2s ease;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
header nav,
header .depth1,
header .depth1 > li,
header .depth1 > li > a {
  height: 100%;
}
header nav {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
header .depth1,
header .depth1 > li > a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
header .depth1 > li {
  text-align: center;
  position: relative;
}
header .depth1 > li > a {
  font-size: 1.8rem;
  font-weight: 500;
  padding: 0 35px;
  transition: padding 0.4s 0.3s ease, color 0.4s ease;
}
header .depth1 > li:hover > a {
  color: var(--color-main);
}
header .depth2 {
  padding: 32.5px 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}
header .depth2 > li {
  overflow: hidden;
}
header .depth2 > li > a {
  display: inline-block;
  color: #666;
  white-space: nowrap;
  padding: 7.5px 0;
  position: relative;
  transform: translateY(100%);
}
header .depth2 > li > a::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: #333;
  transition: all 0.4s ease;
  position: absolute;
  top: calc(100% - 10px);
  left: 50%;
  transform: translateX(-50%);
}
header .depth2 > li:hover > a {
  color: #333;
}
header .depth2 > li:hover > a::after {
  width: 100%;
}
header .depth3 {
  display: none;
}
header .menu-button {
  display: grid;
  grid-template-rows: repeat(3, 6px);
  grid-template-columns: repeat(3, 6px);
  row-gap: 6px;
  column-gap: 6px;
}
header .menu-button span {
  display: block;
  background: var(--color-white);
  border-radius: 50%;
  transition: all 0.2s ease;
  width: 100%;
  height: 100%;
}
header .menu-button span:nth-child(2) {
  transition-delay: 0.15s;
}
header .menu-button span:nth-child(3) {
  transition-delay: 0.3s;
}
header .menu-button span:nth-child(5) {
  transition-delay: 0.15s;
}
header .menu-button span:nth-child(6) {
  transition-delay: 0.3s;
}
header .menu-button span:nth-child(8) {
  transition-delay: 0.15s;
}
header .menu-button span:nth-child(9) {
  transition-delay: 0.3s;
}
header .menu-button span.center {
  transform: rotate(45deg);
}
header .menu-button span.center::before, header .menu-button span.center::after {
  content: "";
  display: block;
  background: #111;
  transition: all 0.4s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
header .menu-button span.center::before {
  width: 0;
  height: 3px;
}
header .menu-button span.center::after {
  width: 3px;
  height: 0;
}
header.color-on .language a, header.gnb-on .language a, header.menu-on .language a {
  color: #333;
}
header.color-on .language a::after, header.gnb-on .language a::after, header.menu-on .language a::after {
  background: var(--color-black);
}
header.color-on .depth1 > li > a, header.gnb-on .depth1 > li > a, header.menu-on .depth1 > li > a {
  color: #222;
}
header.color-on .depth1 > li:hover > a, header.gnb-on .depth1 > li:hover > a, header.menu-on .depth1 > li:hover > a {
  color: var(--color-main);
}
header.color-on .menu-button span, header.gnb-on .menu-button span, header.menu-on .menu-button span {
  background: var(--color-main);
}
header.gnb-on::after {
  width: 100%;
}
header.gnb-on .gnb-bg {
  height: 385px;
  opacity: 1;
  transition-delay: 0s;
}
header.gnb-on .depth1 > li > a {
  /* padding: 0 60px; */
  /* 250715 수정 */
  padding: 0 45px;
  transition-delay: 0s;
}
header.gnb-on .depth2 {
  pointer-events: inherit;
}
header.gnb-on .depth2 > li > a {
  transform: translateY(0);
  transition-delay: 0.2s;
}
header.menu-on {
  position: fixed;
  z-index: 3;
}
header.menu-on nav {
  display: none;
}
header.menu-on .menu-button {
  margin-left: auto;
}
header.menu-on .menu-button span {
  background: transparent;
  transition-delay: 0s;
}
header.menu-on .menu-button span.center::before {
  width: 40px;
}
header.menu-on .menu-button span.center::after {
  height: 40px;
}

.site-map {
  width: 100%;
  height: 100vh;
  padding-top: 120px;
  z-index: 2;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.site-map::before {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  background: var(--color-white) url("/img/common/point_sitemap.png") no-repeat right bottom/63.5%;
  z-index: -1;
  transition: all 0.8s;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.site-map .inner,
.site-map .snb-box {
  width: 100%;
  height: 100%;
}
.site-map .inner {
  padding: 80px 0;
}
.site-map .snb-box {
  overflow-x: clip;
}
.site-map .snb-box::-webkit-scrollbar {
  width: 0;
}
.site-map a {
  display: inline-block;
  line-height: 1.3;
  transition: all 0.4s ease;
}
.site-map .depth1 {
  justify-content: space-between;
  display: grid;
  grid-template-columns: repeat(7, 170px);
}
.site-map .depth1 > li > a {
  color: #222;
  font-size: 3.4rem;
  font-weight: 600;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}
.site-map .depth1 > li:hover > a {
  color: var(--color-main);
}
.site-map .depth2 {
  margin-top: 40px;
}
.site-map .depth2 > li {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.4s;
}
.site-map .depth2 > li > a {
  color: #333;
  font-size: 1.8rem;
  padding: 10px 0;
  position: relative;
}
.site-map .depth2 > li > a::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: #333;
  transition: all 0.2s ease;
  position: absolute;
  top: calc(100% - 10px);
  left: 0;
}
.site-map .depth2 > li:hover > a::after {
  width: 100%;
}
.site-map .depth3 {
  padding: 2.5px 10px;
}
.site-map .depth3 > li > a {
  color: #777;
  padding: 7.5px 0;
}
.site-map.on::before {
  height: 100%;
}
.site-map.on .depth1 > li:nth-child(1) > a {
  transition: all 0.5s 0.65s, color 0.4s 0s;
}
.site-map.on .depth1 > li:nth-child(1) .depth2 > li {
  transition: all 0.5s 0.65s;
}
.site-map.on .depth1 > li:nth-child(2) > a {
  transition: all 0.5s 0.8s, color 0.4s 0s;
}
.site-map.on .depth1 > li:nth-child(2) .depth2 > li {
  transition: all 0.5s 0.8s;
}
.site-map.on .depth1 > li:nth-child(3) > a {
  transition: all 0.5s 0.95s, color 0.4s 0s;
}
.site-map.on .depth1 > li:nth-child(3) .depth2 > li {
  transition: all 0.5s 0.95s;
}
.site-map.on .depth1 > li:nth-child(4) > a {
  transition: all 0.5s 1.1s, color 0.4s 0s;
}
.site-map.on .depth1 > li:nth-child(4) .depth2 > li {
  transition: all 0.5s 1.1s;
}
.site-map.on .depth1 > li:nth-child(5) > a {
  transition: all 0.5s 1.25s, color 0.4s 0s;
}
.site-map.on .depth1 > li:nth-child(5) .depth2 > li {
  transition: all 0.5s 1.25s;
}
.site-map.on .depth1 > li:nth-child(6) > a {
  transition: all 0.5s 1.4s, color 0.4s 0s;
}
.site-map.on .depth1 > li:nth-child(6) .depth2 > li {
  transition: all 0.5s 1.4s;
}
.site-map.on .depth1 > li:nth-child(7) > a {
  transition: all 0.5s 1.55s, color 0.4s 0s;
}
.site-map.on .depth1 > li:nth-child(7) .depth2 > li {
  transition: all 0.5s 1.55s;
}
.site-map.on .depth1 > li:nth-child(8) > a {
  transition: all 0.5s 1.7s, color 0.4s 0s;
}
.site-map.on .depth1 > li:nth-child(8) .depth2 > li {
  transition: all 0.5s 1.7s;
}
.site-map.on .depth1 > li > a {
  clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 0);
}
.site-map.on .depth2 > li {
  opacity: 1;
  transform: translateX(0);
}

footer {
  background: #111;
  border-radius: 50px 50px 0px 0px;
  padding: 100px 0;
  position: relative;
  z-index: 1;
}
footer * {
  font-size: 1.8rem;
}
footer .footer-box {
  width: 100%;
  height: 100%;
}
footer .link {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  column-gap: 50px;
}
footer .link a {
  color: var(--color-white);
  font-weight: 700;
}
footer .link a:first-child {
  color: var(--color-main);
}
footer hr {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.05);
  margin: 40px 0;
}
footer .row {
  align-items: flex-end;
  justify-content: space-between;
}
footer .information,
footer .information > div,
footer .information dl {
  display: flex;
}
footer .information {
  flex-direction: column;
  margin-bottom: 60px;
  row-gap: 15px;
}
footer .information > div {
  column-gap: 30px;
}
footer .information dl {
  column-gap: 10px;
}
footer .information dl dt {
  color: var(--color-white);
}
footer .information dl dd {
  color: #aaa;
}
footer .copy {
  font-size: 1.6rem;
  letter-spacing: 0;
}


.video-container { position:relative; overflow:hidden; max-width:1000px; margin:0 auto; }
.video-container:before { content:''; display:block; padding-bottom:56.25%; /* 16:9 비율 */ }
.video-container video,
.video-container iframe { position:absolute; top:0; left:0; width:100%; height:100%; border:0; }

/* 20250714 추가 */
.f-quick { 
  position: fixed; 
  right: 30px; 
  bottom: 30px; 
  z-index: 2; 
  transition: bottom 0.3s ease-out;
}
.f-quick .default { 
  display: flex;
  justify-content:center;
  align-items:center;
  width: 80px; 
  height: 80px; 
  border-radius:50%;  
  background: linear-gradient(90deg, #ED1A2E 0%, #FCB034 100%);
  font-size: 1.9rem; 
  font-weight: 500;
  line-height: 1.26;
  color: #fff;
  transition: 0.3s ease-out;
}
.f-quick .btn-quick {
  overflow:hidden;
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  justify-content:right;
  align-items:center;
  width: 80px;
  height: 80px; 
  padding: 0 30px;
  border-radius:80px;  
  background: linear-gradient(90deg, #ED1A2E 0%, #FCB034 100%);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  opacity:0;
  visibility:hidden;
  transition: 0.3s ease-out;
  white-space:nowrap;
}
.f-quick .btn-quick::after {
	content:"";
	display: block;
	min-width: 25px;
	height: 25px;
	margin-left: 10px;
	border-radius:50%;
	background: url("/img/svg/icon_quick_arrow.svg") no-repeat center center/ auto #fff;
}
.f-quick:hover .default {
  opacity:0;
  visibility:hidden;
}
.f-quick:hover .btn-quick {
  width: 220px;
  opacity:1;
  visibility:visible;
}

