html{
  box-shadow: inset 0 0 50px rgba(0,0,0,0.25);
  scroll-behavior: smooth;
}
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat","Zen Kaku Gothic New",sans-serif;
  font-size: 20px;
  font-display: swap;
  width: 100vw;
  color: white;
  background-color: #bdbdbd;
}
a{
  text-decoration: none;
  color: white;
}

main{
  filter: drop-shadow(0 0 3px rgba(0,0,0,0.25));
}

@keyframes fadeInAnime{
from{
  opacity: 0;
  transform: translateY(50px);
}
to{
  opacity: 1;
  transform: translate(0);
}
}

.fadein{
  opacity: 0;
}

.fadeUp{
  animation: fadeInAnime forwards;
  animation-duration: 0.7s;
}

._l.fadeUp{
  animation-duration: 0.3s;
}
._m.fadeUp{
  animation-duration: 1s;
}
._s.fadeUp{
  animation-duration: 1.2s;
}

.l_header {
  position: fixed;
  top: 0%;
  width: 100vw;
  color: white;
  background-color: rgba(255,255,255,0);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  padding: 3vh;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center; 
}
.c_header_logo{
  width: 10vh;
  display: block;
}
.c_header_list{
  display: none;
}

.wrapper {
  max-width: 38rem;
  margin: auto;
  padding: 0 1rem;
}

.l_header nav{
  display: block;
}

.btn_menu{
  z-index: 1001;
  border: 1px solid var(--brown);
  transition: .4s;
  background: transparent;
}

#menu_panel{
  background-color: #252525;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  padding: 8rem 3rem 3rem;
  width: 80vw;
  height: 100vh;
  filter: drop-shadow(0 0 5px rgba(0,0,0,0.25));
  transform: translateX(100vw); /* 修正 */
  transition: transform 0.8s ease; /* 修正 */
}

#menu_close{
  border: 1px solid var(--light-green);
}
#menu_close svg{
  fill: none;
}
#menu_close.btn_menu{
border: 1px solid var(--light-green);
position: fixed;
right: 4%;
top: 3.5%;
}

.menu_list{
  height: 100%;
  width: 100%;
  font-weight: 100;
  list-style-type: none; /* ドットを外す */
  padding: 0;
  margin: 0;
  text-align: center; /* 文字を中央揃えにする */
}
.menu_list li{
  font-size: 1.5rem;
  margin: 2rem 0;
}
.menu_list a{
  color: var(--light-green);
  text-decoration: none;
  font-size: 2rem;
}

#loading{
  /* background-color: var(--light-grey); */
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
}
#loading_screen{
background-color: #252525;
position: fixed;
inset: 0;
z-index: 9998;
translate: 0 100vh;
}
.pg_loading{
  background-color: #252525;
  width: 100vw;
  height: 100vh;
}

.pg_video {
  transform: translate(-50%, -50%);
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100vh;
  background-size: cover;
  overflow: hidden;
  z-index: -1;
  mix-blend-mode: multiply;
}
.background-video{
  height: 100%;
}

.l_hero{
margin: 40vw auto;
}

.c_hero_logo {
  width: 50vw; 
  display: block;
  margin: 0 auto;
  margin-bottom: 10%;
}

.l_scroll{
  display: flex;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  height: 15vw;
  width: fit-content;
  font-size: 2.5vw;
  animation: scrollAnime 2s linear infinite;
}

.c_scroll_text{
  transform: rotate(270deg);
  letter-spacing: 0.3em;
  margin-right: -2em;
} 

.scroll_logo{
  height: 100%;
}

@keyframes scrollAnime{
  0%{
    opacity: 0;
    transform: translateY(-30%);
  }
  75%{
    opacity: 1;
  }
  100%{
    opacity: 0;
    transform: translateY(0);
  }
}

.l_btn-gotop{
  position: fixed;
  right:2%;
  bottom: 8%;
  width: clamp(50px,10vw,70px);
  font-size: clamp(13px,2vw,20px);
  display: flex;
  flex-direction: column;
  text-align: center;
  z-index:100;
  filter: drop-shadow(0 0 3px rgba(0,0,0,0.25));
  opacity: 0;
  transform: translateY(100px);
}
#page_top.UpMove{
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from{
      opacity: 0;
      transform: translateY(50px);
  }
  to{
      opacity: 1;
      transform: translateY(0);
  }
}

#page_top.DownMove{
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from{
      opacity: 1;
      transform: translateY(0);
  }
  to{
      opacity: 0;
      transform: translateY(50px);
  }
}

.c_gotop_img{
  width: 100%;
}

.c_gotop_txt{
  margin-top: -1vh;
}


#whats-biv .l_sec-title{
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
}

#whats-biv .c_sec-title_text{
  position: static;
  margin-right: -2rem;
  transform: none;
  letter-spacing: 1rem;
}
.pg_section{
  padding-top: 40vh;
}

.c_sec-title_logo{
  width: 38%;
}

.l_sec-title{
  position: relative;
  width: 40vw;
  font-size: 4.5vw;
  height: 15vh;
  margin: 0 auto 50vh;
}

.c_sec-title_circle{
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.c_sec-title_text{
  position: absolute;
  letter-spacing: 0.5rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  padding-left: 1.5rem;
  padding-top: 0.5rem;
  font-weight: 300;
}

.c_what-container_title{
  width: 70%;
  margin-bottom: -3%;
  font-size: clamp(15px,5vw,40px);
  padding-left: 1rem;
}

.c_what-container_txt-box{
  background-color: rgb(255, 255, 255, 0.5);
  padding: 2rem 1.5rem ;
  width: 70%;
  letter-spacing: 2px;
  line-height: 1.6;
  font-size: clamp(10px,3vw,20px);
}

.c_movie{
  border-radius: 5px;
}

._l{
  width: 50%;
}
._m{
  width: 40%;
}
._s{
  width: 25%;
}

.l_member-container_header{
  display: flex;
  width: 80%;
  justify-content: space-around;
  align-items: center;
  margin: 10% auto;
}
.c_member_name{
  font-size: 5vw;
  font-weight: 100;
  letter-spacing: 3px;
  right: 15%;
  top: 24%;
}
._left{
  text-align: right;
}
.c_member_icon{
  border-radius: 5px;
  width: 25%;
}

#sato_l_01{
  margin-left: calc(100% - 50%);
}
#sato_m_01{
  margin-left: 20%;
  margin-top: 10%;
}
#sato_s_02{
  margin-left: calc(-40% - 20% + 5%);
  margin-bottom: 18%;
}
#sato_s_01{
  margin-top: 10%;
  margin-left: calc(100% - 25% - 8%);
}
#sato_m_02{
  margin-left: calc(100% - 40%);
  margin-top: 30%;
}
#sato_l_02{
  margin-left: calc((100% - 50%) / 2);
  margin-top: -50%;
  margin-bottom: 22%;
}

#nagasawa_l_01{
  margin-top: 10%;
  margin-bottom: 5%;
}
#nagasawa_s_01{
  margin-left: -10%;
}
#nagasawa_l_02{
  margin-left: calc((100% - 50%) / 2 - 10%);
  margin-top: 15%;
}
#nagasawa_m_01{
  margin-left: calc(100% - 40%);
  margin-top: -50%;
  margin-bottom: 25%;
}
#nagasawa_m_02{
  margin-left: 5%;
  margin-top: 5%;
}
#nagasawa_s_02{
  margin-top: 10%;
  margin-left: calc(( 100% - 25% ) / 2 + 25%);
}

#sogabe_s_01{
  margin-bottom: 20%;
  margin-left: calc(100% - 25%);
  width: 15%;
}
#sogabe_l_01{
  margin-top: -10%;
  margin-bottom: 15%;
}
#sogabe_m_01{
  margin-left: -10%;
}
#sogabe_m_02{
  margin-top: 20%;
  margin-left: calc((100% - 20%)/1.5);
}

#teruya_l_02{
  margin-top: 25%;
  margin-bottom: 10%;
  margin-left: 10%;
}
#teruya_s_02{
  margin-left: 40%;
  margin-bottom: -35%;
}
#teruya_m_02{
  margin-left: calc(100% - 40%);
  margin-bottom: 10%;
}
#teruya_s_01{
  margin-left: 5%;
}
#teruya_m_01{
  margin-top: 31%;
  margin-left: 20%;
}
#teruya_l_01{
  margin-top: -49%;
  margin-bottom: 30%;
  margin-left: calc(100% - 50%);
}
#teruya_s_03{
  margin-top: 10%;
  margin-left: calc(100% - 35%);
}
#teruya_m_03{
  margin-top: 10%;
  margin-left: 30%;
}

#nakanishi_s_01{
  margin-top: 30%;
  margin-left: 10%;
}
#nakanishi_l_02{
  margin-top: -5%;
  margin-left: calc(100% - 50%);
}
#nakanishi_l_01{
  margin-left: 0;
  margin-bottom: 15%;
}
#nakanishi_m_01{
  margin-left: -18%;
}
#nakanishi_m_02{
  margin-top: 20%;
  margin-left: 10%;
  margin-bottom: 20%;
}

#katsurada_01{
  margin-left: 0;
}
#katsurada_02{
  margin-top: 10%;
  margin-left: calc(100% - 50%);
}

.l_contact-container{
margin: 0 auto;
width: 70vw;
min-width: 350px;
padding: 10vw;
background-color: rgb(255, 255, 255, 0.25);
border-radius: 5px;
text-align: center;
font-size: clamp(10px,5vw,15px);
letter-spacing: 0.1rem;
font-weight: 300;
}

.c_contact-container_send-btn{
display: inline-flex;
flex-wrap: wrap;
background-color: rgba(0, 0, 0, 0.6);
margin-top: 3vh;
padding: 3%;
align-items: center;
justify-content: center;
width: 70%;
max-width: 300px;
border-radius: 5px;
}
.c_contact-container_send-btn:hover{
  opacity: 0.75;
}

footer {
  color: white;
  font-size: 0.5em;
  margin-top: 50%;
  padding-bottom: 1rem;
  display: flex;
  justify-content: center;
  letter-spacing: 3px;
}

@media screen and (min-width: 767px) {
  .c_header_logo {
      width: clamp(70px, 10vw, 100px);
      display: block;
  }
  .l_header nav{
    display: none;
  }
  .c_header_list{
    list-style-type: none;
    display: flex; 
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    font-weight: 100;
  }
  .c_header_list li{
    margin: 0 1rem;
  }
  .c_header_list a{
    display: block;
    position: relative;
    text-decoration: none; 
    color: white; 
  }
  .c_header_list a:hover{
    opacity: 0.75;
  }
  .c_header_list a::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #fff;
    opacity: 0.75;
    transition: all .5s ease;
    transform: scale(0,1);
    transform-origin: center top;
  }
  .c_header_list a:hover::after{
    transform: scale(1,1);
  }

  .btn_menu{
    display: none;
  }
  .l_hero{
    margin: 20vh auto;
  }
  .c_hero_logo {
      width: 30vw; 
      min-width: 280px;
  }

  .l_scroll {
      font-size: clamp(15px,1.5vw,17px);
      height: 6vw;
      min-height: 85px;
      }
  .scroll_logo {
      width: 1.5vh;
  }

  .l_btn-gotop{
      right: 1.5%;
  }

  .l_sec-title{
      width: 30vw;
      min-width: 310px;
      font-size: 3vw;
      font-size: clamp(35px,3vw,3vw);
  }

  #whats-biv .l_sec-title{
      width: 70%;
      min-width: 680px;
  }
  .c_what-container_title{
    margin-top: -1rem;
    margin-bottom: -2rem;
  }
  .c_what-container_txt-box{
    padding: 3rem;
    width: 58%;
    letter-spacing: 0.2rem;
  }
  .c_member_name{
      font-size: clamp(40px,3vw,50px);
  }
  .c_member_name a{
    background: linear-gradient(white, white) 0 100%/0 1px no-repeat;
    transition: background .5s ease;
    text-decoration: none;  
  }
  .c_member_name a:hover{
  background-size: 100% 1px;
    opacity: 0.8;
  }
  .l_contact-container{
    font-size: 25px;
  }

}

/*profile.html*/
.pg_profile + .pg_profile{
  padding-top: 15%;
}
/* .l_profile_header{
  display: flex;
  width: 95vw;
  margin-left: auto;
} */
.l_profile_container{
  width: 75vw;
  margin-right: 0;
  margin-left: auto;
  /* display: flex; */
  /* position: relative;
  gap: 1rem;
  width: 100%; */
}
.c_profile_icon{
  /* top: -10%;
  left: -10%; */
  margin-left: 6%;
  margin-bottom: -100px;
  width: 25vw;
  max-width: 130px;
  aspect-ratio: 1 / 1;
  border-radius: 5px;
}
.c_profile_sns-box a:hover{
  opacity: 0.5;
}
.c_profile_name{
  margin-left: 2rem;
  font-size: clamp(20px,7vw,30px);
  font-weight: 100;
}
.c_profile_txtbox{
  margin-top: -1.5rem;
  color: #000;
  font-size: clamp(10px,2vw,15px);
  font-weight: 300;
  background-color: rgba(217,217,217,0.75);
  padding: 2rem;
}
.c_profile_sns-box{
  position: absolute;
  bottom: -10%;
  right: 10%;
  display: flex;
  gap: 10px;
}
.c_profile_sns-box img{
  width: clamp(10px,10vw,35px);
}
.l_works_container{
  position: relative;
}
.c_works-title{
  position: absolute;
  bottom: 125%;
  z-index: 1;
  width: 25vw;
  min-width: 140px;
}

.c_works-title_txt{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(18px,4vw,25px);
  letter-spacing: 0.3rem;
  padding-left: 1rem;
  font-weight: 300;
}

.l_works_gallery{
  display: flex;
  gap: 2vw;
  flex-wrap: no-wrap;
  overflow-x:scroll;
  overflow-y: hidden;
  width: 90vw;
  margin: 100px auto;
  scroll-snap-type: x mandatory;
}
.l_works_gallery::-webkit-scrollbar{
  display: none;
}
.l_works_thumb-wrap{
  position: relative;
}
.c_works_thumb{
  border-radius: 5px;
  filter: drop-shadow(0 0 3px rgba(0,0,0,0.25));
  width: calc(86vw / 3) ;
  object-fit: cover;
  scroll-snap-align: start;
}
  .c_hover-icon{
  position: absolute;
  width: 30%;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.l_works_thumb-mask{
  opacity: 0;
}

.l_works_inline-box{
  margin: 0 auto;
  width: 85vw;
}
.l_works_inline-txtbox{
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: first baseline;
}
.c_works_inline-name{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.5rem;
}
.c_works_inline-name-wrap{
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  font-size: 150%;
  font-weight: 100;
}
.c_works_inline-title{
  font-size: 120%;
  font-weight: 100;
}
.c_works_inline-cap{
  font-size: 80%;
  font-weight: 100;
}
.c_works_inline-obj{
  width: 85vw;
  height: calc(85vw / 16 * 9);
  border-radius: 5px;
  margin: 0 auto;
}
.c_works_inline-link{
  display: flex;
  align-items: center;
  font-weight: 100;
  font-size: 85%;
}

@media screen and (min-width: 767px) {
  .pg_profile{
      width: 80vw;
      margin: 0 auto;
  }
  .l_profile_container{
    width: 80%;
    margin-right: 0;
    margin-left: auto;
  }
  .c_profile_icon{
    margin-left: -1%;
    min-width: 160px;
    width: 15vw;
    max-width: 300px;
  }
  .c_works-title{
      width: 15vw;
      min-width: 180px;
      left: -6%;
  }
  .c_works-title_txt{
      font-size: max(1.5rem,2.3vw);
  }
  .l_works_gallery{
      width: auto;
  }
.l_works_thumb-wrap:hover .c_works_thumb{
  filter: brightness(50%) blur(2px);
}
.l_works_thumb-wrap:hover .l_works_thumb-mask{
  opacity: 1;
}

  .l_works_inline-box{
    width: auto;
  }
  .c_works_thumb{
      width: max(160px,calc(76vw / 5)) ;
    }
  .c_works_inline-obj,.c_works_inline-name,.l_works_inline-txtbox{
      width:75vw;
      max-width: 960px;
    }
  .c_works_inline-obj{
      height: calc(75vw / 16 * 9);
      max-height: 540px;
    }      
  }

  /* S VGアニメーション */
  /***************************************************
   * Generated by SVG Artista on 4/21/2024, 8:56:15 PM
   * MIT license (https://opensource.org/licenses/MIT)
   * W. https://svgartista.net
   **************************************************/
  
  @-webkit-keyframes animate-svg-stroke-1 {
    0% {
      stroke-dashoffset: 1836.183349609375px;
      stroke-dasharray: 1836.183349609375px;
    }
  
    100% {
      stroke-dashoffset: 3672.36669921875px;
      stroke-dasharray: 1836.183349609375px;
    }
  }
  
  @keyframes animate-svg-stroke-1 {
    0% {
      stroke-dashoffset: 1836.183349609375px;
      stroke-dasharray: 1836.183349609375px;
    }
  
    100% {
      stroke-dashoffset: 3672.36669921875px;
      stroke-dasharray: 1836.183349609375px;
    }
  }
  
  .svg-elem-1 {
    -webkit-animation: animate-svg-stroke-1 0.8s ease-out 0s both,
                         animate-svg-fill-1 0.6s cubic-bezier(0.47, 0, 0.745, 0.715) 0.55s both;
            animation: animate-svg-stroke-1 0.8s ease-out 0s both,
                 animate-svg-fill-1 0.6s cubic-bezier(0.47, 0, 0.745, 0.715) 0.55s both;
  }
  
  @-webkit-keyframes animate-svg-stroke-2 {
    0% {
      stroke-dashoffset: 646.7200927734375px;
      stroke-dasharray: 646.7200927734375px;
    }
  
    100% {
      stroke-dashoffset: 1293.440185546875px;
      stroke-dasharray: 646.7200927734375px;
    }
  }
  
  @keyframes animate-svg-stroke-2 {
    0% {
      stroke-dashoffset: 646.7200927734375px;
      stroke-dasharray: 646.7200927734375px;
    }
  
    100% {
      stroke-dashoffset: 1293.440185546875px;
      stroke-dasharray: 646.7200927734375px;
    }
  }
  
  .svg-elem-2 {
    -webkit-animation: animate-svg-stroke-2 0.8s ease-out 0.15s both,
                         animate-svg-fill-2 0.6s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6000000000000001s both;
            animation: animate-svg-stroke-2 0.8s ease-out 0.15s both,
                 animate-svg-fill-2 0.6s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6000000000000001s both;
  }
  
  @-webkit-keyframes animate-svg-stroke-3 {
    0% {
      stroke-dashoffset: 1207.6478271484375px;
      stroke-dasharray: 1207.6478271484375px;
    }
  
    100% {
      stroke-dashoffset: 2415.295654296875px;
      stroke-dasharray: 1207.6478271484375px;
    }
  }
  
  @keyframes animate-svg-stroke-3 {
    0% {
      stroke-dashoffset: 1207.6478271484375px;
      stroke-dasharray: 1207.6478271484375px;
    }
  
    100% {
      stroke-dashoffset: 2415.295654296875px;
      stroke-dasharray: 1207.6478271484375px;
    }
  }
  
  .svg-elem-3 {
    -webkit-animation: animate-svg-stroke-3 0.8s ease-out 0.3s both,
                         animate-svg-fill-3 0.6s cubic-bezier(0.47, 0, 0.745, 0.715) 0.65s both;
            animation: animate-svg-stroke-3 0.8s ease-out 0.3s both,
                 animate-svg-fill-3 0.6s cubic-bezier(0.47, 0, 0.745, 0.715) 0.65s both;
  }
  
  @-webkit-keyframes animate-svg-stroke-4 {
    0% {
      stroke-dashoffset: 1836.183349609375px;
      stroke-dasharray: 1836.183349609375px;
    }
  
    100% {
      stroke-dashoffset: 3672.36669921875px;
      stroke-dasharray: 1836.183349609375px;
    }
  }
  
  @keyframes animate-svg-stroke-4 {
    0% {
      stroke-dashoffset: 1836.183349609375px;
      stroke-dasharray: 1836.183349609375px;
    }
  
    100% {
      stroke-dashoffset: 3672.36669921875px;
      stroke-dasharray: 1836.183349609375px;
    }
  }
  
  @-webkit-keyframes animate-svg-fill-4 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(255, 255, 255);
    }
  }
  
  @keyframes animate-svg-fill-4 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(255, 255, 255);
    }
  }
  
  .svg-elem-4 {
    -webkit-animation: animate-svg-stroke-4 0.8s ease-out 0.44999999999999996s both,
                         animate-svg-fill-4 0.6s cubic-bezier(0.47, 0, 0.745, 0.715) 0.7000000000000001s both;
            animation: animate-svg-stroke-4 0.8s ease-out 0.44999999999999996s both,
                 animate-svg-fill-4 0.6s cubic-bezier(0.47, 0, 0.745, 0.715) 0.7000000000000001s both;
  }
  
  @-webkit-keyframes animate-svg-stroke-5 {
    0% {
      stroke-dashoffset: 646.7200927734375px;
      stroke-dasharray: 646.7200927734375px;
    }
  
    100% {
      stroke-dashoffset: 1293.440185546875px;
      stroke-dasharray: 646.7200927734375px;
    }
  }
  
  @keyframes animate-svg-stroke-5 {
    0% {
      stroke-dashoffset: 646.7200927734375px;
      stroke-dasharray: 646.7200927734375px;
    }
  
    100% {
      stroke-dashoffset: 1293.440185546875px;
      stroke-dasharray: 646.7200927734375px;
    }
  }
  
  @-webkit-keyframes animate-svg-fill-5 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(255, 255, 255);
    }
  }
  
  @keyframes animate-svg-fill-5 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(255, 255, 255);
    }
  }
  
  .svg-elem-5 {
    -webkit-animation: animate-svg-stroke-5 0.8s ease-out 0.6s both,
                         animate-svg-fill-5 0.6s cubic-bezier(0.47, 0, 0.745, 0.715) 0.75s both;
            animation: animate-svg-stroke-5 0.8s ease-out 0.6s both,
                 animate-svg-fill-5 0.6s cubic-bezier(0.47, 0, 0.745, 0.715) 0.75s both;
  }
  
  @-webkit-keyframes animate-svg-stroke-6 {
    0% {
      stroke-dashoffset: 1207.6478271484375px;
      stroke-dasharray: 1207.6478271484375px;
    }
  
    100% {
      stroke-dashoffset: 2415.295654296875px;
      stroke-dasharray: 1207.6478271484375px;
    }
  }
  
  @keyframes animate-svg-stroke-6 {
    0% {
      stroke-dashoffset: 1207.6478271484375px;
      stroke-dasharray: 1207.6478271484375px;
    }
  
    100% {
      stroke-dashoffset: 2415.295654296875px;
      stroke-dasharray: 1207.6478271484375px;
    }
  }
  
  @-webkit-keyframes animate-svg-fill-6 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(255, 255, 255);
    }
  }
  
  @keyframes animate-svg-fill-6 {
    0% {
      fill: transparent;
    }
  
    100% {
      fill: rgb(255, 255, 255);
    }
  }
  
  .svg-elem-6 {
    -webkit-animation: animate-svg-stroke-6 0.8s ease-out 0.75s both,
                         animate-svg-fill-6 0.6s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s both;
            animation: animate-svg-stroke-6 0.8s ease-out 0.75s both,
                 animate-svg-fill-6 0.6s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s both;
  }
  
  @-webkit-keyframes animate-svg-stroke-7 {
    0% {
      stroke-dashoffset: 13395.80078125px;
      stroke-dasharray: 13395.80078125px;
    }
  
    100% {
      stroke-dashoffset: 26791.6015625px;
      stroke-dasharray: 13395.80078125px;
    }
  }
  
  @keyframes animate-svg-stroke-7 {
    0% {
      stroke-dashoffset: 13395.80078125px;
      stroke-dasharray: 13395.80078125px;
    }
  
    100% {
      stroke-dashoffset: 26791.6015625px;
      stroke-dasharray: 13395.80078125px;
    }
  }
  
  .svg-elem-7 {
    -webkit-animation: animate-svg-stroke-7 0.8s ease-out 0.8999999999999999s both,
                         animate-svg-fill-7 0.6s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8500000000000001s both;
            animation: animate-svg-stroke-7 0.8s ease-out 0.8999999999999999s both,
                 animate-svg-fill-7 0.6s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8500000000000001s both;
  }
  