@charset "UTF-8";


  .main{
    width: 100vw;
    height: 645px;
    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: 42vw;
    width: auto;
    left: -5vw;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    animation: floatTriangle 7s ease-in-out infinite;
  }

  .shape-heart {
    height: 42vw;
    width: auto;
    left: 26.4vw;
    top: 50%;
    transform: translateY(-18%);
    z-index: 3;
    animation: floatHeart 9s ease-in-out infinite;
  }

  .shape-circle {
    height: 42vw;
    width: auto;
    left: 68.3vw;
    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: 30%;
    transform: translate(-50%, -52%);
    z-index: 10;
    width: 1170px;
  }

  .headline {
    font-size: 70px;
    line-height: 1;
    color: #ffffff;
    text-transform: uppercase;
  }

  .subtitle {
    font-weight: 600;
    font-size: 40px;
    color: rgba(255,255,255,0.88);
    margin-top: 14px;
    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: 25px;
    left:50%;
    transform:translateX(-50%);
    background-color: rgba(8, 32, 43, 0.5);
    width: 1170px;
    padding: 20px 50px 30px;
    z-index: 10;
}
.main_btn h2{
    font-size: 22px;
    font-weight: 600;
    color: #FFF;
    margin-bottom: 10px;
}
.main_btn ul{
    display: flex;
    justify-content: space-between;
}
.main_btn li{
    width: 340px;
}


.digital_development{
    padding: 95px 0 150px;
    background:url("../images/top/digital_development_back.jpg") center/cover no-repeat;
}

.digital_btn{
    width:1110px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.digital_btn li a{
    position: relative;
    font-size: 24px;
    background-color: #000;
    color: #FFF;
    width: 545px;
    height: 145px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight: 500;
    border-radius: 10px;
}
.digital_btn li a::after{
    position: absolute;
    content: "";
    display: block;
    width: 15px;
    height: 30px;
    background: url(../images/common/btn_arrow.svg) no-repeat center / contain;
    right: 30px;
}
