:root {
  --bg: #f2f4f8;
  --blue: #056be5;
  --border: #e7eaee;
  --radius01: 8px;
  --radius02: 16px;
}

.is-blue {
  color: var(--blue) !important;
}

.loc01 {
  color: #00aca8 !important;
  font-weight: 600;
}

.loc02 {
  color: #8f5bc9 !important;
  font-weight: 600;
}

.blind {
  display: block;
  width: 0;
  height: 0;
  overflow: hidden;
  text-indent: -9999px;
}

.hide-default {
  display: none !important;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background-color: #fff;
  -webkit-transition: top 0.3s linear;
  transition: top 0.3s linear;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.header .inner02 {
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: height 0.3s linear;
  transition: height 0.3s linear;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.header.top .inner {
  height: 100px;
}
.header.hide {
  top: -80px;
}

.gnb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 48px;
  height: 100%;
}
.gnb > div {
  height: 100%;
  position: relative;
}
.gnb > div:hover .gnb-depth1 {
  color: var(--blue);
}

.gnb-depth1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.header-util {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  height: 100%;
}
.header-util li a {
  height: 36px;
  border: 1px solid #b8c1c8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  border-radius: 2em;
  padding-inline: 16px;
  font-size: 16px;
  color: #383f4e;
  line-height: 1;
  font-weight: 600;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.gnb-depth2 {
  position: absolute;
  left: 50%;
  bottom: 5px;
  -webkit-transform: translate(-50%, 100%);
  transform: translate(-50%, 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius01);
  -webkit-box-shadow: 0px 8px 14px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 14px 0px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  z-index: 2;
  display: none;
}
.gnb-depth2 a {
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
  display: block;
  padding: 18px 20px;
}
.gnb-depth2 a p {
  white-space: nowrap;
  display: inline-block;
  color: #555;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  padding-right: 22px;
  position: relative;
}
.gnb-depth2 a p::after {
  content: '';
  width: 18px;
  height: 18px;
  background-image: url('/assets/images/common/arrow_gnb.svg');
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.gnb-depth2 a:hover {
  background-color: var(--bg);
}
.gnb-depth2 a:hover p {
  color: var(--blue);
}
.gnb-depth2 a:hover p::after {
  opacity: 1;
}
.gnb-depth2 a:hover img {
  opacity: 1;
}

.footer-partner {
  border-top: 1px solid #dbe8ff;
}
.footer-partner .inner {
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 32px;
}
.footer-partner p {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.footer-partner__slide {
  overflow: hidden;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.footer-partner__prev,
.footer-partner__next {
  height: 27px;
}

.footer {
  background-color: #2a2d33;
}
.footer .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer-top {
  padding-block: 50px 20px;
}
.footer-top address {
  font-style: normal;
}
.footer-top address ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}
.footer-top address li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.footer-top address li span {
  background-color: #777c88;
  width: 1px;
  height: 12px;
}
.footer-top address p {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
}

.footer-bottom {
  padding-block: 30px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.footer-bottom p {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
}

.footer-logo {
  margin-bottom: 25px;
}

.footer-link {
  margin-left: auto;
  width: 180px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}
.footer-link a {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}
.footer-link a strong {
  color: #00aca8;
}

.footer-family {
  position: relative;
  width: 170px;
  height: 40px;
  margin-left: 48px;
}
.footer-family button {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-inline: 12px;
  background-color: #fff;
  border-radius: 4px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.footer-family button.active svg {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.footer-family ul {
  border-radius: 4px;
  position: relative;
  bottom: 43px;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  background-color: #fff;
  display: none;
  padding-block: 4px;
  border: 1px solid var(--border);
  -webkit-box-shadow: 0px 8px 14px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 14px 0px rgba(0, 0, 0, 0.2);
}
.footer-family ul li a {
  display: block;
  color: #555;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 10px 12px;
}
.footer-family ul li:hover a {
  color: var(--blue);
  background-color: var(--bg);
}

.header-ham {
  display: none;
}

.side-depth1 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  height: 58px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.side-depth2 {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.side-depth2 a {
  height: 62px;
  font-size: 18px;
  font-weight: 600;
  color: #555;
}

.header-side {
  display: none;
  position: absolute;
  z-index: 99;
  top: var(--headerHeight);
  left: 0;
  right: 0;
  bottom: 0;
  padding-block: 20px;
  background-color: #f2f4f8;
  height: calc(100vh - var(--headerHeight));
  overflow-y: scroll;
}
.header-side .inner {
  height: auto !important;
}
.header-side .header-util {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header-side .header-util li a {
  background-color: #fff;
}
.header-side nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}
.header-side nav > div {
  width: 100%;
  border-radius: var(--radius02);
  background-color: #fff;
  padding-inline: 20px;
}
.header-side nav > div a:has(svg) {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media all and (max-width: 1880px) {
  .gnb-depth1 {
    font-size: 18px;
  }
  .gnb {
    gap: 24px;
  }
}
@media all and (max-width: 1450px) {
  .gnb {
    display: none;
  }
  .header-ham {
    display: block;
    margin-left: auto;
    width: 40px;
    height: 40px;
    background-image: url('/assets/images/common/ham.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }
  .header.side-on .header-ham {
    background-image: url('/assets/images/common/close.svg');
  }
  .header-util {
    display: none;
  }
}
@media all and (max-width: 1200px) {
  .footer-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .footer-link {
    width: auto;
    margin-left: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-top: 30px;
    align-items: center;
  }
  .footer-family {
    margin-left: 0;
    margin-top: 40px;
  }
}
@media all and (max-width: 1024px) {
  .show-1024 {
    display: block !important;
  }
  :root {
    --radius01: 1.04vw;
    --radius02: 2.08vw;
  }
}
@media all and (max-width: 768px) {
  .hide-768 {
    display: none !important;
  }
  .show-768 {
    display: block !important;
  }
  .header-logo {
    width: 47.36vw;
  }
  .header .inner02 {
    height: 15.28vw;
  }
  .header-ham {
    width: 6.39vw;
    height: 6.39vw;
  }
  .header-side {
    padding-block: 5.28vw;
  }
  .header-side nav {
    gap: 4.17vw;
    margin-top: 4.17vw;
  }
  .header-side nav > div {
    padding-inline: 4.17vw;
  }
  .side-depth1 {
    font-size: 3.61vw;
    height: 11.25vw;
  }
  .side-depth2 a {
    height: 12.78vw;
    font-size: 3.61vw;
  }
  .header-side nav > div a svg {
    width: 4.17vw;
  }
  .header-util li a {
    height: 9.03vw;
    gap: 1.11vw;
    padding-inline: 4.17vw;
    font-size: 3.33vw;
  }
  .header-util li a img {
    width: 3.75vw;
  }
  .footer-partner .inner {
    height: auto;
    padding-block: 5.28vw;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 2.78vw 3.33vw;
  }
  .footer-partner p {
    width: 100%;
    font-size: 4.72vw;
  }
  .footer-partner p img {
    width: 5.28vw;
  }
  .footer-partner__prev,
  .footer-partner__next {
    height: 5vw;
  }
  .footer-partner__prev svg,
  .footer-partner__next svg {
    height: 100%;
  }
  .footer-link {
    margin-top: 5.28vw;
  }
  .footer-link a {
    font-size: 3.5vw;
  }
  .footer-family {
    margin-top: 6.39vw;
    width: 100%;
    height: 11.67vw;
  }
  .footer-family button {
    font-size: 3.61vw;
  }
  .footer-top address ul {
    gap: 2.78vw;
  }
  .footer-top address li {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1.39vw;
  }
  .footer-top address p {
    font-size: 3.61vw;
  }
  .footer-top {
    padding-block: 7.92vw 5.28vw;
  }
  .footer-bottom {
    padding-block: 5.28vw;
  }
  .footer-logo {
    margin-bottom: 5.28vw;
    max-width: 55.56vw;
  }
  .footer-bottom p {
    font-size: 3.61vw;
  }
  .top-btn {
    max-width: 4.44vw;
  }
  .footer-family ul li a {
    font-size: 3.61vw;
    padding: 2.78vw;
  }
  .footer-family ul {
    bottom: 12.5vw;
  }
}

.no-data {
  line-height: 50px;
}
