@charset "UTF-8";
@media screen and (max-width: 768px) {


  .main{
    width: 100vw;
    height: 155vw;
    overflow: hidden;
    background: #07060e;
  }

  .scene {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .bg {
    position: absolute;
    inset: -40%;
    width: 180%;
    height: 180%;
    background:
      radial-gradient(ellipse 55% 50% at 62% 25%, rgba(212,114,146,0.95) 0%, transparent 60%),
      radial-gradient(ellipse 50% 55% at 12% 72%, rgba(56,106,122,0.9) 0%, transparent 58%),
      radial-gradient(ellipse 35% 40% at 85% 82%, rgba(109,166,224,0.6) 0%, transparent 52%),
      #07060e;
    animation: bgDrift 14s ease-in-out infinite;
    z-index: 0;
  }

  @keyframes bgDrift {
    0%   { transform: translate(0%,    0%); }
    25%  { transform: translate(-18%, -12%); }
    50%  { transform: translate(-28%,   8%); }
    75%  { transform: translate(-10%,  18%); }
    100% { transform: translate(0%,    0%); }
  }

  .shape {
    position: absolute;
    mix-blend-mode: hard-light;
    will-change: transform;
    display: block;
  }

  .shape-triangle {
      height: 70vw !important;
      width: auto;
      left: -10vw;
      top: 30%;
      transform: translateY(-50%);
      z-index: 4;
      animation: floatTriangle 7s ease-in-out infinite;
  }

  .shape-heart {
      height: 70vw !important;
      width: auto;
      left: 10vw;
      top: 60%;
      transform: translateY(-18%);
      z-index: 3;
      animation: floatHeart 9s ease-in-out infinite;
  }

  .shape-circle {
      height: 64vw !important;
      width: auto;
      left: 48vw;
      top: 50%;
      transform: translateY(-62%);
      z-index: 3;
      animation: floatCircle 6s ease-in-out infinite;
  }

  .noise {
    position: absolute;
    inset: 0;
    background-image: url('../images/top/bgnoise.jpg');
    background-size: cover;
    background-position: center;
    mix-blend-mode: soft-light;
    opacity: 0.9;
    pointer-events: none;
    z-index: 8;
  }

  .text-block {
    position: absolute;
    left: 50%;
    top: 22%;
    transform: translate(-50%, -52%);
    z-index: 10;
    width: 90vw;
  }

  .headline {
    font-size: 9vw;
    line-height: 1.2;
    color: #ffffff;
    text-transform: uppercase;
  }

  .subtitle {
    font-weight: 600;
    font-size: 6vw;
    color: rgba(255, 255, 255, 0.88);
    margin-top: 2vw;
    letter-spacing: 0.06em;
  }

  @keyframes floatTriangle {
    0%,100% { transform: translateY(-50%) translate(0px,    0px)  rotate(0deg); }
    25%      { transform: translateY(-50%) translate(-22px, -30px) rotate(-2deg); }
    50%      { transform: translateY(-50%) translate(15px,  -15px) rotate(1.5deg); }
    75%      { transform: translateY(-50%) translate(-10px,  22px) rotate(-1deg); }
  }

  @keyframes floatHeart {
    0%,100% { transform: translateY(-18%) translate(0px,   0px)  scale(1);     }
    20%      { transform: translateY(-18%) translate(18px, -25px) scale(1.02);  }
    50%      { transform: translateY(-18%) translate(-14px, 12px) scale(0.98);  }
    80%      { transform: translateY(-18%) translate(12px, -16px) scale(1.015); }
  }

  @keyframes floatCircle {
    0%,100% { transform: translateY(-62%) translate(0px,   0px); }
    33%      { transform: translateY(-62%) translate(24px,  30px); }
    66%      { transform: translateY(-62%) translate(-18px, 16px); }
  }

.main_btn{
    position: absolute;
    bottom: 8vw;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(8, 32, 43, 0.5);
    width: 90vw;
    padding: 5vw 8vw;
    z-index: 10;

}
.main_btn h2{
    font-size: 4vw;
    font-weight: 600;
    color: #FFF;
    margin: 0 0 3vw;
}
.main_btn ul{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 2.5vw;
}
.main_btn li{
    width: 100%;
}


.digital_development{
    padding: 13vw 0 20vw;
    background:url("../images/top/digital_development_back.jpg") center/cover no-repeat;
}
.digital_btn{
    width: 80vw;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 3vw;
}
.digital_btn li a{
    position: relative;
    font-size: 4vw;
    background-color: #000;
    color: #FFF;
    width: 100%;
    height: 17vw;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight: 500;
    border-radius: 2vw;
}
.digital_btn li a::after{
    position: absolute;
    content: "";
    display: block;
    width: 2vw;
    height: 6vw;
    background: url(../images/common/btn_arrow.svg) no-repeat center / contain;
    right: 3vw;
}



}