@charset "utf-8";

/* 내용관리 */
#ctt {margin:10px 0;padding:20px;background:#fff}
.ctt_admin {text-align:right}
#ctt header h1 {position:absolute;font-size:0;line-height:0;overflow:hidden}
#ctt_con {padding:10px 0;line-height:1.6em}
#ctt_con img{max-width:100%;height:auto}
.ctt_img {text-align:center}


.in {
  width: 164rem;
  max-width: 100%;
  padding: 0 100px;
  margin: 0 auto;
  position: relative;
}

/*서브 탑 공용*/

.top_img {
    position: relative;
    padding: 0 2.5%;
}

.top_img .img {
    position: relative;
}

.top_img .img:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: var(--black);
    opacity: 0.5;
    z-index: 2;
}

.top_img .img img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.top_img .sub_nav {
    display: flex;
    align-items: center;
    color: #fff;
}

.top_img .sub_nav .svg {
    display: flex;
    margin: 0 25px;
    height: 1.6rem;
}

.top_img .sub_nav .svg svg {
    fill: #fff;
    height: 1.6rem;
}

.top_img .sub_nav .li {
    font-size: 1.6rem;
    font-weight: 500;
}

.top_img .sub_nav .li span {
    display: inline-block;
}

/*.top_img .sub_nav .li.deps1 span{min-width: 11.5rem}*/
/*.top_img .sub_nav .li.deps2 span{min-width: 16rem}*/
.top_img .sub_nav .li a {
    display: flex;
    align-items: center;
}

.top_img .sub_nav .li a svg {
    fill: #fff;
    font-size: 1.6rem;
}

.top_img .sub_nav .li .nice-select {
    font-size: 1.6rem;
    height: auto;
    padding-left: 0;
   
    border: none;
    font-weight: 500;
    line-height: 1.1;
    color: #fff;
    background-color: transparent;
}

.top_img .sub_nav .li .nice-select .list {
    border-radius: 0;
    margin-top: 0.5rem;
    background-color: var(--black);
    padding: 10px 0;
}

.top_img .sub_nav .li .nice-select .list li {
    position: relative;
    padding: 6px 15px 6px 20px;
    min-height: 0;
    line-height: 1.4;
    font-size: 13px;
    color: #fff;
}

.top_img .sub_nav .li .nice-select .list li:before {
    content: '';
    position: absolute;
    left: 1.25rem;
    top: 12px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0;
    transition: all 0.3s;
}



.top_img .sub_nav .li .nice-select.open:after {
    transform: rotate(180deg);
}

.top_img .sub_nav .li .nice-select .list li.selected {
    font-weight: 700;
    color: #fff;
}

.top_img .sub_nav .li .nice-select .list li.selected:before,
.top_img .sub_nav .option:hover:before,
.top_img .sub_nav .option.focus:before,
.top_img .sub_nav .option.selected.focus:before {
    opacity: 1 !important;
}

.top_img .sub_nav .option:hover,
.top_img .sub_nav .option.focus,
.top_img .sub_nav .option.selected.focus {
    background-color: transparent;
}

.top_img .tit {
    font-size: 5.5rem;
    font-weight: 600;
    margin-top: 20px;
    color: #fff;
}

.top_img.type2 {
    margin-bottom: var(--top_img_mg);
    font-size: 20px;
}

.top_img.type2 .img {
    padding-top: 27%;
}

.top_img.type2 .in {
    position: absolute;
    left: 50%;
    top: 60%;
    transform: translate(-50%, 0);
    z-index: 3;
    padding: 0 60px;
}

.top_img.type3 {
    padding: 8rem 0 0;
    margin-bottom: var(--top_img_mg);
}

.top_img.type3 .sub_nav .svg svg {
    fill: var(--black);
}

.top_img.type3 .sub_nav .li .nice-select:after,
.top_img.type3 .sub_nav .li .nice-select,
.top_img.type3 .sub_nav {
    color: var(--black);
}

.top_img.type3 .sub_nav .li a svg {
    fill: var(--black);
}

.top_img.type3 .tit {
    color: var(--black);
}

.top_img.type3 .move_text_box {
    margin-top: 3rem;
}

/* sub move_txt */
.move_text_box {
    transform: translateX(-2.5%);
    width: calc(100vw - var(--scroll-width));
}

.move_text_box .text {
    font-size: 12rem;
}

.move_text_box .text p {
    line-height: 1.2em;
}

.move_text_box .text p+p {
    margin-left: 3rem;
}

.move_text_box .text {
  display: flex;
  flex: 0 0 auto;
  white-space: nowrap;
  overflow: hidden;
  transition: 0.3s;
  font-size: 15rem;
  color: #f3f4f6;
  font-family: var(--e-font);
}
.move_text_box .text p {
  animation: textLoop 70s linear infinite;
  padding-right: 0.3rem;
  line-height: 1.4;
  font-weight: 200;
}

.grid_box {
    display: grid;
    grid-template-columns: 22% 1fr;
    gap: 0 40px;
}

@keyframes textLoop {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}