@charset "UTF-8";
@import url("layout.css");
@import url("contents.css");
@import url("/resources/css/common/print.css");
/*-------------------------------------------------
title       : 서브
Author      : PLAN I
Create date : 2025-01-31
-------------------------------------------------*/
#container > .inner:first-child {
  max-width: 148rem;
  padding: 0 2rem;
  margin-top: 12rem;
  margin-bottom: 15rem;
}
#container > .inner > .contents {
  width: 100%;
}

#visual {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 56rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#visual img {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
  min-width: 100%;
  max-width: inherit;
  min-height: 56rem;
}
#visual .inner strong {
  display: block;
  font-size: 4.8rem;
  color: #fff;
}
#visual .krds-breadcrumb-wrap {
  margin-bottom: 4rem;
}
#visual .breadcrumb {
  position: relative;
  z-index: 1;
}
#visual .breadcrumb > li {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.8rem;
  font-weight: 700;
}
#visual .breadcrumb > li:last-of-type::after {
  display: none;
}
#visual .breadcrumb .depth1::after {
  content: "";
  width: 2.4rem;
  height: 3px;
  background-color: #ffb808;
  margin: 0 1.6rem;
}
#visual .breadcrumb .depth2::after {
  content: "";
  width: 0.9rem;
  height: 3px;
  background-color: #fff;
  margin: 0 1.6rem;
  opacity: 0.5;
}
#visual .breadcrumb .depth3 {
  position: relative;
}
#visual .breadcrumb .depth3 ul {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 0;
  max-height: 0;
  overflow: hidden;
  min-width: 15rem;
  -webkit-transition: height 0.3s ease-in-out, max-height 0.3s ease-in-out;
  transition: height 0.3s ease-in-out, max-height 0.3s ease-in-out;
  border-radius: 1.2rem;
  background: #FFF;
  -webkit-box-shadow: 2px 4px 16px 0 rgba(0, 0, 0, 0.11);
          box-shadow: 2px 4px 16px 0 rgba(0, 0, 0, 0.11);
}
#visual .breadcrumb .depth3 ul a {
  display: block;
  padding: 0.8rem;
  font-size: 1.6rem;
  font-weight: 400;
  color: #616161;
  line-height: 1.4;
}
#visual .breadcrumb .depth3 ul a:hover, #visual .breadcrumb .depth3 ul a:focus {
  color: #02A;
  background-color: #EFF0F1;
  text-decoration: underline;
}
#visual .breadcrumb .depth3.on ul {
  padding: 0.8rem;
  height: auto;
  max-height: 100rem;
  border: 1px solid #616161;
}
#visual .breadcrumb .depth3.has_sub .depth3_btn {
  padding-right: 3rem;
}
#visual .breadcrumb .depth3.has_sub .depth3_btn::after {
  font-family: "remixicon";
  content: "\ea4e";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  right: 0;
  -webkit-transition: var(--time2);
  transition: var(--time2);
}
#visual .breadcrumb .depth3.has_sub.on .depth3_btn::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

.tab {
  position: relative;
  margin-bottom: 0;
}
.tab::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1000%;
  height: 1px;
  background-color: #eee;
}
.tab > ul {
  gap: 3.2rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.8rem;
}
.tab > ul a {
  padding: 2.1rem 0;
  color: #969FAE;
  font-weight: 700;
  border-bottom: 2px solid transparent;
}
.tab > ul a:hover, .tab > ul a:focus {
  color: #6C7481;
}
.tab > ul .active a {
  color: #02A;
  border-color: #02A;
}

.contents_body {
  padding: 10rem 0;
}

body #visual img {
  -webkit-filter: blur(10px);
          filter: blur(10px);
  opacity: 0.2;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}
body #visual .breadcrumb {
  -webkit-transform: translateY(2rem);
          transform: translateY(2rem);
  opacity: 0;
  -webkit-transition: all 0.5s ease-out 0.3s;
  transition: all 0.5s ease-out 0.3s;
}
body #visual strong {
  -webkit-transform: translateY(2rem);
          transform: translateY(2rem);
  opacity: 0;
  -webkit-transition: all 0.5s ease-out 0.6s;
  transition: all 0.5s ease-out 0.6s;
}
body #krds-footer,
body #container .in-between {
  -webkit-transform: translateY(3rem);
          transform: translateY(3rem);
  opacity: 0;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
body.on #visual img {
  -webkit-filter: blur(0);
          filter: blur(0);
  opacity: 1;
}
body.on #visual .breadcrumb,
body.on #visual strong {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
body.on #krds-footer,
body.on #container .in-between {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}