.show-default {
  display: block !important;
}

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

:root {
  --nanum: "NanumSquareNeo", sans-serif;
  --nanum: "Termina Test", sans-serif;
  --orange: #f8ac00;
}

.blind {
  width: 0;
  height: 0;
  overflow: hidden;
  display: block;
}

.is-red {
  color: #f00;
}

.is-term {
  font-family: var(--nanum);
}

.common-btn {
  border-radius: 2em;
  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;
  color: #fff;
  background-color: #000;
  height: 52px;
  font-size: 16px;
  font-weight: 400;
}

.line-one {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.line-several {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  z-index: 99;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.header h1 {
  z-index: 2;
}
.header > .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header.top:not(.gnb-on) {
  background-color: transparent;
}
.header.top:not(.gnb-on) > .inner {
  height: 120px;
}
.header.top:not(.gnb-on) .header-gnb__depth1 {
  color: #fff;
}
.header.top:not(.gnb-on) img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.header.top:not(.gnb-on) .header-lang button {
  color: #fff;
}
.header.top:not(.gnb-on) .hamburger-btn:before,
.header.top:not(.gnb-on) .hamburger-btn:after,
.header.top:not(.gnb-on) .hamburger-btn span {
  background: #fff;
}
.header.hide {
  top: calc(var(--headerHeight) * -1);
}

.header-gnb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.header-gnb__depth1 {
  height: 100%;
  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;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 180px;
  text-align: center;
}
.header-gnb__depth1:hover, .header-gnb__depth1.on {
  color: var(--orange);
}

.gnb-on .header-gnb__depth1 {
  width: 200px;
}

.header-gsnb {
  width: 100vw;
  background-color: #fff;
  position: absolute;
  top: 100px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
  display: none;
  opacity: 0;
  height: auto;
}
.header-gsnb > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fff;
  padding-bottom: 40px;
}

.gnb-on .header-gnb__depth2 {
  width: 200px;
}

.header-gnb__depth2 {
  width: 180px;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
.header-gnb__depth2 > a,
.header-gnb__depth2 button {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header-gnb__depth2 > a:first-child,
.header-gnb__depth2 button:first-child {
  margin-top: 0;
}
.header-gnb__depth2 > a:hover,
.header-gnb__depth2 button:hover {
  color: var(--orange);
}
.header-gnb__depth2 button {
  padding-right: 16px;
  background-image: url("/image/common/gnb_plus_bk.png");
  background-repeat: no-repeat;
  background-position: right;
}
.header-gnb__depth2 button.show {
  background-image: url("/image/common/gnb_minus_bk.png");
}
.header-gnb__depth2 > div:hover button {
  color: var(--orange);
  background-image: url("/image/common/gnb_plus.png");
}
.header-gnb__depth2 > div:hover button.show {
  background-image: url("/image/common/gnb_minus.png");
}

.header-gnb__depth3 {
  display: none;
}
.header-gnb__depth3 a {
  font-size: 16px;
  font-weight: 400;
  color: #666;
  margin-top: 21px;
  display: block;
}

.header-lang {
  z-index: 2;
  margin-left: auto;
  position: relative;
  padding: 5px 12px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 2em;
}
.header-lang button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}
.header-lang ul {
  display: none;
  opacity: 0;
  position: absolute;
  padding: 3px 12px;
  left: 0;
  top: 34px;
  background-color: #f8f8f8;
  border-radius: 18px;
}
.header-lang ul li a {
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: #888;
  line-height: 1.8;
}
.header-lang ul li.on a {
  color: #000;
}

.hamburger-btn {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  margin-left: 50px;
  z-index: 2;
}

.hamburger-btn:before,
.hamburger-btn:after {
  content: "";
}

.hamburger-btn:before,
.hamburger-btn:after,
.hamburger-btn span {
  background: #000;
  display: block;
  width: 30px;
  height: 3px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.hamburger-btn:after,
.hamburger-btn span {
  margin-top: 6px;
}

.hamburger-btn.active:before {
  -webkit-transform: translateY(9px) rotate(135deg);
          transform: translateY(9px) rotate(135deg);
}

.hamburger-btn.active:after {
  -webkit-transform: translateY(-9px) rotate(-135deg);
          transform: translateY(-9px) rotate(-135deg);
}

.hamburger-btn.active span {
  -webkit-transform: scale(0);
          transform: scale(0);
}

.header-side {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: -120%;
  left: 0;
  background-color: #fff;
  padding-top: 240px;
  -webkit-transition: top 0.3s ease;
  transition: top 0.3s ease;
}
.header-side .inner {
  opacity: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: opacity 0.3s 0.2s ease;
  transition: opacity 0.3s 0.2s ease;
}
.header-side .inner > div {
  width: 330px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-side .inner > div:hover .header-side__depth1 {
  color: var(--orange);
}

.side-on .header-side {
  top: 0;
}
.side-on .header-side .inner {
  opacity: 1;
}

.header-side__depth1 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.header-side__depth2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px !important;
  margin-top: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.header-side__depth2 a{
  justify-content: center;
}
.header-side__depth2 a, .header-side__depth2 button {
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  display: flex;
  width: 100%;
  /* justify-content: center; */
  
}
.header-side__depth2 > a, .header-side__depth2 > button {
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.header-side__depth2 > a:hover, .header-side__depth2 > button:hover {
  color: var(--orange);
}
.header-side__depth2 button {
  padding-right: 20px;
  background-image: url("/image/common/gnb_plus_bk.png");
  background-repeat: no-repeat;
  background-position: right;
}
.header-side__depth2 button.show {
  background-image: url("/image/common/gnb_minus_bk.png");
}
.header-side__depth2 > div:hover button {
  color: var(--orange);
  background-image: url("/image/common/gnb_plus.png");
}
.header-side__depth2 > div:hover button.show {
  background-image: url("/image/common/gnb_minus.png");
}

.header-side__depth3 {
  display: none;
}
.header-side__depth3 a {
  display: block;
  text-align: center;
  margin-top: 20px;
  color: #666;
  font-weight: 400;
}

.footer {
  padding: 42px 0 44px;
  border-top: 1px solid #ddd;
}
.footer .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
}
.footer .inner > a {
  margin-left: auto;
  color: var(--orange);
  font-size: 15px;
  font-weight: 400;
  line-height: 36px;
}

.footer-logo {
  margin-right: 180px;
}

@-webkit-keyframes family {
  to {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}

@keyframes family {
  to {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}
.footer-family {
  margin-left: 36px;
  position: relative;
}
.footer-family button {
  height: 36px;
  width: 157px;
  background-color: rgba(248, 172, 0, 0.12);
  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;
  gap: 20px;
  color: var(--orange);
  border-radius: 2em;
  font-size: 15px;
  font-weight: 400;
}
.footer-family button:hover img, .footer-family button.show img {
  -webkit-animation: family 0.5s ease forwards;
          animation: family 0.5s ease forwards;
}
.footer-family nav {
  display: none;
  opacity: 0;
  padding: 20px 22px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 50px;
  border-radius: 20px;
  background-color: #fef5e0;
}
.footer-family nav a {
  color: var(--orange);
  display: block;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
}
.footer-family nav a:not(:last-child) {
  margin-bottom: 16px;
}

.footer-info address b {
  color: #222;
  font-size: 15px;
  font-weight: 400;
}
.footer-info address p {
  font-size: 15px;
  margin-top: 16px;
  font-weight: 400;
  color: #888;
}
.footer-info .copy {
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  color: #bbb;
  margin-top: 37px;
}

@media all and (max-width: 1500px) {
  .footer .inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer-logo {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .footer .inner > a {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .footer-family {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .footer-info {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    margin-top: 40px;
  }
}
@media all and (max-width: 1300px) {
  .show-1300 {
    display: block !important;
  }
  .hide-1300 {
    display: none !important;
  }

}
@media all and (max-width: 1260px) {
  .show-1260 {
    display: block !important;
  }
  .hide-1260 {
    display: none !important;
  }
}
@media all and (max-width: 1200px) {
  .show-1200 {
    display: block !important;
  }
  .hide-1200 {
    display: none !important;
  }
  .header-gnb {
    display: none;
  }
  .header-gsnb {
    display: none;
  }
  .header-side {
    padding-top: 150px;
  }
  .header-side .inner > div {
    width: 100%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .header-side .inner {
    margin: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    /* gap: 50px; */
  }
  .header-side__depth1 {
    padding: 25px 3.90625%;
    width: 100%;
    text-align: left;
    font-size: 26px;
  }
  button.header-side__depth1 {
    background-image: url("/image/common/sitemap_arrow.svg");
    background-repeat: no-repeat;
    background-size: 26px;
    background-position: center right 3.90625%;
  }
  button.header-side__depth1.on {
    color: var(--orange);
    background-image: url("/image/common/sitemap_arrow_or.svg");
  }
  .header-side__depth2 {
    display: none;
    text-align: left;
    background-color: #F8F8F8;
    width: 100%;
    padding: 30px 3.90625%;
    margin-top: 0px;
  }
  .header-side__depth2 a:not(:first-child) {
    display: block;
    margin-top: 20px;
  }
  .header-side__depth3 a {
    text-align: left;
  }
}
@media all and (max-width: 1100px) {
  .show-1100 {
    display: block !important;
  }
  .hide-1100 {
    display: none !important;
  }
}
@media all and (max-width: 1024px) {
  .show-1024 {
    display: block !important;
  }
  .hide-1024 {
    display: none !important;
  }
}
@media all and (max-width: 768px) {
  .show-768 {
    display: block !important;
  }
  .hide-768 {
    display: none !important;
  }
}
@media all and (max-width: 720px) {
  .show-720 {
    display: block !important;
  }
  .hide-720 {
    display: none !important;
  }
  .header.top:not(.gnb-on) > .inner,
  .header > .inner {
    height: 13.89vw;
  }
  .header h1 {
    width: 17.13vw;
  }
  .header-side {
    padding-top: 24.17vw;
  }
  .header-side .inner {
    gap: 11.11vw;
  }
  .header-lang {
    padding: 0.69vw 1.67vw;
  }
  .header-lang button {
    font-size: 3.33vw;
    gap: 0.83vw;
  }
  .header-lang button img {
    width: 4.44vw;
  }
  .hamburger-btn {
    width: 6.11vw;
    height: 6.11vw;
    margin-left: 5.83vw;
  }
  .hamburger-btn:before, .hamburger-btn:after, .hamburger-btn span {
    width: 4.72vw;
    min-width: 20px;
    height: 2px;
  }
  .hamburger-btn:after, .hamburger-btn span {
    margin-top: 5px;
  }
  .hamburger-btn.active:after {
    -webkit-transform: translateY(-4.5px) rotate(-135deg);
    transform: translateY(-4.5px) rotate(-135deg);
  }
  .hamburger-btn.active:before {
    -webkit-transform: translateY(9.5px) rotate(135deg);
    transform: translateY(9.5px) rotate(135deg);
  }
  .header-side__depth1 {
    font-size: 5.56vw;
  }
  button.header-side__depth1 {
    background-size: 5.56vw;
  }
  .header-side__depth2 {
    margin-top: 6.94vw;
  }
  .header-side__depth2 a, .header-side__depth2 button {
    font-size: 3.89vw;
  }
  .header-side__depth2 a:not(:first-child) {
    margin-top: 5.56vw;
  }
  .header-side__depth1 {
    padding: 0 4.17vw;
  }
  .header-side__depth2 {
    padding: 4.17vw;
  }
  .header-lang ul {
    padding: 0.42vw 2.78vw;
    border-radius: 2.5vw;
    top: 7.22vw;
  }
  .header-lang ul li a {
    font-size: 3.33vw;
  }
  .common-btn {
    height: 9.72vw;
    font-size: 3.33vw;
  }
  .footer {
    padding: 5.83vw 0 6.11vw;
  }
  .footer-logo {
    width: 22.22vw;
    margin-right: 0;
  }
  .footer .inner > a {
    margin-left: auto;
    font-size: 3.06vw;
    line-height: 6.67vw;
  }
  .footer-family {
    margin-left: 2.64vw;
  }
  .footer-family button {
    height: 7.22vw;
    width: 27.78vw;
    gap: 2.78vw;
    font-size: 3.06vw;
  }
  .footer-info {
    margin-top: 5.56vw;
  }
  .footer-info address b {
    font-size: 3.06vw;
  }
  .footer-info address p {
    margin-top: 2.78vw;
    font-size: 3.06vw;
  }
  .footer-info .copy {
    margin-top: 5.56vw;
    font-size: 3.06vw;
  }
  .footer-family button img {
    width: 2.78vw;
  }
  .footer-family nav {
    padding: 2.78vw 3.06vw;
    bottom: 7.78vw;
    border-radius: 2.78vw;
  }
  .footer-family nav a {
    font-size: 3.06vw;
  }
  .footer-family nav a:not(:last-child) {
    margin-bottom: 3.33vw;
  }
}
@media all and (max-width: 640px) {
  .show-640 {
    display: block !important;
  }
  .hide-640 {
    display: none !important;
  }
}
@media all and (max-width: 568px) {
  .show-568 {
    display: block !important;
  }
  .hide-568 {
    display: none !important;
  }
}