#sec_01 {
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  overflow: hidden;
}

#sec_01 .wrap {
  width: 100%;
  max-width: 1400px;
  height: auto;
}

#sec_01 .wrap h1 {
  font-family: 'GGS';
	font-weight: normal;
  font-size: 70px;
  color: #fff;
  margin-bottom: 15px;
}

#sec_01 .wrap h2 {
  font-family: 'SD_R';
	font-weight: normal;
  font-size: 34px;
  color: #fff;
}

#sec_01 .wrap .line {
  width: 600px;
  height: 1px;
  background: #fff;
  margin: 20px 0;
}

#sec_01 .wrap p {
  font-family: 'SD_M';
	font-weight: normal;
  font-size: 24px;
  color: #fff;
  margin-bottom: 50px;
}

#sec_01 .wrap a {
  width: 250px;
  height: 50px;
  border-radius: 10px;
  background: #fff;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'SD_B';
	font-weight: bold;
  font-size: 20px;
  color: #1F2967;
}

#sec_01 .bg_cover {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: transparent;
  background: linear-gradient(-90deg, transparent 0%, rgba(0, 0, 0, 1) 100%);
}

#sec_01 video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
}

#sec_01 .marquee {
  width: 100%;
  height: 80px;
  background: #000628;
  display: flex;
  align-items: center;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  overflow: hidden;
}

#sec_01 .marquee .box {
  display: inline-flex;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  gap: 30px;
  align-items: center;
}

#sec_01 .marquee:hover .box {
  animation-play-state: paused;
}

#sec_01 .marquee .box p {
  font-family: 'SD_B';
	font-weight: bold;
  font-size: 34px;
  color: #fff;
  margin: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

#sec_01 .marquee .box p span {
  font-size: 30px;
}

#sec_01 .marquee .box p.blue {
  color: #1F7BD3;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

#sec_02 {
  width: 100%;
  height: auto;
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../img/main/sec_02_bg.png) no-repeat center / cover;
  overflow: hidden;
}

#sec_02 .wrap {
  width: 100%;
  max-width: 1400px;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

#sec_02 .wrap h2 {
  font-family: 'SD_B';
	font-weight: bold;
  font-size: 50px;
  color: #fff;
}

#sec_02 .wrap .txt {
  width: auto;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

#sec_02 .wrap .txt p {
  font-family: 'SD_R';
	font-weight: normal;
  font-size: 20px;
  color: #fff;
}

#sec_03 {
  width: 100%;
  height: auto;
  padding: 75px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../img/main/sec_03_bg.png) no-repeat center / cover;
  overflow: hidden;
}

#sec_03 .wrap {
  width: 100%;
  max-width: 1400px;
  height: auto;
}

#sec_03 .wrap .tit {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 50px;
}

#sec_03 .wrap .tit h2 {
  font-family: 'SD_B';
	font-weight: bold;
  font-size: 50px;
  color: #fff;
}

#sec_03 .wrap .tit p {
  font-family: 'SD_R';
	font-weight: normal;
  font-size: 20px;
  color: #fff;
  margin-bottom: 8px;
}

#sec_03 .wrap .tit p span {
  font-family: 'SD_B';
	font-weight: bold;
}

#sec_03 .wrap .container {
  width: 100%;
  height: auto;
  display: flex;
}

#sec_03 .wrap .container .box {
  width: 25%;
  height: 600px;
  padding: 50px;
}

#sec_03 .wrap .container .box .txt {
  width: auto;
  height: auto;
}

#sec_03 .wrap .container .box .txt h3 {
  font-family: 'SD_B';
	font-weight: bold;
  font-size: 50px;
  color: #fff;
  margin-bottom: 5px;
}

#sec_03 .wrap .container .box .txt p {
  font-family: 'SD_R';
	font-weight: normal;
  font-size: 28px;
  color: #fff;
}

#sec_03 .wrap .container .box:nth-of-type(1) {
  background: url(../img/main/sec_03_item_01.png) no-repeat right center / cover;
}

#sec_03 .wrap .container .box:nth-of-type(2) {
  background: url(../img/main/sec_03_item_02.png) no-repeat right center / cover;
}

#sec_03 .wrap .container .box:nth-of-type(3) {
  background: url(../img/main/sec_03_item_03.png) no-repeat right center / cover;
}

#sec_03 .wrap .container .box:nth-of-type(4) {
  background: url(../img/main/sec_03_item_04.png) no-repeat right center / cover;
}

#sec_04 {
  width: 100%;
  height: auto;
  padding: 75px 0;
  background: url(../img/main/sec_04_bg.png) no-repeat center / cover;
  overflow: hidden;
}

#sec_04 .wrap {
  width: 100%;
  max-width: 1400px;
  height: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin: 0 auto 50px;
}

#sec_04 .wrap .tit {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

#sec_04 .wrap .tit h2 {
  font-family: 'SD_B';
	font-weight: bold;
  font-size: 50px;
  color: #fff;
}

#sec_04 .wrap .tit p {
  font-family: 'SD_R';
	font-weight: normal;
  font-size: 20px;
  color: #fff;
  margin-bottom: 8px;
}

#sec_04 .wrap .tit p span {
  font-family: 'SD_B';
	font-weight: bold;
}

#sec_04 .wrap .btn_wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

#sec_04 .wrap .btn_wrap img {
  width: auto;
  height: auto;
  cursor: pointer;
}

#sec_04 .slide_wrap {
  width: 100%;
  max-width: 1400px;
  height: auto;
  margin: 0 auto;
}

#sec_04 .slide_wrap.swiper {
  overflow: unset;
}

#sec_04 .slide_wrap .box {
  position: relative;
  width: auto; 
  height: auto;
  box-sizing: border-box;
}

#sec_04 .slide_wrap .box img {
  display: block;
  width: 100%;
  height: auto;
}

#sec_04 .slide_wrap .box img.active {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity .3s;
}

#sec_04 .slide_wrap .box:hover img.active {
  opacity: 1;
}

#sec_05 {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 75px 0;
  background: url(../img/main/sec_05_bg.png) no-repeat center / cover;
  overflow: hidden;
}

#sec_05 .wrap {
  width: 100%;
  max-width: 1400px;
  height: auto;
}

#sec_05 .wrap h2 {
  font-family: 'SD_B';
	font-weight: bold;
  font-size: 50px;
  color: #fff;
  margin-bottom: 50px;
}

#sec_05 .wrap .container {
  width: 100%;
  height: auto;
  display: flex;
  gap: 40px;
}

#sec_05 .wrap .container .box {
  width: 100%;
  height: auto;
  overflow: hidden;
}

#sec_05 .wrap .container .box h3 {
  font-family: 'SD_B';
	font-weight: bold;
  font-size: 30px;
  color: #fff;
  margin-bottom: 20px;
}

#sec_05 .wrap .container .box p {
  font-family: 'SD_R';
	font-weight: normal;
  font-size: 20px;
  color: #fff;
  margin-bottom: 20px;
}

#sec_05 .wrap .container .box .con {
  width: 100%;
  height: 400px;
  cursor: pointer;
}

#sec_05 .wrap .container .box .con * {
  width: 100%;
  height: 100%;
  object-fit: contain;
  aspect-ratio: 16 / 9;
  background: #000;
}

#sec_05 .wrap .container .box .con.pic {
  cursor: grab;
}

#sec_05 .wrap .container .box .con.pic * {
  object-fit: cover;
}

#sec_06 {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 75px 0;
  background: url(../img/main/sec_06_bg.png) no-repeat center / cover;
  overflow: hidden;
}

#sec_06 .wrap {
  width: 100%;
  max-width: 1400px;
  height: auto;
}

#sec_06 .wrap .tit {
  display: flex;
  gap: 10px;
  align-items: flex-end;
  margin-bottom: 50px;
}

#sec_06 .wrap .tit h2 {
  font-family: 'SD_B';
	font-weight: bold;
  font-size: 50px;
  color: #fff;
}

#sec_06 .wrap .tit p {
  font-family: 'SD_R';
	font-weight: normal;
  font-size: 20px;
  color: #fff; 
  margin-bottom: 8px;
}

#sec_06 .wrap .tit p span {
  font-family: 'SD_B';
	font-weight: bold;
}

#sec_06 .wrap .box {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

#sec_06 .wrap .box img {
  width: calc((100% - 120px) / 4);
  height: auto;
}

@media (max-width: 1400px) {
  #sec_01 .wrap {
    max-width: 90%;
  }

  #sec_02 .wrap {
    max-width: 90%;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: flex-start;
  }

  #sec_03 .wrap {
    max-width: 90%;
  }

  #sec_03 .wrap .container .box {
    height: 500px;
  }

  #sec_04 .wrap {
    max-width: 90%;
  }

  #sec_04 .slide_wrap {
    max-width: 90%;
  }

  #sec_05 .wrap {
    max-width: 90%;
  }

  #sec_06 .wrap {
    max-width: 90%;
  }
}

@media (max-width: 1200px) {
  #sec_01 .wrap h1 {
    font-size: 54px;
  }

  #sec_01 .wrap h2 {
    font-size: 24px;
  }

  #sec_01 .wrap .line {
    width: 450px;
  }

  #sec_01 .wrap p {
    font-size: 20px;
  }

  #sec_01 .wrap a {
    width: 200px;
    font-size: 18px;
  }

  #sec_01 .marquee .box p {
    font-size: 30px;
  }

  #sec_01 .marquee .box p span {
    font-size: 24px;
  }

  #sec_01 .marquee {
    height: 60px;
  }

  #sec_02 .wrap h2 {
    font-size: 42px;
  }

  #sec_02 .wrap .txt p {
    font-size: 18px;
  }

  #sec_03 .wrap .tit h2 {
    font-size: 42px;
  }

  #sec_03 .wrap .tit p {
    font-size: 18px;
  }

  #sec_03 .wrap .container {
    flex-wrap: wrap;
  }

  #sec_03 .wrap .container .box {
    width: 50%;
    height: 400px;
  }

  #sec_03 .wrap .container .box .txt h3 {
    font-size: 36px;
  }

  #sec_03 .wrap .container .box .txt p {
    font-size: 24px;
  }

  #sec_04 .wrap .tit h2 {
    font-size: 42px;
  }

  #sec_04 .wrap .tit p {
    font-size: 18px;
  }

  #sec_05 .wrap h2 {
    font-size: 42px;
  }

  #sec_05 .wrap .container .box h3 {
    font-size: 24px;
  }

  #sec_05 .wrap .container .box p {
    font-size: 18px;
  }

  #sec_05 .wrap .container .box .con {
    height: 400px;
  }

  #sec_06 .wrap .tit h2 {
    font-size: 42px;
  }

  #sec_06 .wrap .tit p {
    font-size: 18px;
  }
}

@media (max-width: 900px) {
  #sec_01 .wrap h1 {
    font-size: 42px;
  }

  #sec_01 .wrap h2 {
    font-size: 20px;
  }

  #sec_01 .wrap .line {
    width: 350px;
  }

  #sec_01 .wrap p {
    font-size: 18px;
  }

  #sec_01 .wrap a {
    width: 160px;
    height: 40px;
    font-size: 16px;
  }

  #sec_02 .wrap h2 {
    font-size: 36px;
  }

  #sec_02 .wrap .txt p {
    font-size: 16px;
  }

  #sec_03 .wrap .tit {
    flex-wrap: wrap;
    gap: 5px;
  }

  #sec_03 .wrap .tit p {
    width: 100%;
    margin-bottom: 0;
  }

  #sec_04 .wrap .btn_wrap img {
    width: 40px;
  }

  #sec_04 .wrap .tit {
    flex-wrap: wrap;
    gap: 5px;
  }

  #sec_04 .wrap .tit p {
    width: 100%;
    margin-bottom: 0;
  }

  #sec_05 .wrap h2 {
    font-size: 36px;
  }

  #sec_05 .wrap .container .box h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  #sec_05 .wrap .container .box p {
    font-size: 16px;
  }

  #sec_05 .wrap .container {
    flex-wrap: wrap;
  }

  #sec_06 .wrap .tit h2 {
    font-size: 36px;
  }

  #sec_06 .wrap .tit p {
    width: 100%;
    font-size: 16px;
    margin-bottom: 0;
  }

  #sec_06 .wrap .box img {
    width: calc((100% - 80px) / 3);
  }

  #sec_06 .wrap .tit {
    flex-wrap: wrap;
    gap: 5px;
  }
}

@media (max-width: 700px) {
  #sec_02 .wrap .txt p br {
    display: none;
  }

  #sec_03 .wrap .container .box {
    padding: 30px;
  }

  #sec_06 .wrap .box {
    gap: 20px;
  }

  #sec_06 .wrap .box img {
    width: calc((100% - 40px) / 3);
  }
}

@media (max-width: 500px) {
  #sec_01 .wrap h1 {
    font-family: 'SD_B';
    font-weight: bold;
    font-size: 32px;
  }

  #sec_01 .wrap h2 {
    font-size: 16px;
  }

  #sec_01 .wrap p {
    font-size: 14px;
  }

  #sec_01 .wrap .line {
    width: 300px;
  }

  #sec_01 .wrap a {
    width: 140px;
    height: 35px;
    font-size: 14px;
    padding: 0 15px;
    border-radius: 5px;
  }

  #sec_01 .marquee .box p {
    font-size: 20px;
  }

  #sec_01 .marquee .box p span {
    font-size: 18px;
  }

  #sec_01 .marquee {
    height: 50px;
  }

  #sec_01 .bg_cover {
    background: linear-gradient(-90deg, transparent 10%, rgba(0, 0, 0, 1) 100%);
  }

  #sec_02 {
    padding: 50px 0;
  }

  #sec_02 .wrap {
    gap: 30px;
  }

  #sec_02 .wrap h2 {
    font-size: 28px;
  }

  #sec_02 .wrap .txt {
    gap: 20px;
  }

  #sec_02 .wrap .txt p {
    font-size: 14px;
  }

  #sec_03 {
    padding: 50px 0;
  }

  #sec_03 .wrap .tit h2 {
    font-size: 32px;
  }

  #sec_03 .wrap .tit p {
    font-size: 16px;
  }

  #sec_03 .wrap .container .box .txt h3 {
    font-size: 24px;
  }

  #sec_03 .wrap .container .box .txt p {
    font-size: 16px;
  }

  #sec_03 .wrap .container .box {
    height: 250px;
  }

  #sec_04 .wrap .tit h2 {
    font-size: 32px;
  }

  #sec_04 .wrap .tit p {
    font-size: 16px;
  }

  #sec_04 {
    padding: 50px 0;
  }

  #sec_05 {
    padding: 50px 0;
  }

  #sec_05 .wrap h2 {
    font-size: 32px;
  }

  #sec_05 .wrap .container {
    gap: 30px;
  }

  #sec_05 .wrap .container .box .con {
    height: 300px;
  }

  #sec_06 .wrap .tit h2 {
    font-size: 32px;
  }

  #sec_06 .wrap .box img {
    width: calc((100% - 20px) / 2);
  }

  #sec_06 {
    padding: 50px 0;
  }
}

@media (max-width: 400px) {
  #sec_01 .wrap h1 {
    font-size: 28px;
    margin-bottom: 10px;
  }

  #sec_01 .wrap h2 {
    font-size: 14px;
  }

  #sec_01 .wrap .line {
    width: 240px;
  }

  #sec_01 .wrap p {
    font-size: 12px;
  }

  #sec_01 .wrap a {
    width: 120px;
    height: 30px;
    font-size: 12px;
    padding: 0 10px;
  }

  #sec_01 .marquee .box p {
    font-size: 18px;
  }

  #sec_01 .marquee .box p span {
    font-size: 16px;
  }

  #sec_02 .wrap h2 {
    font-size: 24px;
  }

  #sec_02 .wrap .txt p {
    font-size: 12px;
  }

  #sec_03 .wrap .tit h2 {
    font-size: 24px;
  }

  #sec_03 .wrap .tit p {
    font-size: 12px;
  }

  #sec_03 .wrap .container .box {
    padding: 20px;
  }

  #sec_03 .wrap .container .box .txt h3 {
    font-size: 18px;
  }

  #sec_03 .wrap .container .box .txt p {
    font-size: 14px;
  }

  #sec_03 .wrap .container .box {
    height: 200px;
  }

  #sec_04 .wrap .tit h2 {
    font-size: 24px;
  }

  #sec_04 .wrap .tit p {
    font-size: 12px;
  }

  #sec_04 .wrap .btn_wrap img {
    width: 30px;
  }

  #sec_05 .wrap h2 {
    font-size: 24px;
  }

  #sec_05 .wrap .container .box h3 {
    font-size: 18px;
  }

  #sec_05 .wrap .container .box p {
    font-size: 12px;
  }

  #sec_05 .wrap .container .box .con {
    height: 250px;
  }

  #sec_06 .wrap .tit h2 {
    font-size: 24px;
  }

  #sec_06 .wrap .tit p {
    font-size: 12px;
  }

  #sec_06 .wrap .box {
    gap: 10px;
  }

  #sec_06 .wrap .box img {
    width: calc((100% - 10px) / 2);
  }
}