/* ----- S : Common -----*/
.sec {
  padding: 120px 0;
}

.sec-title {
  font-size: 4.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #074377;
  text-align: center;
}

.more-btn {
  width: 240px;
  height: 64px;
}

.more-btn a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 11px;
  border-radius: 32px;
  /* border: 1px solid #fff; */
  overflow: hidden;
}

.more-btn a::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border: 1px solid #fff;
  border-radius: 32px;
}

.more-btn a::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  right: 11px;
  width: 40px;
  height: 40px;
  border-radius: 32px;
  background-color: #9cc813;
  transition: all .2s ease-out;
  opacity: 0;
}

.more-btn a p {
  position: relative;
  z-index: 2;
  margin-left: 27px;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1;
}

.more-btn a i {
  position: relative;
  z-index: 2;
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #9cc813;
  transition: all .2s ease-out;
}

.more-btn a i::after, 
.more-btn a i::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
}

.more-btn a i::after {
  width: 12px;
  height: 2px;
}

.more-btn a i::before {
  width: 2px;
  height: 12px;
}

@media(min-width:1201px) {
  /* .more-btn:hover a {
    border-color: #9cc813;
  }
   */
  /* .more-btn:hover a::before {
    border-color: #9cc813;
  } */
  
  .more-btn:hover a::after {
    top: 50%;
    right: 0;
    opacity: 1;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
  }
  
  .more-btn:hover a p {
    color: #fff;
  }
  
  .more-btn:hover a i {
    transform: rotate(90deg);
  }
}

@media(max-width:1200px) {
  .sec {
    padding: 105px 0;
  }
  
  .sec-title {
    font-size: 4rem;
  }
  
  .more-btn {
    width: 220px;
    height: 54px;
  }
  
  .more-btn a {
    padding: 11px;
  }
  
  .more-btn a::after {
    right: 11px;
    width: 35px;
    height: 35px;
  }
  
  .more-btn a p {
    margin-left: 25px;
  }
  
  .more-btn a i {
    width: 35px;
    height: 35px;
  }
  
}

@media(max-width:1024px) {
  .sec {
    padding: 90px 0;
  }
  
  .sec-title {
    font-size: 3.6rem;
  }
  
  .more-btn {
    width: 200px;
    height: 45px;
  }
  
  .more-btn a {
    padding: 7px;
  }
  
  .more-btn a::after {
    right: 7px;
    width: 30px;
    height: 30px;
  }
  
  .more-btn a p {
    margin-left: 20px;
    font-size: 1.6rem;
  }
  
  .more-btn a i {
    width: 30px;
    height: 30px;
  }
}

@media(max-width:768px) {
  .sec {
    padding: 80px 0;
  }
  
  .sec-title {
    font-size: 3.2rem;
  }
  
  .more-btn {
    width: 180px;
    height: 40px;
  }
  
  .more-btn a {
    padding: 5px;
  }
  
  .more-btn a::after {
    right: 5px;
  }
  
  .more-btn a p {
    margin-left: 15px;
    font-size: 1.4rem;
  }
  
  
  .more-btn a i::after {
    width: 10px;
  }
  
  .more-btn a i::before {
    height: 10px;
  }
}

@media(max-width:500px) {
  .sec {
    padding: 70px 0;
  }
  
  .sec-title {
    font-size: 2.8rem;
  }
  
  .more-btn {
    width: 160px;
    height: 35px;
  }
  
  .more-btn a {
    padding: 3px;
  }
  
  .more-btn a::after {
    right: 3px;
    width: 27px;
    height: 27px;
  }
  
  .more-btn a p {
    margin-left: 10px;
    font-size: 1.3rem;
  }

  .more-btn a i {
    width: 27px;
    height: 27px;
  }
  
}
/* ----- E : Common -----*/

/* ----- S : Sec01 -----*/
.sec--01 {
  padding: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.sec--01 .inner {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
}

.sec--01 .inner .visual-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  height: 100%;
  width: 50%;
  overflow: hidden;
}

.sec--01 .inner .visual-box .bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: all .3s ease-in;
}

.sec--01 .inner .visual-box .bg::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  transition: all .3s ease-in;
}

.sec--01 .inner .visual-box.lt .bg {
  background-image: url('/child/img/main/sec01_bg01.png');
}

.sec--01 .inner .visual-box.rt .bg {
  background-image: url('/child/img/main/sec01_bg02.png');
}

.sec--01 .inner .visual-box .tit-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sec--01 .inner .visual-box .title {
  margin-bottom: 26px;
  font-size: 4.8rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  transition: all .3s ease-in;
}

.sec--01 .inner .visual-box .text {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  transition: all .3s ease-in;
}

.sec--01 .inner .visual-box .text span {
  color: #e5e5e5;
}

.sec--01 .inner .visual-box .more-btn {
  position: absolute;
  top: 69%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: all .3s ease-in;
}

.sec--01 .inner .visual-box .more-btn a::before {
  display: none;
}

.sec--01 .inner .visual-box.lt .more-btn a {
  background-color: #414b5a;
}

.sec--01 .inner .visual-box .more-btn a {
  background-color: rgba(100, 102, 104, 0.8);
}


.sec--01 .inner .visual-box .more-btn a::after {
  background-color: #fff;
}

.sec--01 .inner .visual-box.lt .more-btn i {
  background-color: #074377;
}

.sec--01 .inner .scroll-box {
  position: absolute;
  left: 50%;
  bottom: 9px;
  transform: translate(-50%, 50%);
  width: 279px;
  height: 279px;
  border-radius: 50%;
  background-color: #fff;
}

.sec--01 .inner .scroll-box .logo {
  width: 184px;
  height: 27px;
  margin: 47px auto 21px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url('/child/img/inc/logo-on.svg');
}

.sec--01 .inner .scroll-box .box {
  position: relative;
  width: 20px;
  height: 32px;
  padding: 5px 0;
  margin: 0 auto;
  border: 2px solid #074377;
  box-sizing: border-box;
  border-radius: 10px;
}

.sec--01 .inner .scroll-box .box span {
  display: block;
  width: 2px;
  height: 6px;
  margin: 0 auto;
  background-color: #9cc813;
  animation: scrollAni 1.5s ease-in infinite;
}

@keyframes scrollAni {
  0% {
    transform: translateY(0);
  }
  
  100% {
    transform: translateY(110%);
  }
}

@media(min-width:1201px) {
  .sec--01 .inner .visual-box:hover .bg {
    transform: scale(1.12);
  } 
  
  .sec--01 .inner .visual-box:hover .bg::after {
    background-color: rgba(0, 0, 0, 0.5);
  }
  
  
  .sec--01 .inner .visual-box .tit-box {
    position: absolute;
    top: calc(50% - 22px);
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .sec--01 .inner .visual-box:hover .title {
    /* margin-top: 94px; */
    margin-bottom: 45px;
    font-size: 5.6rem;
  }
  
  .sec--01 .inner .visual-box:hover .text {
    /* margin-bottom: 75px; */
    font-weight: 600;
  }
  
  .sec--01 .inner .visual-box:hover .more-btn {
    opacity: 1;
    /* top: calc(50% + 162px); */
    top: 67%;
  }
  
  .sec--01 .inner .visual-box .more-btn:hover p {
    color: #151515;
  }
}

@media(max-width:1200px) {
  .sec--01 {
    height: calc(100vh - 60px);
  }
  
  .sec--01 .inner .visual-box .tit-box {
    position: unset; 
    transform: translate(0);   
  }
  
  .sec--01 .inner .visual-box .title {
    /* margin-top: 6px; */
    /* margin-bottom: 40px; */
    font-size: 4.4rem;
    /* transition: margin-bottom .3s ease-in; */
  }
  
  .sec--01 .inner .visual-box .text {
    font-size: 2.2rem;
    margin-bottom: 30px;
    /* transition: margin-bottom .3s ease-in; */
  }
  
  .sec--01 .inner .scroll-box {
    bottom: 9px;
    width: 251px;
    height: 251px;
  }
  
  .sec--01 .inner .scroll-box .logo {
    width: 147px;
    height: 21px;
    margin: 45px auto 20px;
  }
  
  .sec--01 .inner .scroll-box .box {
    width: 20px;
    height: 32px;
    padding: 5px 0;
  }
  
  .sec--01 .inner .scroll-box .box span {
    display: block;
    width: 2px;
    height: 6px;
    margin: 0 auto;
    background-color: #9cc813;
    animation: scrollAni 1.5s ease-in infinite;
  }
  
  .sec--01 .inner .visual-box.on .bg {
    transform: scale(1.12);
  } 
  
  .sec--01 .inner .visual-box.on .bg::after {
    background-color: rgba(0, 0, 0, 0.5);
  }
  
  /* .sec--01 .inner .visual-box.on .title {
    margin-top: 85px;
    margin-bottom: 40px;
    font-size: 5rem;
  }
  
  .sec--01 .inner .visual-box.on .text {
    margin-bottom: 73px;
    font-weight: 600;
  } */
  
  .sec--01 .inner .visual-box .more-btn {
    position: unset;
    transform: translate(0);
    opacity: 1;
    display: block;
  }      
  
  .sec--01 .inner .visual-box .more-btn a {
    opacity: 0;
    transform: translateY(100%);
    transition: all .4s ease-in;
  }
  
  .sec--01 .inner .visual-box.aos-animate .more-btn a {
    opacity: 1;
    transform: translateY(0);
  }
  /* .sec--01 .inner .visual-box.on .more-btn {
    display: flex;
  } */
  
}

@media(max-width:1024px) {
  .sec--01 {
    height: calc(100vh - 70px);
  }
  
  .sec--01 .inner .visual-box .title {
    /* margin-top: 6px; */
    margin-bottom: 15px;
    font-size: 4rem;
  }
  
  .sec--01 .inner .visual-box .text {
    margin-bottom: 25px;
    font-size: 2rem;
  }
  
  .sec--01 .inner .scroll-box {
    bottom: 9px;
    width: 230px;
    height: 230px;
  }
  
  .sec--01 .inner .scroll-box .logo {
    width: 132px;
    height: 19px;
    margin: 40px auto 15px;
  }
  
  .sec--01 .inner .scroll-box .box {
    width: 18px;
    height: 30px;
    padding: 5px 0;
  }
  
  .sec--01 .inner .scroll-box .box span {
    width: 2px;
    height: 6px;
  }
  
  /* .sec--01 .inner .visual-box.on .title {
    margin-top: 75px;
    margin-bottom: 35px;
    font-size: 4.4rem;
  }
  
  .sec--01 .inner .visual-box.on .text {
    margin-bottom: 65px;
  } */
  
}

@media(max-width:768px) {
  .sec--01 {
    height: calc(100vh - 75px);
  }
  
  .sec--01 .inner .visual-box .title {
    /* margin-top: 6px; */
    margin-bottom: 12px;
    font-size: 3.6rem;
  }
  
  .sec--01 .inner .visual-box {
    padding: 0 10px;
  }
  
  .sec--01 .inner .visual-box .text {
    margin-bottom: 20px;
    font-size: 1.8rem;
  }
  
  .sec--01 .inner .scroll-box {
    bottom: 9px;
    width: 200px;
    height: 200px;
  }
  
  .sec--01 .inner .scroll-box .logo {
    width: 132px;
    height: 19px;
    margin: 40px auto 15px;
  }
  
  .sec--01 .inner .scroll-box .box {
    width: 16px;
    height: 26px;
    padding: 4px 0;
  }
  
  .sec--01 .inner .scroll-box .box span {
    width: 2px;
    height: 6px;
  }
/*   
  .sec--01 .inner .visual-box.on .title {
    margin-top: 65px;
    margin-bottom: 30px;
    font-size: 4rem;
  }
  
  .sec--01 .inner .visual-box.on .text {
    margin-bottom: 55px;
  } */
  
}

@media(max-width:500px) {
  .sec--01 {
    height: calc(100vh - 80px);
  }
  
  .sec--01 .inner {
    flex-direction: column;
  }
  
  .sec--01 .inner .visual-box {
    width: 100%;
    height: 50%;
  }
  .sec--01 .inner .visual-box .title {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 3.2rem;
  }
  
  .sec--01 .inner .visual-box {
    padding: 0 10px;
  }
  
  .sec--01 .inner .visual-box .text {
    font-size: 1.6rem;
  }
  
  .sec--01 .inner .scroll-box {
    display: none;
    bottom: 9px;
    width: 200px;
    height: 200px;
  }
  
  .sec--01 .inner .scroll-box .logo {
    width: 132px;
    height: 19px;
    margin: 40px auto 15px;
  }
  
  .sec--01 .inner .scroll-box .box {
    width: 16px;
    height: 26px;
    padding: 4px 0;
  }
  
  .sec--01 .inner .scroll-box .box span {
    width: 2px;
    height: 6px;
  }
  

  
  /* .sec--01 .inner .visual-box.on .title {
    margin-top: 45px;
    margin-bottom: 25px;
    font-size: 3.6rem;
  }
  
  .sec--01 .inner .visual-box.on .text {
    margin-bottom: 45px;
  } */
  
}
/* ----- E : Sec01 -----*/

/* ----- S : Sec02 -----*/
.sec--02 {
  padding: 0;
}

.sec--02 .inner {
  position: relative;
  width: 100%;
  aspect-ratio: 1.5 / 1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url('/child/img/main/sec02_bg.png');
}

.sec--02 .inner .filter {
  content: "";
  display: block;
  position: absolute;
  opacity: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  /* transition: all .3s linear; */
}

/* .sec--02.aos-animate .inner::after{
  opacity: 1;
} */

.sec--02 .inner .cont {
  position: absolute;
  top: calc(50% - 95px);
  left: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.sec--02 .inner .logo {
  width: 640px;
  aspect-ratio: 6.8 / 1;
  opacity: 1;
  margin-bottom: 30px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url('/child/img/inc/logo.svg');
  /* transition: all .4s linear; */
  /* transition-delay: .9s; */
}

/* .sec--02.aos-animate .inner .logo {
  opacity: 1;
} */

.sec--02 .inner .heading {
  opacity: 0;
  margin-bottom: 40px;
  font-size: 5.6rem;
  font-weight: 600;
  color: #fff;
  /* transition: all .4s linear;
  transition-delay: 1.7s; */
}

/* .sec--02.aos-animate .inner .heading {
  opacity: 1;
}  */

.sec--02 .inner .text {
  opacity: 1;
  font-size: 4rem;
  color: #d5d5d5;
  letter-spacing: -0.02em;
  line-height: 1.4;
  /* transition: all .4s linear;
  transition-delay: 1.3s; */
}

/* .sec--02.aos-animate .inner .text {
  opacity: 1;
}  */

.sec--02 .inner .text span {
  opacity: 0;
  display: inline-block;
  font-weight: 700; 
  color: #fff;
}


/* .sec--02 .inner .text span.span1 {
  transition: all .4s linear;
  transition-delay: 2.1s;
}

.sec--02 .inner .text span.span2 {
  transition: all .4s linear;
  transition-delay: 2.5s;
} */

/* .sec--02.aos-animate .inner .text span {
  opacity: 1;
}  */

@media(max-width:1200px) {
  .sec--02 {

  }
  .sec--02 .inner {
    width: 100%;
    height: 100vh;
    aspect-ratio: auto;
  }
  
  .sec--02 .inner .cont {
    top: calc(50% - 80px);
  }
  
  .sec--02 .inner .logo {
    width: 540px;
    margin-bottom: 25px;
  }
  
  .sec--02 .inner .heading {
    margin-bottom: 35px;
    font-size: 5rem;
  }
  
  .sec--02 .inner .text {
    font-size: 3.6rem;
  }
}

@media(max-width:1024px) {
  
  .sec--02 .inner .cont {
    top: calc(50% - 65px);
  }
  
  .sec--02 .inner .logo {
    width: 440px;
    margin-bottom: 25px;
  }
  
  .sec--02 .inner .heading {
    margin-bottom: 30px;
    font-size: 4.4rem;
  }
  
  .sec--02 .inner .text {
    font-size: 3.2rem;
  }
}

@media(max-width:768px) {
  
  .sec--02 .inner .cont {
    top: calc(50% - 50px);
  }
  
  .sec--02 .inner .logo {
    width: 400px;
    margin-bottom: 20px;
  }
  
  .sec--02 .inner .heading {
    margin-bottom: 25px;
    font-size: 3.8rem;
  }
  
  .sec--02 .inner .text {
    font-size: 2.8rem;
  }
}

@media(max-width:500px) {
  
  .sec--02 .inner .cont {
    top: calc(50% - 35px);
  }
  
  .sec--02 .inner .logo {
    width: 310px;
    margin: 0 auto 15px;
  }
  
  .sec--02 .inner .heading {
    margin-bottom: 20px;
    font-size: 3.4rem;
    white-space: nowrap;
  }
  
  .sec--02 .inner .text {
    font-size: 2.4rem;
  }
}
/* ----- E : Sec02 -----*/

/* ----- S : Sec03 -----*/
.sec--03 {
  overflow: hidden;
}
.sec--03 .sec-title {
  margin-bottom: 81px;
}

.gallery-widget-product {
  position: relative;
}

.gallery-widget-product .arrow {
  display: flex;
  align-items: center;
  gap: 0 10px;
  position: absolute;
  top: -80px;
  transform: translateY(-100%);
  right: 0;
}

.gallery-widget-product .prev,
.gallery-widget-product .next {
  width: 56px;
  height: 56px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: background-image .2s ease-out;
  cursor: pointer;
}

.gallery-widget-product .prev {
  background-image: url('/child/img/main/prev.png');
}

.gallery-widget-product .next {
  background-image: url('/child/img/main/next.png');
}

.gallery-widget-product .prev.swiper-button-disabled, 
.gallery-widget-product .next.swiper-button-disabled {
  display: none;
}

.gallery-widget-product .swiper-container {
  padding: 2px 0;
  overflow: visible;
}

.gallery-widget-product .swiper-slide {
  max-width: 442px;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 2px 0 #d5d5d5;
}

.gallery-widget-product .swiper-slide a {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  box-sizing: border-box;
  border: 2px solid #d5d5d5;
  transition: all .3s ease-out;
}

.gallery-widget-product .swiper-slide .thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 1.1 / 1;
  overflow: hidden;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.gallery-widget-product .swiper-slide .thumb > div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.gallery-widget-product .swiper-slide .cont {
  position: relative;
  padding: 46px 28px 47px 45px;
  background-color: #fff;
}

.gallery-widget-product .cont .more-btn {
  position: absolute;
  top: 0;
  right: 40px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-clip: #fff;
  background-color: #fff;
  box-shadow:  0 0 3px 3px #f1f1f1;
  transition: all .3s ease-out;
}

.gallery-widget-product .cont .more-btn .icon {
  display: block;
  position: relative;
  width: 20px;
  height: 20px;
}

.gallery-widget-product .cont .more-btn .icon::before,
.gallery-widget-product .cont .more-btn .icon::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #151515;
  transition: all .3s ease-out;
}

.gallery-widget-product .cont .more-btn .icon::before {
  width: 100%;
  height: 2px;
}

.gallery-widget-product .cont .more-btn .icon::after {
  width: 2px;
  height: 100%;
}

.gallery-widget-product .cont .subject {
  margin-bottom: 5px;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #3e3e3e;
}

.gallery-widget-product .cont .type {
  margin-bottom: 22px;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #9ec917;
}

.gallery-widget-product .cont .text {
  height: 56px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #3e3e3e;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2; 
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gallery-widget-product .progressbar {
  display: none;
  position: relative;
  width: 100%;
  height: 3px;
  max-width: 100%;
  margin-top: 25px;
  overflow: hidden;
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.1);
}
.gallery-widget-product .progressbar .swiper-pagination-progressbar-fill {
  border-radius: 4px;
  background-color: #9cc813;
}

@media(min-width:1201px) {
 
  .gallery-widget-product .swiper-slide:hover a {
    border:2px solid #9cc813;
  }
  
  .gallery-widget-product .swiper-slide:hover .more-btn {
    background-color: #9cc813;
  }
  
  .gallery-widget-product .swiper-slide:hover .cont .more-btn .icon::before,
  .gallery-widget-product .swiper-slide:hover .cont .more-btn .icon::after {
    background-color: #fff;
  }
  
  .gallery-widget-product .prev:hover { 
    background-image: url('/child/img/main/prev-on.png');
  }
  
  .gallery-widget-product .next:hover {
    background-image: url('/child/img/main/next-on.png');
  }
  
  .gallery-widget-product .prev.swiper-button-disabled:hover { 
    background-image: url('/child/img/main/prev.png');
  }
  
  .gallery-widget-product .next.swiper-button-disabled:hover {
    background-image: url('/child/img/main/next.png');
  }
        
}

@media(max-width:1200px) {
  
  .gallery-widget-product .swiper-slide.swiper-slide-active a {
    border:2px solid #9cc813;
  }
  .gallery-widget-product .swiper-slide.swiper-slide-active .more-btn {
    background-color: #9cc813;
  }
  .gallery-widget-product .swiper-slide.swiper-slide-active .more-btn .icon::before, 
  .gallery-widget-product .swiper-slide.swiper-slide-active .more-btn .icon::after {
    background-color: #fff;
  }
  
  .sec--03 .sec-title {
    margin-bottom: 70px;
  }
  
  .gallery-widget-product .arrow {
    gap: 0 10px;
    position: absolute;
    top: -70px;
  }
  
  .gallery-widget-product .prev,
  .gallery-widget-product .next {
    width: 50px;
    height: 50px;
  }
  
  .gallery-widget-product .swiper-slide a {
    border-radius: 10px;
  }
  
  .gallery-widget-product .swiper-slide .cont {
    padding: 40px 25px 45px 40px;
  }
  
  .gallery-widget-product .cont .more-btn {
    right: 25px;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
  }
  
  .gallery-widget-product .cont .more-btn .icon {
    width: 20px;
    height: 20px;
  }
  
  .gallery-widget-product .cont .more-btn .icon::before {
    height: 2px;
  }
  
  .gallery-widget-product .cont .more-btn .icon::after {
    width: 2px;
  }
  
  .gallery-widget-product .cont .subject {
    margin-bottom: 5px;
    font-size: 2.2rem;
  }
  
  .gallery-widget-product .cont .type {
    margin-bottom: 20px;
    font-size: 1.8rem;
  }
  
  .gallery-widget-product .cont .text {
    font-size: 2rem;
  }
  
  .gallery-widget-product .cont .text br {
    display: none;
  }
}

@media(max-width:1024px) {
  .sec--03 .sec-title {
    margin-bottom: 60px;
  }
  
  .gallery-widget-product .arrow {
    gap: 0 10px;
    top: -60px;
  }
  
  .gallery-widget-product .prev,
  .gallery-widget-product .next {
    width: 45px;
    height: 45px;
  }
  
  .gallery-widget-product .swiper-slide {
    max-width: none;
  }
  
  .gallery-widget-product .swiper-slide .cont {
    padding: 35px 20px 40px 35px;
  }
  
  .gallery-widget-product .cont .more-btn {
    right: 20px;
    width: 45px;
    height: 45px;
  }
  
  .gallery-widget-product .cont .more-btn .icon {
    width: 20px;
    height: 20px;
  }
  
  .gallery-widget-product .cont .more-btn .icon::before {
    height: 2px;
  }
  
  .gallery-widget-product .cont .more-btn .icon::after {
    width: 2px;
  }
  
  .gallery-widget-product .cont .subject {
    margin-bottom: 5px;
    font-size: 2rem;
  }
  
  .gallery-widget-product .cont .type {
    margin-bottom: 20px;
    font-size: 1.6rem;
  }
  
  .gallery-widget-product .cont .text {
    height: 50px;
    font-size: 1.8rem;
  }
}

@media(max-width:768px) {
  .sec--03 .sec-title {
    margin-bottom: 50px;
  }
  
  .gallery-widget-product .arrow {
    display: none;
  }
  
  .gallery-widget-product .swiper-slide a  {
    box-shadow: 2px;
  }

  .gallery-widget-product .swiper-slide a  {
    border: 2px solid #d5d5d5;
  }
  
  .gallery-widget-product .swiper-slide .cont {
    padding: 30px 15px 35px 30px;
  }
  
  .gallery-widget-product .cont .more-btn {
    right: 15px;
    width: 40px;
    height: 40px;
  }
  
  .gallery-widget-product .cont .more-btn .icon {
    width: 15px;
    height: 15px;
  }
  
  .gallery-widget-product .cont .more-btn .icon::before {
    height: 1px;
  }
  
  .gallery-widget-product .cont .more-btn .icon::after {
    width: 1px;
  }
  
  .gallery-widget-product .cont .subject {
    margin-bottom: 5px;
    font-size: 1.8rem;
  }
  
  .gallery-widget-product .cont .type {
    margin-bottom: 15px;
    font-size: 1.4rem;
  }
  
  .gallery-widget-product .cont .text {
    height: 45px;
    font-size: 1.6rem;
  }
  
  .gallery-widget-product .progressbar {
    display: block;
  }

}

@media(max-width:500px) {
  .sec--03 .sec-title {
    margin-bottom: 45px;
  }
  
  .gallery-widget-product .arrow {
    display: none;
  }
  
  .gallery-widget-product .swiper-slide a  {
    box-shadow: 2px;
  }

  .gallery-widget-product .swiper-slide a  {
    border: 2px solid #d5d5d5;
  }
  
  .gallery-widget-product .swiper-slide .cont {
    padding: 25px 10px 30px 12px;
  }
  
  .gallery-widget-product .cont .more-btn {
    right: 12px;
    width: 35px;
    height: 35px;
  }
  
  .gallery-widget-product .cont .more-btn .icon {
    width: 12px;
    height: 12px;
  }
  
  .gallery-widget-product .cont .subject {
    margin-bottom: 3px;
    font-size: 1.6rem;
  }
  
  .gallery-widget-product .cont .type {
    margin-bottom: 12px;
    font-size: 1.3rem;
  }
  
  .gallery-widget-product .cont .text {
    height: 40px;
    font-size: 1.4rem;
  }
  
  .gallery-widget-product .progressbar {
    height: 2px;
    margin-top: 20px;
  }
}

@media(max-width:400px) {
  .gallery-widget-product .cont .type {
    height: 30px;
    margin-bottom: 10px;
  }
}
/* ----- E : Sec03 -----*/

/* ----- S : Sec04 -----*/
.sec--04 {
  background-color: #f2f5f8;
}

.sec--04 .heading {
  position: relative;
  margin-top: 6px;
  margin-bottom: 78px;
}

.sec--04 .more-btn {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.sec--04 .more-btn a::before {
  border-color: #a5a5a5;
}

.sec--04 .more-btn a p {
  color: #a5a5a5;
}

.gallery-widget-news {
  position: relative;
}

.gallery-widget-news .prev,
.gallery-widget-news .next {
  position: absolute;
  z-index: 9;
  top: 50%;
  transform: translateY(-50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color:#454545;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  transition: all .3s ease-out;
}

.gallery-widget-news .prev {
  left: -180px;
  background-image: url('/child/img/main/news_prev.png');
}

.gallery-widget-news .next {
  right: -180px;
  background-image: url('/child/img/main/news_next.png');
}

.gallery-widget-news .prev.swiper-button-disabled, 
.gallery-widget-news .next.swiper-button-disabled {
  opacity: 0.1;
  cursor: unset;
}

.gallery-widget-news .swiper-container {
  padding: 7px 0;
}

.gallery-widget-news .swiper-slide {
  width: 100%;
  padding-bottom: 5px;
}

.gallery-widget-news .swiper-slide a {
  display: block;
  width: 100%;
}

.gallery-widget-news .swiper-slide .thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 1.066 / 1;
  /* aspect-ratio: 1.833 / 1; */
  overflow: hidden;
  /* border-top-left-radius: 10px;
  border-top-right-radius: 10px; */
  border: 1px solid #c5c5c5;
}

.gallery-widget-news .swiper-slide .thumb > div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.gallery-widget-news .swiper-slide .cont {
  width: 100%;
  padding-top: 17px;
  /* border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px; */
  /* background-color: #fff; */
  /* box-shadow: 0 0 7px rgba(0, 0, 0, 0.15); */
}

.gallery-widget-news .cont .subject {
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2; 
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 60px;
  margin-bottom: 22px;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.33;
}

.gallery-widget-news .cont .date {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #b1b1b1;
}

.gallery-widget-news .progressbar {
  display: none;
  position: relative;
  width: 100%;
  height: 3px;
  max-width: 100%;
  margin-top: 25px;
  overflow: hidden;
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.1);
}

.gallery-widget-news .progressbar .swiper-pagination-progressbar-fill {
  border-radius: 4px;
  background-color: #9cc813;
}

@media(min-width:1201px) {
  .sec--04 .more-btn:hover a {
    border-color: #9cc813;
  }
  
  .sec--04 .more-btn:hover a p {
    color: #fff;
  }
}

@media(max-width:1800px) {
  .gallery-widget-news .prev {
    left: 0px;
    transform: translateX(-50%);
  }
  
  .gallery-widget-news .next {
    right: 0;
    transform: translateX(50%);
  }
}

@media(max-width:1600px) {
  .gallery-widget-news .prev,
  .gallery-widget-news .next {
    width: 50px;
    height: 50px;
  }
  
  .gallery-widget-news .prev {
    left: 0px;
    transform: translateX(-50%);
  }
  
  .gallery-widget-news .next {
    right: 0;
    transform: translateX(50%);
  }
}

@media(max-width:1450px) {
  .gallery-widget-news .prev {
    left: 10px;
  }
  
  .gallery-widget-news .next {
    right:10px;
  }
}

@media(max-width:1200px) {
  .sec--04 .heading {
    margin-bottom: 70px;
  }
  
  .gallery-widget-news .prev,
  .gallery-widget-news .next {
    width: 50px;
    height: 50px;
  }
  
  .gallery-widget-news .prev {
    left: 10px;
  }
  
  .gallery-widget-news .next {
    right:10px;
  }
  
  .gallery-widget-news .swiper-container {
    padding: 7px 0;
  }
  
  .gallery-widget-news .swiper-slide .cont {
    padding-top: 15px;
  }
  
  .gallery-widget-news .cont .subject {
    height: 55px;
    margin-bottom: 20px;
    font-size: 2.2rem;
  }
  
  .gallery-widget-news .cont .date {
    /* font-size: 1.8rem; */
  }
  

}

@media(max-width:1024px) {
  .sec--04 .heading {
    margin-bottom: 60px;
  }
  
  .gallery-widget-news .prev,
  .gallery-widget-news .next {
    width: 45px;
    height: 45px;
  }
  
  .gallery-widget-news .prev {
    left: 10px;
  }
  
  .gallery-widget-news .next {
    right:10px;
  }
  
  .gallery-widget-news .swiper-container {
    padding: 7px 0;
  }
  
  .gallery-widget-news .swiper-slide .cont {
    padding-top: 15px;
  }
  
  .gallery-widget-news .cont .subject {
    height: 52px;
    margin-bottom: 15px;
    font-size: 2rem;
  }
  
  .gallery-widget-news .cont .date {
    font-size: 1.6rem;
  }
}

@media(max-width:768px) {
  .sec--04 .heading {
    margin-bottom: 50px;
  }
  
  .gallery-widget-news .prev,
  .gallery-widget-news .next {
    display: none;
    width: 40px;
    height: 40px;
  }
  
  .gallery-widget-news .prev {
    left: 10px;
  }
  
  .gallery-widget-news .next {
    right:10px;
  }
  
  .gallery-widget-news .swiper-container {
    padding: 7px 0;
  }
  
  .gallery-widget-news .swiper-slide .cont {
    padding-top: 12px;
  }
  
  .gallery-widget-news .cont .subject {
    height: 48px;
    margin-bottom: 12px;
    font-size: 1.8rem;
  }
  
  .gallery-widget-news .cont .date {
    font-size: 1.4rem;
  }
  
  .gallery-widget-news .progressbar {
    display: block;
  }
  
  .sec--04 .sec-title {
    text-align: left;
  }
  
  .sec--04 .more-btn  {
    width: 140px;
  }

}

@media(max-width:500px) {
  .sec--04 .heading {
    margin-bottom: 45px;
  }
  
  .gallery-widget-news .swiper-container {
    padding: 7px 0;
  }
  
  .gallery-widget-news .swiper-slide .cont {
    padding-top: 10px;
  }
  
  .gallery-widget-news .cont .subject {
    height: 43px;
    margin-bottom: 10px;
    font-size: 1.6rem;
  }
  
  .gallery-widget-news .cont .date {
    font-size: 1.3rem;
  }
  
  .gallery-widget-news .progressbar {
    height: 2px;
    margin-top: 20px;
  }
  
    
  .sec--04 .more-btn  {
    width: 120px;
  }
 
}
/* ----- E : Sec04 -----*/

/* ----- S : Sec05 -----*/
.sec--05  {
  padding: 96px 0 103px;
  overflow: hidden;
}

.sec--05 .rolling-text-wrap {
  position: relative;
  overflow: hidden;
  margin: -5px 0;
}

.sec--05 .text {
  display: flex;
  align-items: center;
  overflow: hidden;
}

.sec--05 .text--01 {
  width: 6684px;
  animation: textRolling 63s linear infinite;
}

.sec--05 .text--02 {
  width: 6798px;
  animation: textRolling 60s linear infinite;
  animation-direction:reverse;
}

.sec--05 .text p {
  margin-right: 40px;
  font-size: 9.6rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #a9b6c7;
} 

.sec--05 .text p span {
  color: #d2e5a7;
}

.sec--05 .text p.type01 {
  -webkit-text-stroke:2px #a9b6c7;
  -webkit-text-fill-color:transparent;
}

.sec--05 .text p.type01 span {
  -webkit-text-stroke:2px #d2e5a7;
}

@keyframes textRolling {
  0% {
    transform: translateX(0%);
  }
  
  100% {
    transform: translateX(-50%);
  }
}

@media(max-width:1200px) {
  .sec--05  {
    padding: 85px 0 90px;
  }
  
  .sec--05 .rolling-text-wrap {
    margin: -5px 0;
  }
  
  .sec--05 .text--01 {
    width: 5715px;
    animation: textRolling 63s linear infinite;
  }
  
  .sec--05 .text--02 {
    width: 5816px;
    animation: textRolling 60s linear infinite;
    animation-direction:reverse;
  }
  
  .sec--05 .text p {
    margin-right: 35px;
    font-size: 8.2rem;
  } 
}

@media(max-width:1024px) {
  .sec--05  {
    padding: 75px 0 80px;
  }
  
  .sec--05 .rolling-text-wrap {
    margin: -4px 0;
  }
  
  .sec--05 .text--01 {
    width: 4880px;
    animation: textRolling 63s linear infinite;
  }
  
  .sec--05 .text--02 {
    width: 4966px;
    animation: textRolling 60s linear infinite;
    animation-direction:reverse;
  }
  
  .sec--05 .text p {
    margin-right: 30px;
    font-size: 7rem;
  } 
}

@media(max-width:768px) {
  .sec--05  {
    padding: 65px 0 70px;
  }
  
  .sec--05 .rolling-text-wrap {
    margin: -3px 0;
  }
  
  .sec--05 .text--01 {
    width: 4046px;
    animation: textRolling 63s linear infinite;
  }
  
  .sec--05 .text--02 {
    width: 4117px;
    animation: textRolling 60s linear infinite;
    animation-direction:reverse;
  }
  
  .sec--05 .text p {
    margin-right: 25px;
    font-size: 5.8rem;
  } 
}

@media(max-width:500px) {
  .sec--05  {
    padding: 65px 0 60px;
  }
  
  .sec--05 .rolling-text-wrap {
    margin:  0;
  }
  
  .sec--05 .text--01 {
    width: 3400px;
    animation: textRolling 63s linear infinite;
  }
  
  .sec--05 .text--02 {
    width: 3468px;
    animation: textRolling 60s linear infinite;
    animation-direction:reverse;
  }
  
  .sec--05 .text p {
    margin-right: 25px;
    font-size: 4.8rem;
  } 
}
/* ----- E : Sec05 -----*/

/* ----- S : Sec06 -----*/
.sec--06 {
  padding: 80px 0;
}
.sec--06 .inner {
  max-width: 1790px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.sec--06 .banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  aspect-ratio: 3.142 / 1;
  border-radius: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url('/child/img/main/sec06_bg.png');
}

.sec--06 .banner .text {
  margin-top: -20px;
  margin-bottom: 67px;
  font-size: 4.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.45;
  color: #fff;
  text-align: center;
}

@media(max-width:1200px) {
  .sec--06 {
    padding: 70px 0;
  }
  
  .sec--06 .banner {
    aspect-ratio: 3 / 1;
  }
  
  .sec--06 .banner .text {
    margin-top: -18px;
    margin-bottom: 57px;
    font-size: 3.8rem;
  }
}

@media(max-width:1024px) {
  .sec--06 {
    padding: 60px 0;
  }
  
  .sec--06 .banner {
    aspect-ratio: 2.6 / 1;
  }
  
  .sec--06 .banner .text {
    margin-top: -10px;
    margin-bottom: 45px;
    font-size: 3.2rem;
  }
}

@media(max-width:768px) {
  .sec--06 {
    padding: 50px 0;
  }
  
  .sec--06 .banner {
    padding: 0 10px;
    aspect-ratio: 2 / 1;
  }
  
  .sec--06 .banner .text {
    margin-top: -10px;
    margin-bottom: 35px;
    font-size: 2.6rem;
  }
}

@media(max-width:540px) {
  .sec--06 {
    padding: 0 0 45px;
  }
  
  .sec--06 .banner {
    aspect-ratio: 1.35 / 1;
  }
  
  .sec--06 .banner .text {
    margin-top: -5px;
    margin-bottom: 25px;
    font-size: 2rem;
  }
}
/* ----- E : Sec06 -----*/

/* Popup */
#popup {
	position: relative;
  }
  
  .popup-layer {
	z-index: 10000;
	position: absolute;
	background: #fff;
	box-shadow: 0px 0px 20px 0px rgba(0,0,0,.25);
	animation: popup-fade .65s ease-in-out .35s forwards;
	opacity: 0;
	max-width:800px;
  }
  
  @keyframes popup-fade {
	0% { opacity: 0;
	  -webkit-transform: translateY(25px);
	  -ms-transform: translateY(25px);
	  transform: translateY(25px); }
	100% { opacity: 1;
	  -webkit-transform: translateY(0);
	  -ms-transform: translateY(0);
	  transform: translateY(0); }
  }
  .popup-layer__body {
	background: #fff;
  }
  
  .popup-layer__body img {
	display: block;
	margin: 0 auto;
	border: none;
	max-width: 100%;
  }
  
  .popup-layer__foot {
	background: #424242;
  }
  
  .popup-layer__foot ul {
	display:flex;
	flex-wrap: wrap;
  }
  
  .popup-layer__foot li {
	width:50%;
	padding:10px;
  }
  
  .popup-layer__foot li:first-child {
	padding-right:0;
  }
  
  .popup-layer__foot li:last-child {
	text-align: right;
  }
  
  .popup-layer__foot span {
	font-size: 1.5rem;
	color: #fff;
	cursor: pointer;
	transition:all 0.3s ease;
  }
  
  .popup-layer__foot label:hover span { opacity: .7; }
  
  /* .popup-layer-foot { background: #424242; }
  .popup-layer-foot span { font-size: 15px; color: #fff; }
  .popup-layer-foot label:hover span { opacity: .7; }
  .popup-layer-foot li:first-child { padding-right: 0; }
  .popup-layer-foot li:last-child { text-align: right; } */
  
  
  @media (max-width: 1024px){
	/* .popup-layer { z-index: 999; } */
	.popup-layer { top: 95px !important; left: 0 !important; margin: 0 5px; }
  }
  @media (max-width: 768px){
  
	.popup-layer {
	  width:calc(100% - 10px);
	}
  
	.popup-layer img {
	  max-width: none;
	  width:100%;
	  height: auto !important;
	}
	.popup-layer-foot span { font-size: 14px; }
  
  }
  @media (max-width: 375px){
	.popup-layer-foot li { width: 100%; }
	.popup-layer-foot li:last-child { text-align: left; }
  }