/* ---------- S: Common ---------- */
.sec {
  padding: 150px 0;
}

.view-more {
  width: 220px;
  height: 60px;
  border-radius: 30px;
  overflow: hidden;
}

.view-more a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 22px;
  width: 100%;
  height: 100%;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: #fff;
  font-family:"Poppins", serif;
}

.view-more a .dot {
  width: 30px;
}

.view-more a .dot span {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #fff;
  animation: dotAni 1s linear infinite; 
}

@keyframes dotAni {
  0%{
    transform: translateX(0);
    opacity: 1;
  }

  100%{
    transform: translateX(20px);
    opacity: 0.3;
  }
}

.sec-tit {
  margin-bottom: 14px;
  font-size: 7.2rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1;
}

.sec-txt {
  font-size: 2.4rem;
  letter-spacing: -0.025em;
}

@media(max-width:1200px) {
  .sec {
    padding: 130px 0;
  }
  
  .view-more {
    width: 200px;
    height: 50px;
    border-radius: 28px;
  }
  
  .view-more a {
    gap: 0 20px;
    font-size: 1.8rem;
  }
  
  .view-more a .dot {
    width: 25px;
  }
  
  .view-more a .dot span {
    width: 7px;
    height: 7px;
  }
  
  .sec-tit {
    font-size: 6.2rem;
  }
  
  .sec-txt {
    font-size: 2.2rem;
  }
}

@media(max-width:1024px) {
  .sec {
    padding: 110px 0;
  }
  
  .view-more {
    width: 180px;
    height: 45px;
    border-radius: 26px;
  }
  
  .view-more a {
    gap: 0 15px;
    font-size: 1.6rem;
  }
  
  .view-more a .dot {
    width: 20px;
  }
  
  .view-more a .dot span {
    width: 6px;
    height: 6px;
  }
  
  .sec-tit {
    margin-bottom: 12px;
    font-size: 5.2rem;
  }
  
  .sec-txt {
    font-size: 2rem;
  }
}

@media(max-width:768px) {
  .sec {
    padding: 90px 0;
  }
  
  .view-more {
    width: 160px;
    height: 40px;
    border-radius: 24px;
  }
  
  .view-more a {
    gap: 0 12px;
    font-size: 1.4rem;
  }
  
  .view-more a .dot {
    width: 18px;
  }
  
  .view-more a .dot span {
    width: 6px;
    height: 6px;
  }
  
  .sec-tit {
    margin-bottom: 10px;
    font-size: 4.4rem;
  }
  
  .sec-txt {
    font-size: 1.8rem;
  }
}

@media(max-width:500px) {
  .sec {
    padding: 80px 0;
  }
  
  .view-more {
    width: 140px;
    height: 35px;
    border-radius: 22px;
  }
  
  .view-more a {
    gap: 0 10px;
    font-size: 1.3rem;
  }
  
  .view-more a .dot {
    width: 16px;
  }
  
  .view-more a .dot span {
    width: 5px;
    height: 5px;
  }
  
  .sec-tit {
    font-size: 3.6rem;
  }
  
  .sec-txt {
    font-size: 1.6rem;
  }
}
/* ---------- E: Common ---------- */

/* ---------- E: Sec01 ---------- */
.sec01 {
  width: 100%;
  height: 100vh;
  padding: 0px;
  background-color: #000;
}

.sec01 .visual {
  width: 100%;
  height: 100%;
  position: relative;
}

.sec01 .visual .inner {
  position: relative;
  max-width: 1470px;
  height: 100%;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
  background-color: transparent;
}

.sec01 .t-box {
  position: absolute;
  top: calc(50% - 50px);
  left: 15px;
  transform: translateY(-50%);
}

.sec01 .t-box .tit {
  margin-bottom: 15px;
  font-size: 6.4rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #fff;
}

.sec01 .t-box .tit p {
  opacity: 0;
  transform: translateY(100%);
}

.sec01 .t-box .txt {
  font-size: 2.8rem;
  letter-spacing: -0.025em;
  color: #fff;
}

.sec01 .t-box .txt br {
  display: none;
}

.sec01 .t-box .txt p {
  opacity: 0;
  transform: translateY(100%);
}

.sec01  .swiper-slide-active .tit p {
  animation: txtAni .7s linear forwards;
  animation-delay: .2s;
}

.sec01  .swiper-slide-active .txt p {
  animation: txtAni .7s linear forwards;
  animation-delay: .8s;
}

@keyframes txtAni {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.sec01 .background {
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.sec01 .background.background01 {
  background-image: url("/child/img/main/visual01.png");
}

.sec01 .scroll-down {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px 0;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  width: 120px;
  height: 120px;
  padding: 30px;
  border-radius: 50%;
  cursor: pointer;
  background-color: #009be3;
  box-shadow: 0 0 9px 2px rgba(0, 155, 227, .7);
}

.sec01 .scroll-down::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  width: 187px;
  height: 187px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url('/child/img/main/rolling-txt.png');
  animation: roll 8.5s linear infinite;
}

@keyframes roll {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.sec01 .scroll-down .dot {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #fff;
  animation: scrollAni 1.8s linear infinite;
}

@keyframes scrollAni {
  0% {
    top: 30px;
    opacity: 1;
  }
  100% {
    top: calc(100% - 30px);
    opacity: 0.3;
  }
}

/* Swiper */
.sec01 .swiper-container {
  height: 100%;
}

.sec01 .swiper-wrapper {
  height: 100%;
}

.sec01 .swiper-slide {
  height: 100%;
  overflow: hidden;
}

.sec01 .visual-pagination {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(60% - 25px);
  z-index: 9;
  display: flex;
  align-items: center;
  max-width: 1470px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

.sec01 .visual-pagination .swiper-pagination-bullet {
  display: block;
	width: 8px;
  height: 8px;
  margin-right: 10px;
	border-radius: 0;
  background-color: transparent;
  transition: all .35s linear;
  opacity: 1;
}

.sec01 .visual-pagination .swiper-pagination-bullet .line {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 4px;
  background-color: #fff;
}

.sec01 .visual-pagination .swiper-pagination-bullet .line::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -1px;
  width: 0;
  height: 100%;
  border-radius: 3px;
  background-color: #009be3;
}

.sec01 .visual-pagination .swiper-pagination-bullet-active {
  width: 120px;
}

.sec01 .visual-pagination .swiper-pagination-bullet-active .line::after {
  animation: slide-progress 5.1s ease-out forwards;
} 


@keyframes slide-progress {
	0% {
    width: 0;
	}

	100% {
    width: 101%;
	}
}


@media(max-width:1200px) {
  .sec01 {
    height: calc(100vh - 60px);
  }
  
  .sec01 .t-box .tit {
    font-size: 5.6rem;
  }
  
  .sec01 .t-box .txt {
    font-size: 2.4rem;
  }
  
  .sec01 .scroll-down {
    width: 100px;
    height: 100px;
    padding: 25px;
  }
  
  .sec01 .scroll-down::after {
    width: 160px;
    height: 160px;
  }

  .sec01 .scroll-down .dot {
    top: 25px;
    width: 7px;
    height: 7px;
  }
  
  @keyframes scrollAni {
    0% {
      top: 25px;
      opacity: 1;
    }
    100% {
      top: calc(100% - 25px);
      opacity: 0.3;
    }
  }
  
  .sec01 .visual-pagination .swiper-pagination-bullet-active {
    width: 100px;
  }
}

@media(max-width:1024px) {
  .sec01 {
    height: calc(100vh - 70px);
  }
  
  .sec01 .t-box .tit {
    font-size: 4.8rem;
  }
  
  .sec01 .t-box .txt {
    font-size: 2.2rem;
  }
  
  .sec01 .scroll-down {
    width: 80px;
    height: 80px;
    padding: 20px;
  }
  
  .sec01 .scroll-down::after {
    width: 140px;
    height: 140px;
  }

  .sec01 .scroll-down .dot {
    top: 20px;
    width: 6px;
    height: 6px;
  }
  
  @keyframes scrollAni {
    0% {
      top: 20px;
      opacity: 1;
    }
    100% {
      top: calc(100% - 20px);
      opacity: 0.3;
    }
  }
  
  .sec01 .visual-pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
  }
  
  .sec01 .visual-pagination .swiper-pagination-bullet-active {
    width: 80px;
  }
}

@media(max-width:768px) {
  .sec01 {
    height: calc(100vh - 80px);
  }

  .sec01 .t-box .tit {
    font-size: 4rem;
  }
  
  .sec01 .t-box .txt {
    font-size: 2rem;
  }
  
  .sec01 .t-box .txt br {
    display: block;
  }
  
  .sec01 .scroll-down {
    width: 70px;
    height: 70px;
    padding: 15px;
  }
  
  .sec01 .scroll-down::after {
    width: 120px;
    height: 120px;
  }

  .sec01 .scroll-down .dot {
    top: 15px;
    width: 5px;
    height: 5px;
  }
  
  @keyframes scrollAni {
    0% {
      top: 15px;
      opacity: 1;
    }
    100% {
      top: calc(100% - 15px);
      opacity: 0.3;
    }
  }
  
  .sec01 .visual-pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    margin-right: 8px;
  }
  
  .sec01 .visual-pagination .swiper-pagination-bullet-active {
    width: 70px;
  }
  
  @keyframes slide-progress {
    0% {
      width: 0;
    }
  
    100% {
      width: 101.8%;
    }
  }
  
}

@media(max-width:500px) {
  .sec01 {
    height: calc(100vh - 150px);
  }
  
  .sec01 .t-box .tit {
    margin-bottom: 10px;
    font-size: 3.2rem;
  }
  
  .sec01 .t-box .txt {
    font-size: 1.8rem;
  }
  
  .sec01 .scroll-down {
    width: 60px;
    height: 60px;
    padding: 12px;
  }
  
  .sec01 .scroll-down::after {
    width: 100px;
    height: 100px;
  }

  .sec01 .scroll-down .dot {
    top: 12px;
  }
  
  @keyframes scrollAni {
    0% {
      top: 12px;
      opacity: 1;
    }
    100% {
      top: calc(100% - 12px);
      opacity: 0.3;
    }
  }
  
  .sec01 .visual-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    margin-right: 6px;
  }
  
  .sec01 .visual-pagination .swiper-pagination-bullet-active {
    width: 65px;
  }
}
/* ---------- E: Sec01 ---------- */

/* ---------- S: Sec02 ---------- */
.sec02 {
  position: relative;
  background-color: #f5f5f5;
  overflow: hidden;
}

.sec02 .logo {
  position: relative;
  width: 200px;
  aspect-ratio: 3.9 / 1;
  overflow: hidden;
  margin-bottom: 62px;
}

.sec02 .logo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.sec02  .container {
  position: relative;
}

.sec02  .bg {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1005px;
  aspect-ratio: 1.265 / 1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url('/child/img/main/sec03_bg.png');
}

.sec02  .container .t-box {
  margin-bottom: 62px;
}

.sec02 .t-box span {
  display: inline-block;
  font-size: 9.2rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.3;
  color: #bfbfbf;
  transition: all .2s linear;
  vertical-align: middle;
}

.sec02  .container .t-box .t21 {
  position: relative;
  opacity: 0;
  width: 200px;
  aspect-ratio: 1.818 / 1;
  margin-left: 30px;
}

.sec02  .container .t-box .t21 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.sec02  .container.aos-animate .t-box span {
 color: #191919; 
}

.sec02  .container.aos-animate .t-box .t02 {
  transition-delay: .15s;
}
.sec02  .container.aos-animate .t-box .t03 {
  transition-delay: .3s;
}
.sec02  .container.aos-animate .t-box .t04 {
  transition-delay: .45s;
}
.sec02  .container.aos-animate .t-box .t05 {
  transition-delay: .6s;
}
.sec02  .container.aos-animate .t-box .t06 {
  transition-delay: .75s;
}
.sec02  .container.aos-animate .t-box .t07 {
  transition-delay: .9s;
}
.sec02  .container.aos-animate .t-box .t08 {
  transition-delay: 1.05s;
}
.sec02  .container.aos-animate .t-box .t09 {
  transition-delay: 1.2s;
}
.sec02  .container.aos-animate .t-box .t10 {
  transition-delay: 1.35s;
}
.sec02  .container.aos-animate .t-box .t11 {
  transition-delay: 1.5s;
}
.sec02  .container.aos-animate .t-box .t12 {
  transition-delay: 1.65s;
}
.sec02  .container.aos-animate .t-box .t13 {
  transition-delay: 1.8s;
}
.sec02  .container.aos-animate .t-box .t14 {
  transition-delay: 1.95s;
}
.sec02  .container.aos-animate .t-box .t15 {
  transition-delay: 2.1s;
}
.sec02  .container.aos-animate .t-box .t16 {
  transition-delay: 2.25s;
}
.sec02  .container.aos-animate .t-box .t17 {
  transition-delay: 2.4s;
}
.sec02  .container.aos-animate .t-box .t18 {
  transition-delay: 2.55s;
}
.sec02  .container.aos-animate .t-box .t19 {
  transition-delay: 2.7s;
}
.sec02  .container.aos-animate .t-box .t20 {
  transition-delay: 2.85s;
}
.sec02  .container.aos-animate .t-box .t21 {
  opacity: 1;
  transition-delay:3s;
}

.sec02 .view-more {
  width: 300px;
  height: 80px;
  border-radius: 40px;
}

.sec02 .view-more a {
  font-size: 2.6rem;
}

.sec02  .view-more a .dot span {
  width: 12px;
  height: 12px;
}

@media(max-width:1200px) {
  .sec02 .logo {
    width: 260px;
    margin-bottom: 50px;
  }
  
  .sec02  .bg {
    width: 885px;
  }
  
  .sec02  .container .t-box {
    margin-bottom: 50px;
  }
  
  .sec02 .t-box span {
    font-size: 7.8rem;
  }
  
  .sec02  .container .t-box .t21 {
    width: 180px;
    margin-left: 25px;
  }

  .sec02 .view-more {
    width: 270px;
    height: 70px;
    border-radius: 38px;
  }
  
  .sec02 .view-more a {
    font-size: 2.2rem;
  }
}

@media(max-width:1024px) {
  .sec02 .logo {
    width: 220px;
    margin-bottom: 45px;
  }
  
  .sec02  .bg {
    width: 750px;
  }
  
  .sec02  .container .t-box {
    margin-bottom: 45px;
  }
  
  .sec02 .t-box span {
    font-size: 6.4rem;
  }
  
  .sec02  .container .t-box .t21 {
    width: 160px;
    margin-left: 20px;
  }

  .sec02 .view-more {
    width: 240px;
    height: 60px;
    border-radius: 36px;
  }
  
  .sec02 .view-more a {
    font-size: 2rem;
  }
  
  .sec02  .view-more a .dot span {
    width: 10px;
    height: 10px;
  }
}

@media(max-width:768px) {
  .sec02 {
    padding: 100px 0;
  }
  
  .sec02 .logo {
    width: 180px;
    margin-bottom: 40px;
  }
   
  .sec02  .bg {
    width: 640px;
  }
  
  .sec02 .logo {
    width: 180px;
    margin-bottom: 40px;
  }
  
  .sec02  .container .t-box {
    margin-bottom: 40px;
  }
  
  .sec02 .t-box span {
    font-size: 5rem;
  }
  
  .sec02  .container .t-box .t21 {
    width: 140px;
    margin-left: 15px;
  }

  .sec02 .view-more {
    width: 210px;
    height: 50px;
    border-radius: 34px;
  }
  
  .sec02 .view-more a {
    font-size: 1.8rem;
  }
  
  .sec02  .view-more a .dot span {
    width: 8px;
    height: 8px;
  }
}

@media(max-width:500px) {
  .sec02 {
    padding: 90px 0;
  }
  
  .sec02 .logo {
    width: 160px;
    margin-bottom: 35px;
  }
  
  .sec02  .bg {
    top: auto;
    bottom: 0;
    transform: translateY(0);
    width: 360px;
  }
  
  
  .sec02  .container .t-box {
    margin-bottom: 35px;
  }
  
  .sec02 .t-box span {
    font-size: 3.4rem;
  }
  
  .sec02  .container .t-box .t21 {
    display: block;
    width: 120px;
    margin-top: 8px;
    margin-left: 0;
  }

  .sec02 .view-more {
    width: 180px;
    height: 45px;
    border-radius: 32px;
  }
  
  .sec02 .view-more a {
    font-size: 1.6rem;
  }
  
  .sec02  .view-more a .dot span {
    width: 6px;
    height: 6px;
  }
}
/* ---------- E: Sec02 ---------- */

/* ---------- S: Sec03 ---------- */
.sec03 {
  position: relative;
}

.sec03 .bg {
  position: absolute;
  left: 35px;
  bottom: 200px;
  z-index: -1;
  width: 491px;
  aspect-ratio: 1.265 / 1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url('/child/img/main/sec03_bg.png');
}

.sec03 .sec-tit {
  margin-top: -4px;
}

.sec03 .sec-txt {
  margin-bottom: 76px;
}

.sec03 .block {
  display: flex;
  align-items: center;
  gap: 0 122px;
  padding: 60px 0;
  border-top: 1px solid #bfbfbf;
}

.sec03 .block.even {
  flex-direction: row-reverse;
  border-bottom: 1px solid #bfbfbf;
}

.sec03 .block .thumb {
  position: relative;
  max-width: 830px;
  width: 58%;
  aspect-ratio: 1.781 / 1;
  overflow: hidden;
}

.sec03 .block .thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.sec03 .block .rt {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  max-width: 488px;
  width: 34%;
  aspect-ratio: 1.047 / 1;
  padding: 25px 0 30px;
}

.sec03 .block .rt .c-tit {
  margin-bottom: 26px;
  font-size: 3.6rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.sec03 .block .rt .c-txt {
  font-size: 2rem;
  line-height: 1.6;
  letter-spacing: -0.025em;
}

@media(max-width:1200px) {
  .sec03 .bg {
    left: 30px;
    bottom: 180px;
    width: 420px;
  }
    
  .sec03 .sec-tit {
    margin-top: -3px;
  }
  
  .sec03 .sec-txt {
    margin-bottom: 65px;
  }
  
  .sec03 .block {
    gap: 0 100px;
    padding: 50px 0;
  }
  
  .sec03 .block .thumb {
    width: 58%;
  }

  .sec03 .block .rt {
    width: 34%;
    padding: 25px 0;
  }
  
  .sec03 .block .rt .c-tit {
    margin-bottom: 20px;
    font-size: 3.2rem;
  }
  
  .sec03 .block .rt .c-txt {
    font-size: 1.8rem;
  }
}

@media(max-width:1024px) {
  .sec03 .bg {
    left: 25px;
    bottom: 160px;
    width: 350px;
  }
  
  .sec03 .sec-tit {
    margin-top: -2px;
  }
  
  .sec03 .sec-txt {
    margin-bottom: 55px;
  }
  
  .sec03 .block {
    gap: 0 80px;
    padding: 45px 0;
  }
  
  .sec03 .block .thumb {
    width: 58%;
  }

  .sec03 .block .rt {
    width: 34%;
    padding: 20px 0;
  }
  
  .sec03 .block .rt .c-tit {
    margin-bottom: 15px;
    font-size: 2.8rem;
  }
  
  .sec03 .block .rt .c-txt {
    font-size: 1.6rem;
  }
}

@media(max-width:768px) {
  .sec03 .bg {
    left: auto;
    right: 15px;
    bottom: 50px;
    width: 280px;
  }
  
  .sec03 .sec-tit {
    margin-top: -1px;
  }
  
  .sec03 .sec-txt {
    margin-bottom: 45px;
  }
  
  .sec03 .block {
    flex-direction: column;
    align-items: start;
    gap: 25px 0;
    padding: 40px 0;
  }
  
  .sec03 .block.even {
    flex-direction: column;
  }
  
  .sec03 .block .thumb {
    max-width: 100%;
    width: 100%;
  }

  .sec03 .block .rt {
    max-width: 100%;
    width: 100%;
    aspect-ratio: auto;
    padding: 0;
  }
  
  .sec03 .block .rt .c-tit {
    margin-bottom: 12px;
    font-size: 2.4rem;
  }
  
  .sec03 .block .rt .c-txt {
    margin-bottom: 25px;
    font-size: 1.4rem;
  }
}

@media(max-width:500px) {
  .sec03 .bg {
    bottom: 30px;
    width: 210px;
  }
  
  .sec03 .sec-txt {
    margin-bottom: 40px;
  }
  
  .sec03 .block {
    gap: 20px 0;
    padding: 35px 0;
  }
  
  .sec03 .block .rt .c-tit {
    margin-bottom: 10px;
    font-size: 2.2rem;
  }
  
  .sec03 .block .rt .c-txt {
    margin-bottom: 20px;
    font-size: 1.3rem;
  }
}
/* ---------- E: Sec03 ---------- */

/* ---------- S: Sec04 ---------- */
.sec04 {
  overflow: hidden;
  padding: 150px 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url('/child/img/main/sec04_bg.png');
  background-color: #111d5e;
}

.sec04 .container {
  position: relative;
}

.sec04 .heading {
  position: absolute;
  top: -8px;
  right: 15px;
  margin-top: 29px;
  margin-bottom: 54px;
}

.sec04 .sec-tit {
  margin-bottom: 16px;
  font-size: 13rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #fff;
  text-align: right;
}

.sec04 .sec-txt {
  color: #fff;
  text-align: right;
}

@media(max-width:1200px){
  .sec04 {
    padding: 130px 0;
  }

  .sec04 .heading {
    top: -25px;
    margin-top: 25px;
    margin-bottom: 45px;
  }
  
  .sec04 .sec-tit {
    margin-bottom: 16px;
    font-size: 10rem;
  }
}

@media(max-width:1024px){
  .sec04 {
    padding: 110px 0;
  }

  .sec04 .heading {
    position: static;
    margin-top: 0;
    margin-bottom: 40px;
  }
  
  .sec04 .sec-tit {
    margin-bottom: 16px;
    font-size: 8rem;
    text-align: left;
  }
  
  .sec04 .sec-txt {
    text-align: left;
  }
}

@media(max-width:768px){
  .sec04 {
    padding: 90px 0;
  }

  .sec04 .heading {
    margin-bottom: 35px;
  }
  
  .sec04 .sec-tit {
    margin-bottom: 16px;
    font-size: 6rem;
  }
}

@media(max-width:500px){
  .sec04 {
    padding: 80px 0;
  }

  .sec04 .heading {
    margin-bottom: 30px;
  }
  
  .sec04 .sec-tit {
    margin-bottom: 10px;
    font-size: 5rem;
  }
}
/* ---------- E: Sec04 ---------- */

/* ---------- S: Sec05 ---------- */
.sec05 {
  padding-bottom: 0;
}

.sec05 .heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 77px;
}

.sec05 .sec-tit {
  margin-top: -5px;
}
.sec05 .list {
  display: flex;
  flex-wrap: wrap;
  margin:-12px;
}

.sec05 .list li {
  max-width:33.333%;
  width: 33.333%;
  padding:12px;
}

.sec05 .list a {
  display: block;
  width: 100%;
  padding: 40px;
  background-color: #f3f4f9;
}

.sec05 .list .category {
  width: fit-content;
  padding: 9px 18px;
  margin-bottom: 17px;
  border-radius: 20px;
  background-color: #182987;
  font-size: 1.8rem;
  letter-spacing: -0.025em;
  color: #fff;
  transition:all .3s ease-out;
}

.sec05 .list .subject {
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2; 
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: 70px;
  margin-bottom: 20px;
  font-size: 2.8rem;
  font-weight:700;
  transition:all .3s ease-out;
}

.sec05 .list .txt {
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3; 
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 90px;
  margin-bottom: 33px;
  font-size: 2rem;
  letter-spacing: -0.025em;
  line-height: 1.5;
  color: #737373;
  transition:all .3s ease-out;
}

.sec05 .list .thumb {
  position: relative;
  width:100%;
  aspect-ratio: 1.777 / 1;
  overflow: hidden;
  margin-bottom: 17px;
}

.sec05 .list .thumb div {
  position: absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  width:100%;
  height:100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size:cover;
  transition:all .4s ease-out;
	will-change: transform;
}

.sec05 .list .data {
  font-size:1.6rem;
  letter-spacing: -0.025em;
  color:#999;
  transition:all .3s ease-out;
}

.sec05 .list li:hover .thumb div {
  transform: scale(1.05);
}

@media(min-width:1201px) {
  .sec05 .list li:hover a {
    background-color: #182987;
  }
  
  .sec05 .list li:hover .category {
    background-color: #fff;
    color: #182987;
  }
  
  .sec05 .list li:hover .subject,
  .sec05 .list li:hover .txt,
  .sec05 .list li:hover .data {
    color: #fff;
  }
}


@media(max-width:1200px) {
  .sec05 .heading {
    margin-bottom: 70px;
  }
  
  .sec05 .sec-tit {
    margin-top: -4px;
  }
  
  .sec05 .list {
    margin:-10px;
  }
  
  .sec05 .list li {
    padding:10px;
  }
  
  .sec05 .list a {
    padding: 30px;
  }
  
  .sec05 .list .category {
    padding: 9px 15px;
    margin-bottom: 15px;
    border-radius: 18px;
    font-size: 1.6rem;
  }
  
  .sec05 .list .subject {
    max-height: 60px;
    margin-bottom: 18px;
    font-size: 2.4rem;
  }
  
  .sec05 .list .txt {
    height: 80px;
    margin-bottom: 30px;
    font-size: 1.8rem;
  }
  
  .sec05 .list .thumb {
    margin-bottom: 15px;
  }
  
  .sec05 .list .data {
    font-size:1.4rem;
  }
}

@media(max-width:1024px) {
  .sec05 .heading {
    margin-bottom: 60px;
  }
  
  .sec05 .sec-tit {
    margin-top: -3px;
  }
  
  .sec05 .list {
    margin:-8px;
  }
  
  .sec05 .list li {
    padding: 8px;
  }
  
  .sec05 .list a {
    padding: 20px;
  }
  
  .sec05 .list .category {
    padding: 8px 12px;
    margin-bottom: 12px;
    border-radius: 16px;
    font-size: 1.4rem;
  }
  
  .sec05 .list .subject {
    height: 54px;
    margin-bottom: 15px;
    font-size: 2.2rem;
  }
  
  .sec05 .list .txt {
    max-height: 70px;
    margin-bottom: 25px;
    font-size: 1.6rem;
  }
  
  .sec05 .list .thumb {
    margin-bottom: 12px;
  }
  
  .sec05 .list .data {
    font-size:1.3rem;
  }
}

@media(max-width:768px) {
  .sec05 .heading {
    margin-bottom: 50px;
  }
  
  .sec05 .sec-tit {
    margin-top: -2px;
  }
  
  .sec05 .list {
    flex-direction: column;
    align-items: start;
    gap: 15px 0;
    margin: 0;
  }
  
  .sec05 .list li {
    max-width: 100%;
    width: 100%;
    padding: 0;
  }
  
  .sec05 .list li a {
    padding: 30px 20px;
  }
  
  .sec05 .list li a .category {
    width: 70px;
    height: 25px;
    margin-bottom: 15px;
    border-radius: 13px;
    font-size: 1.3rem;
  }
  
  .sec05 .list li a .subject {
    height: auto;
    margin-bottom: 40px;
    font-size: 2rem;
  }
  
  .sec05 .list li a .txt {
    height: auto;
    max-height: 63px;
    font-size: 1.4rem;
  }
}

@media(max-width:500px) {
  .sec05 .heading {
    flex-direction: column;
    align-items: start;
    gap: 20px 0;
    margin-bottom: 45px;
  }
  
  .sec05 .sec-tit {
    margin-top: -1px;
  }
  

  .sec05 .list {
    gap: 10px 0;
    margin:0;
  }
  
  .sec05 .list a {
    padding: 10px;
  }
  
  .sec05 .list .category {
    padding: 6px 8px;
    font-size: 1.2rem;
  }
  
  .sec05 .list .subject {
    max-height: 44px;
    margin-bottom: 10px;
    font-size: 1.8rem;
  }
  
  .sec05 .list .txt {
    max-height: 58px;
    margin-bottom: 15px;
    font-size: 1.3rem;
  }
  
  .sec05 .list .data {
    font-size:1.1rem;
  }
}
/* ---------- E: Sec05 ---------- */

/* ---------- S: Sec06 ---------- */
.sec06 {
  padding: 120px 0;
}

.sec06 .container {
  display: flex;
  justify-content: end;
}

.sec06 .logo {
  position: relative;
  width: 702px;
  aspect-ratio: 4.978 / 1;
  overflow: hidden;
}

.sec06 .logo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;  
}

@media(max-width:1200px) {
  .sec06 {
    padding: 110px 0;
  }
  
  .sec06 .logo {
    width: 590px;
  }
}

@media(max-width:1024px) {
  .sec06 {
    padding: 100px 0;
  }
  
  .sec06 .logo {
    width: 480px;
  }
}

@media(max-width:768px) {
  .sec06 {
    padding: 90px 0;
  }
  
  .sec06 .container {
    justify-content: center;
  }
  
  .sec06 .logo {
    width: 370px;
  }
}

@media(max-width:500px) {
  .sec06 {
    padding: 80px 0;
  }
  
  .sec06 .logo {
    width: 260px;
  }
}
/* ---------- E: Sec06 ---------- */

/* ---------- S: Sec07 ---------- */
.sec07 {
  position: relative;
  padding: 0;
  width: 100%;
  /* scale: 0.768; */
  /* scale: 0.4; */
  transform: scale(0.75, 0.75);
  /* margin-bottom: 150px; */
  will-change: transform;
  overflow: hidden;
}

.sec07 .container {
  max-width: 100%;
  padding: 0;
  position: relative;
  aspect-ratio: 2.6713  / 1;
}

.sec07 .inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 101%;
  height: 101%;
}

.sec07 .inner::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: url('/child/img/main/sec07_bg.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.sec07 .tit {
  margin-bottom: 20px;
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
  color: #fff;
  letter-spacing: -0.025em;
}

.sec07 .txt {
  margin-bottom: 38px;
  font-size: 4.6rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.47;
  color: #fff;
  letter-spacing: -0.025em;
}

.sec07 .view {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 8px 2px rgba(0, 110, 232, 0.8);
}

.sec07 .view a {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #009be3;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url('/child/img/main/sec07_icon.png');
}

@media(max-width:1200px) {
  .sec07 .container {
    height: 100%;
    aspect-ratio: auto;
  }
  
  .sec07 .inner {
    padding: 100px 0;
    width: 103%;
    height: 103%;
  }
  
  .sec07 .inner::after {
    width: 103%;
    height: 103%;
  }
  
  .sec07 .tit {
    margin-bottom: 18px;
    font-size: 2.2rem;
  }
  
  .sec07 .txt {
    margin-bottom: 35px;
    font-size: 4rem;
  }
  
  .sec07 .view {
    width: 90px;
    height: 90px;
  }
}

@media(max-width:1024px) {
  .sec07 {
    margin-bottom: -2px;
  }
    
  .sec07 .inner {
    padding: 90px 0;
    width: 103%;
    height: 103%;
  }
  
  .sec07 .inner::after {
    width: 103%;
    height: 103%;
  }
  
  .sec07 .tit {
    margin-bottom: 15px;
    font-size: 2rem;
  }
  
  .sec07 .txt {
    margin-bottom: 30px;
    font-size: 3.4rem;
  }
  
  .sec07 .view {
    width: 80px;
    height: 80px;
  }
}

@media(max-width:768px) {
  .sec07 {
    margin-bottom: -2px;
  }
  
  .sec07 .inner {
    padding: 80px 0;
    width: 103%;
    height: 103%;
  }
  
  .sec07 .inner::after {
    width: 104%;
    height: 104%;
  }
  
  .sec07 .tit {
    margin-bottom: 12px;
    font-size: 1.8rem;
  }
  
  .sec07 .txt {
    margin-bottom: 25px;
    font-size: 2.8rem;
  }
  
  .sec07 .view {
    width: 70px;
    height: 70px;
  }
}

@media(max-width:500px) {
  .sec07 .inner {
    padding: 70px 0;
    width: 103%;
    height: 103%;
  }
  
  .sec07 .inner::after {
    width: 103%;
    height: 103%;
  }
  
  .sec07 .tit {
    margin-bottom: 10px;
    font-size: 1.6rem;
  }
  
  .sec07 .txt {
    margin-bottom: 20px;
    font-size: 2.4rem;
  }
  
  .sec07 .view {
    width: 55px;
    height: 55px;
  }
}
/* ---------- E: Sec07 ---------- */


/* 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; }
  }