#wrap {
  width: 100%;
  min-width: 320px;
  position: relative;
  margin: 0 auto;
  background: var(--color16);
}

.inner {
  width: 100%;
  max-width: 1824px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}

/* @media all and (max-width: 1860px) {
  .inner {
    width: auto;
    margin-left: 3.90625%;
    margin-right: 3.90625%;
  }
} */

.header {
  position: fixed;
  top: 0;
  transition: .3s;
  z-index: 2000;
}

.header>div {
  position: relative;
}

.header img {
  width: 100%;
}


.header:hover,
.header.scrolled {
  background: var(--color16);
}

.header.hidden {
  transform: translateY(-100%);
}
.word-wrap {
  display: inline-block;
  vertical-align: bottom;
}
.word {
  display: inline-block;
}

.main-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  height: 100vh;
  padding-block: 60px;
  overflow: hidden;
  box-sizing: border-box;
}

.main-visual .video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.main-visual .video video {
  width: 100%;
  height: 100%;
  object-fit: none;
  display: block;
}

.main-visual .dimmed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 22, 0);
  pointer-events: none;
  z-index: 50;
}

.main-visual .inner {
  position: relative;
  z-index: 1;
}

.main-visual .text-box {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;

}

.main-visual .text-box .title {
  color: var(--white);
  font-size: 6rem;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -1.92px;
}

.main-visual .text-box .sub {
  color: var(--white);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: -0.4px;
}

.main-visual .text-box .line {
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.20);
}

.main-visual .now-btn {
  position: absolute;
  right: 48px;
  bottom: 0;
  z-index: 1;
}

.main-visual .now-card {
  position: absolute;
  bottom: 60px;
  right: 48px;
  /* width: 1028px; */
  height: 440px;
  padding: 40px;
  box-sizing: border-box;
  z-index: 20;
  transform: translateX(calc(100% + 48px));
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--color16);
}

.main-visual .now-card.open {
  transform: translateX(0);
}

 .close-now {
  position: absolute;
  top: 40px;
  right: 40px;
  display: block;
  width: 20px;
  height: 20px;
  z-index: 1;
}

 .close-now span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background: #FFF;
  transform: translate(-50%, -50%);
}

 .close-now span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

 .close-now span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.now-card .tit-wrap {
  margin-bottom: 36px;
}

.now-card h2 {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 100%;
  letter-spacing: -0.4px;
}

.now-card .ct {
  display: flex;
  gap: 24px;
}

.now-card .news-list {
  display: flex;
  gap: 24px;

}

.now-card .news-list li {
  flex: 1;
  max-width: 300px;
  width: 100%;
}


.now-card .news-list li .thumb {
  position: relative;
  aspect-ratio: 25/18;
  width: 300px;
  position: relative;
  background: color-mix(in srgb, #fff, transparent 96%);
  margin-bottom: 20px;
}

.now-card .news-list li .thumb-inner {
  position: absolute;
  inset: 0;
  scale: .85;
  clip-path: polygon(0% 6%, 100% 6%, 100% 94%, 0% 94%);
  transition: scale .35s ease, clip-path .35s ease;
}

.now-card .news-list li .thumb-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}

.now-card .news-list li:hover .thumb .thumb-inner {
  scale: 1;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.now-card .news-list strong {
  color: var(--color27);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -0.28px;
}

.now-card .news-list h3 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: -0.32px;
  margin: 8px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.now-card .news-list .datetime {
  color: rgba(255, 255, 255, 0.40);
  font-size: 0.88rem;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -0.28px;
}
.now-card .link-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
 width: 300px;
}

.now-card .link-list li {
  flex: 1;
}
.now-card .link-list li a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  align-items: flex-end;
  padding: 24px;
  background: var(--color78);
  transition: all 0.3s;
}

.now-card .link-list li a p {
  width: 100%;
  color: var(--white);
  font-size: 1.38rem;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -0.44px;
  transition: all 0.3s;
}
.now-card .link-list li a p span {
  display: inline-block;
  margin-right: 10px;
}

.now-card .link-list li a .thumb img {
  transition: all 0.3s;
}
.now-card .link-list li a:hover .thumb img {
  filter: brightness(0);
}

.now-card .link-list li a:hover {
  background: var(--white);
}

.now-card .link-list li a:hover p {
  color: var(--color78);

}



@media all and (max-width: 1200px) {
  .main-visual .text-box .title {
    font-size: 5.5rem;
    line-height: 130%;
}
}
@media all and (max-width: 1120px) {
  .main-visual .now-btn,
  .now-card{
display: none;
}
}

@media all and (max-width: 768px) {
  .main-visual .text-box .title {
    font-size: 4.5rem;
    line-height: 130%;
}
.who-sec .pin-sec {
  bottom: 20px;
  right: 20px;
  width: 240px;
  height: 427px;
  aspect-ratio: 77/137;
}
}
@media all and (max-width: 568px) {
  .main-visual .text-box .title {
    font-size: 3.5rem;
}
.main-visual .text-box .sub {
  font-size: 17px;
}
}
@media all and (max-width: 425px) {
  .main-visual .text-box .title {
    font-size: 3.0rem;
}
}


/* sec2 */

.who-sec {
  position: relative;
  overflow: hidden;
  height: 100vh;
  padding-block: 160px;
  background: url(/image/main/img_visual02.png) no-repeat center / cover, var(--color16);
  box-sizing: border-box;
}
@media all and (max-width:768px) {
  .who-sec {
    background: url(/image/main/img_visual02-mo.png) no-repeat center / cover, var(--color16);
  }
}
.who-sec .dimmed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 22, 0.00) 0%, var(--color16) 100%);
  pointer-events: none;
  z-index: 50;
}

.text-box {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.text-box .title-box {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

h2.has-mark {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color27);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: -0.03rem;
}

h2.has-mark span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  aspect-ratio: 1;
}

h2.has-mark span::before,
h2.has-mark span::after {
  content: "";
  left: 50%;
  position: absolute;
  top: 50%;
  height: 6px;
  width: 6px;
  transform: translate(-50%, -50%);
  vertical-align: middle;
  border-radius: 100%;
}

h2.has-mark span::before {
  animation: pulse-dot 2.5s ease-in-out infinite;
  background-color: var(--color27);
}

h2.has-mark span::after {
  animation: pulse-ring 2.5s ease-in-out infinite;
  border: 1px solid var(--color27);
}

@keyframes pulse-ring {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1.5);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2);
  }
}

@keyframes pulse-dot {
  0% {
    transform: translate(-50%, -50%) scale(.7);
  }

  50% {
    transform: translate(-50%, -50%) scale(1);
  }

  100% {
    transform: translate(-50%, -50%) scale(.7);
  }
}

.text-box .slogan {
  color: var(--white);
  font-size: 3.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: -1.28px;
  /* white-space: nowrap; */
}
.text-box strong{
  color: #FFF;
  font-size: 24px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: -0.48px;
}
.who-sec .pin-sec {
  position: absolute;
  bottom: 48px;
  right: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 480px ;
  height: 270px;
  overflow: hidden;
  z-index: 70;
}

.pin-sec .bg-img {
  width: 100%;
  height: 0;
}

.pin-sec2 .bg-img,
.pin-sec3 .bg-img,
.pin-sec4 .bg-img {
  width: 100%;
  height: 100%;
}

.pin-sec img,
.pin-sec video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media all and (max-width:1550px) {
  .do-it-sec .flex {
    gap: 60px;
  }
}

@media all and (max-width:1200px) {
  .do-it-sec ul li .num {
    font-size: 3.5rem;
  }
  .text-box .slogan {
    font-size: 3.0rem;
  }
  .main-link-wrap .text-link a .tit {
    font-size: 2.5rem !important;
  }
}

@media all and (max-width:768px) {
    .main-link-wrap .text-link a .tit {
    font-size: 2.5rem !important;
  }
  .main-link-wrap .flex {
    flex-direction: column;
}
  .main-link-wrap .flex>div {
    flex: none !important;
    width: 100%;
}
}



/* how-sec */
.how-sec {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 160px 20px;
  overflow: hidden;
  z-index: 550;
}
.how-sec .text-box{
  position: relative;
}
.how-sec .title-box {
  margin-bottom: 60px;
}
.how-sec .title-box .title {
  color: var(--white);
  font-size: 3.5rem;
  font-style: normal;
  font-weight: 800;
  line-height: 130%;
  letter-spacing: -1.12px;
}
.how-sec .bg {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.how-sec .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main-tech-list {
  display: flex;
  gap: 24px;
}

.main-tech-list>li {
  width: 12%;
  transition: .6s;
}
.main-tech-list>li>a {
  overflow: hidden;
  position: relative;
  height: 453px;
  display: block;
}

.main-tech-list>li>a:after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  left: 0;
  top: 0;
  transition: .6s;
  opacity: 0;
}

.main-tech-list>li.on>a:after {
  opacity: 1;
}

.main-tech-list>li>a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 82% center;
  transition: .6s;
}

.main-tech-list>li>a .box-close {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 10;
}

.main-tech-list>li>a .box-close h4 {
  color: var(--white);
  text-align: center;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 140%;
  letter-spacing: -0.48px;
  /* rotate: 90deg; */
  text-align: center;
  width: 200%;
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  z-index: 105;
  white-space: nowrap;
}
@media all and (max-width: 1250px) {
  .main-tech-list>li>a .box-close h4 {
    font-size: 1.12rem;
  }
}
.main-tech-list>li>a .box-open {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 10;
  opacity: 0;
  box-sizing: border-box;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
}

.main-tech-list>li>a .box-open h4 {
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 140%;
  letter-spacing: -0.05rem;
  margin-bottom: 1.5rem;
}

.main-tech-list>li>a .box-open p {
  color: rgba(255, 255, 255, 0.80);
  font-size: 1.13rem;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: -0.02rem;
}

.main-tech-list>li>a .outline-btn {
  margin-top: auto;
  margin-left: auto;
}


.main-tech-list>li.on {
  width: 60%;

  >a img {
    object-position: center center;
  }

  >a .box-close {
    opacity: 0;
  }

  >a .box-open {
    opacity: 1;
    transition: .6s .6s;
  }
}



@media all and (max-width:1200px) {
  .how-sec .main-tech-list>li>a .box-open h4 {
    font-size: 2.2rem;
  }
}
@media all and (max-width:1024px) {
  .how-sec .main-tech-list {
    flex-direction: column;
  }
  .how-sec .main-tech-list>li.on {
    width: 100%;
  }
  .how-sec {
  padding: 0px 20px;
}
.how-sec {
  top: 0%;
  left: 50%;
  transform: translate(-50%, 0%);
  padding: 160px 20px;
}
}
@media all and (max-width:768px) {
  .how-sec .main-tech-list>li>a .box-open {
    padding: 60px 40px;
  }
.how-sec .main-tech-list>li>a {
  height: 450px;
}
}


@media all and (max-width:460px) {
  .how-sec .main-tech-list>li>a .box-open h4 {
    font-size: 1.8rem;
}
}



























/* What do you do */
.what-sec {
  position: relative;
  padding-block: 160px;
  background: var(--color16);
  box-sizing: border-box;
}

.what-sec .text-box .title {
  color: var(--white);
  font-size: 5rem;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: -0.08rem;
}

.what-sec .inner {
  display: flex;
  gap: 100px;
  height: 100%;
}

.what-sec .left-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 444px;
  flex-shrink: 0;
}

.slide-tab {
  position: relative;
  width: fit-content;
  z-index: 5;
  padding: 12px;
  width: 100%;
  box-sizing: border-box;
}

.slide-tab span {
  position: absolute;
  width: 12px;
  height: 12px;
}

.slide-tab .box-line-tl {
  top: 0;
  left: 0;
  border-top: 1px solid #FFF;
  border-left: 1px solid #FFF;
}

.slide-tab .box-line-tr {
  top: 0;
  right: 0;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
}

.slide-tab .box-line-bl {
  bottom: 0;
  left: 0;
  border-bottom: 1px solid #FFF;
  border-left: 1px solid #FFF;
}

.slide-tab .box-line-br {
  bottom: 0;
  right: 0;
  border-bottom: 1px solid #FFF;
  border-right: 1px solid #FFF;
}


 .slide-tab ul li {
  display: flex;
  align-items: center;
  width: 100%;
  transition: .3s;
}

 .slide-tab ul li a,
 .slide-tab ul li button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 24px 22px 31px;
  background: #0D0D22;
  color: var(--white);
  /* text-align: center; */
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: -0.03rem;
  transition: all 0.3s;
}


@media all and (max-width: 1500px) {
  .slide-tab ul li a,
  .slide-tab ul li button {
   font-size: 1rem;
 }
}




 .slide-tab ul li a::after,
 .slide-tab ul li button::after {
  content: "";
  width: 4px;
  height: 4px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}

 .slide-tab ul li.active button {
  background: var(--color27);
}
 .slide-tab ul li.active button::after {
  background: var(--white);
  border: 2px solid var(--white);
}

.what-sec .slide-pagination {
  position: absolute;
  top: 96px;
  right: 96px;
  z-index: 200;
}

.what-sec .slide-pagination ul {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
}

.what-sec .slide-pagination .page-dot button {
  position: relative;
  color: rgba(255, 255, 255, 0.40);
  text-align: right;
  font-size: 1.13rem;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: -0.02rem;
}

.what-sec .slide-pagination .page-dot button::after {
  content: "";
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  width: 0;
  height: 1px;
  background: transparent;
  transition: .3s;
}

.what-sec .slide-pagination .page-dot:hover button,
.what-sec .slide-pagination .page-dot.active button {
  color: var(--white);
  text-align: right;
  font-size: 1.13rem;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -0.02rem;
}

.what-sec .slide-pagination .page-dot:hover button::after,
.what-sec .slide-pagination .page-dot.active button::after {
  width: 100%;
  background: #FFF;
}

/* what-sec swiper */
.what-sec .right-box{
  width: calc(100% - 544px);
}
.what-sec .right-box .slide-box {
  position: relative;
  width: 100%;
}



.what-sec .swiper-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.20) !important;
  z-index: 50;
}

.what-sec .swiper-progress-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--color27);
  transform: scaleX(0);
  transform-origin: left center;
  z-index: 10;
}


.what-sec .text-link {
  position: absolute;
  bottom: 100px;
  left: 96px;
  z-index: 11;
}


.text-link a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 3rem;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -0.06rem;
}

.text-link a .arrow {
  display: block;
  transition: .3s;
}

.text-link a:hover .arrow {
  transform: translateX(10px);
}


@media all and (max-width:1600px) {
  .what-sec .slide-pagination{
    top: 50px;
    right: 50px;
  }
  .what-sec .text-link {
    bottom: 50px;
    left: 50px;
}
.text-link a {
  font-size: 2rem;
}
.what-sec .left-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 244px;
  flex-shrink: 0;
}
.what-sec .text-box .title {
  font-size: 3.0rem;
}
.what-sec .right-box {
  width: calc(100% - 344px);
}
}

@media all and (max-width:1024px) {
  .what-sec .inner {
    flex-direction: column;
}
  .what-sec .inner>div{
    width: 100% !important;
}

}


@media all and (max-width:768px) {
  .text-link a {
    font-size: 1.5rem;
}
.text-link a .arrow img{
  width: 40px;
}
}

.slide-tab {
  position: relative;
}






@media (max-width: 1024px) {
  .what-sec .slide-tab {
    padding: 55px;
    position: relative; 
  }

  .what-sec .slide-tab ul {
    position: absolute;
    top: 20px;
    left: 20px;
    width: calc(100% - 40px);
    z-index: 10;
    overflow: hidden;
    height: 72px; 
    max-height: 72px;
    min-height: 72px !important;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex !important;
    flex-direction: column;
    background: #0D0D22;
  }

  .what-sec .slide-tab.open ul {
    height: auto;
    max-height: 500px; 
  }

  .what-sec .slide-tab ul li {
    height: 72px;
    min-height: 72px; 
    width: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    order: 2;
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }
  
  .what-sec .slide-tab ul li:last-child {
    border-bottom: none;
  }
  .what-sec .slide-tab ul li.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    order: 1;
  }
  .what-sec .slide-tab.open ul li {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .what-sec .slide-tab ul li button {
    width: 100%;
    text-align: left;
    background: #0D0D22;
    padding: 0;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    height: 100%;
    padding: 0 32px;
  }
  .what-sec .slide-tab ul li.active button {
    background: #21b2c6;
  }
}

@media (max-width: 768px) {
  .what-sec .right-box{
    height: 500px;
}
.what-sec .right-box .swiper-slide .thumb,
.what-sec .right-box .swiper-slide,
.what-sec .right-box .swiper-wrapper,
.what-sec .right-box .swiper,
.what-sec .right-box .slide-box {
  height: 100% !important;
}
.what-sec .right-box .swiper-slide .thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.what-sec .text-link{
  bottom: 30px;
  left: 30px;
}
.what-sec .slide-pagination {
  top: 30px;
  right: 30px;
}




}


/* do-it-sec */
.do-it-sec {
  position: relative;
  padding: 176px 0 83px;
}

.do-it-sec .bg {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.do-it-sec .slogan{
  white-space: nowrap;
}
.do-it-sec .text-box {
  position: sticky;
  top: 160px;
}

.do-it-sec .bg .stky {
  position: sticky;
  top: 0px;
  height: 100vh;
  width: 100%;
}

.do-it-sec .bg .stky img {
  width: 100%;
  height: 100%;
}

.do-it-sec .flex {
  display: flex;
  justify-content: space-between;
}

.do-it-sec .scroll-list {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.do-it-sec ul {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 680px;
  width: 100%;
}

.do-it-sec ul li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 64px;
  padding: 60px 48px;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(40px);
  transition: all 0.3s;
}

.do-it-sec ul li .num {
  color: var(--white);
  font-size: 4rem;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -0.08rem;
  transition: all 0.3s;
}

.do-it-sec ul li .num .odometer {
  margin-top: -10px;
}

.do-it-sec ul li .txt {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}
.do-it-sec ul li .txt p {
  color: rgba(255, 255, 255, 0.80);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 160%;
  letter-spacing: -0.03rem;
  transition: all 0.3s;
}

.do-it-sec ul li .txt span {
  flex: 1;
  color: var(--coloraa);
  font-size: 0.88rem;
  transition: all 0.3s;
}

.do-it-sec .progress-bar {
  overflow: hidden;
  width: 4px;
  height: 480px;
  background: #e4e4e4;
  transition: opacity 0.7s ease;
  position: sticky;
  top: 0px;
  right: 0;
  background-color: rgba(255, 255, 255, 0.20);
  z-index: 90;
}

.do-it-sec .progress-bar .bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: var(--color27);
  z-index: 99;
}


@media all and (max-width:1300px) {
  .do-it-sec {
    padding: 150px 0 83px;
  }

  .do-it-sec .flex {
    gap: 60px;
  }

  .do-it-sec ul li .num {
    font-size: 4.00rem;
    min-width: 202px;
  }

  .do-it-sec ul li .num.fz50 {
    font-size: 2.53rem;
    min-width: 202px;
  }
}

@media all and (max-width:1199px) {
  .do-it-sec ul li {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .do-it-sec ul li .txt {
    max-width: none;
  }

  .do-it-sec ul li .txt p {
    word-break: normal;
  }

  .do-it-sec ul li .num,
  .do-it-sec ul li .num.fz50 {
    font-size: 3.50rem;

  }
}

@media all and (max-width:1024px) {
  .do-it-sec .flex {
    flex-direction: column;
  }

  .do-it-sec ul {
    max-width: none;

  }

  .do-it-sec .swiper {
    height: 925px;
  }

  .do-it-sec .swiper-wrapper {
    height: 100%;
  }

  .do-it-sec .headline {
    position: static !important;
  }

  .do-it-sec ul .is-active {
    background: var(--colorf7);
  }

  .do-it-sec ul .is-active .num {
    color: var(--color02) !important;
  }

  .do-it-sec ul .is-active .txt p {
    color: var(--color22);
  }

  .do-it-sec ul .is-active .txt span {
    color: var(--color99);
  }

  .do-it-sec ul .swiper-slide {
    transition: all 0.5s ease;
  }

}

@media (max-width: 768px) {
  .do-it-sec ul li {
    padding: 40px 40px;
  }

  .do-it-sec .swiper {
    height: 660px;
  }

  .do-it-sec .slogan {
    white-space: normal;
}

.text-box .slogan {
  font-size: 2rem;
}

}

@media (max-width: 570px) {

  .do-it-sec ul li .num,
  .do-it-sec ul li .num.fz50 {
    font-size: 3.10rem;
  }

  .do-it-sec ul li .txt p {
    font-size: 1.1rem;

  }

}

@media (max-width: 460px) {

  .do-it-sec ul li .num,
  .do-it-sec ul li .num.fz50 {
    font-size: 2.80rem;
  }
}


/* pr-sec */
.pr-sec {
  padding: 160px 0;
  background-color: var(--color16);
}
.pr-sec .text-link {
  margin-bottom: 80px;
}
.pr-slide .thumb {
  aspect-ratio: 528 / 380;
  width: 100%;
  position: relative;
  background: color-mix(in srgb, #fff, transparent 96%);
}
.pr-slide .thumb .thumb-inner {
  position: absolute;
  inset: 0;
  scale: .85;
  clip-path: polygon(0% 6%, 100% 6%, 100% 94%, 0% 94%);
  transition: scale .35s ease, clip-path .35s ease;
}
.pr-slide .thumb .thumb-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}
.pr-slide .swiper-slide:hover .thumb .thumb-inner {
  scale: 1;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.pr-slide .txt {
  margin-top: 36px;
}
.pr-slide .txt strong {
  color: var(--color27);
   font-size: 1rem;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -0.32px;
}
.pr-slide .txt h3 {
  min-height: 66px;
  color: #FFF;
   font-size: 1.38rem;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: -0.44px;
  margin: 16px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pr-slide .txt .datetime {
  color: rgba(255, 255, 255, 0.40);
   font-size: 1rem;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -0.02rem;
}
.pr-sec .swiper-wrapper {
  padding-bottom: 80px;

}
.pr-sec .swiper-progress {
  position: relative !important;
  height: 4px;
  max-width: 1824px;
  width: 100%;
  margin: 0 auto;
}
.pr-sec .swiper-pagination-progressbar {
  background: rgba(255, 255, 255, 0.20) !important;
}
.pr-sec .swiper-progress .swiper-pagination-progressbar-fill {
  background: #27C4D5 !important;
}


/* main-link-wrap */
.main-link-wrap {
  padding: 160px 0;
  background-color: var(--color16);
}
.main-link-wrap .flex {
  display: flex;
  gap: 48px;
}
.main-link-wrap .flex>div {
  flex: 1;
}
.main-link-wrap .text-link a .tit {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--white);
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.07rem;
}
.main-link-wrap .text-link a {
  flex-direction: column;
  gap: 60px;
  align-items: flex-start;
}
.main-link-wrap .flex>div .thumb {
  aspect-ratio: 808 / 480;
  width: 100%;
  position: relative;
  background: color-mix(in srgb, #fff, transparent 96%);
}
.main-link-wrap .flex>div .thumb .thumb-inner {
  position: absolute;
  inset: 0;
  scale: .89;
  clip-path: polygon(0% 6%, 100% 6%, 100% 94%, 0% 94%);
  transition: scale .35s ease, clip-path .35s ease;
}
.main-link-wrap .flex>div .thumb .thumb-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}
.main-link-wrap .flex>div a:hover .thumb .thumb-inner {
  scale: 1;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
/* contact-sec */
.contact-sec {
  position: relative;
  padding: 160px 0 300px;
}
.contact-sec .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.contact-sec .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-sec .jcc {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.contact-sec .text-box .title-box {
  align-items: center;
}
.contact-sec .text-box .slogan {
  text-align: center;
  margin-bottom: 40px;
}