@charset "utf-8";

html{
	-webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

#feature-group-items #pagination{
  display: none;
}

#ctl00_ContentPlaceHolder1_UpdatePanel1{
  width: 100vw;
}

.mv_box{
  background: #dedede;
  padding: 20px 35px 90px;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  position: relative;
}

.mv_imgbox{
  position: relative;
}

.mv_banner_position{
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.mv_subtitle{
    font-size: 32px;
    position: absolute;
    line-height: 1.2;
    gap:5px;
    bottom: 10px;
    text-align: left;
    font-family: 'HonMinKok-L', serif;
    font-weight: normal;
    z-index: 992;
    display: flex;
    overflow: hidden;
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
}

.mv_item {
  position: relative;
  overflow: hidden;
  padding:5px 20px;
}

.mv_item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #fff;
  transition: width 1s cubic-bezier(0.86, 0, 0.07, 1);
  /* アニメーション開始を遅延させる */
  transition-delay: var(--delay);
}

.mv_item.mod-other{
  color:#ffffff;
}

.mv_item.mod-other::before {
  background-color: #5d4e47;
}

.mv_item span {
 display: block;
  position: relative;
  opacity: 0;
  /* 左からスライドさせるためにX軸方向を調整 */
  transform: translateX(-20px);
  /* アニメーション開始を背景アニメーション後に遅延させる */
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: calc(1s + var(--delay));
}

/* アニメーション開始用のクラス */
.is-active::before {
  width: 100%;
}

.mv_subtitle .mv_item.is-active span {
  opacity: 1;
  transform: translateX(0);
}

.mv_25th_svg{
    position: absolute;
    left: 0;
    top: 0;
    max-width: 110px;
    width: 14%;
}

.item_icon{
  max-width: 150px;
  position: absolute;
  right: 0;
  bottom: 0;
}

#lp_header{
    display: flex;
    position: sticky;
    justify-content: center;
    top: 80px;
    gap: 10%;
    background: #dedede;
    padding: 20px;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    z-index: 999;
    font-family: 'gill-sans-nova';
    font-weight: normal;
}

#lp_header div{
    font-size: 18px;
    border-bottom: 2px solid #333;
}

#lp_header div:hover{
  transition:all 0.1s;
  color:#aa9977;
  border-bottom: 2px solid #aa9977;
}

.keyuca_logo{
  max-width: 120px;
  margin: 30px auto 30px;
  display: block;
}

#main_txt_svg{
  max-width: 400px;
  margin: 30px auto;
  display: block;
}

#hand_svg{
  max-width: 500px;
  display: block;
  margin: 30px auto;
}

#logo_svg{
  position: absolute;
  max-width: 140px;
  top: 0;
  right: 0;
  z-index: 1;
}

.section_txt {
    font-size: 16px;
    line-height: 2;
    text-align: center !important;
    margin: 30px 0;
    display: block;
}

.anime_wrap{
    position: relative;
    overflow: hidden;
    z-index: 0;
    max-width: 750px;
    margin: 0 auto;
}

.mv_img_anm::before{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #dedede;
    z-index: 2;
    transition: 1s;
}
.mv_img_anm.show::before{
    transform: translateX(100%);
}
.mv_img_anm img{
    opacity: 0;
    transition: 1s;
}
.mv_img_anm.show img{
    opacity: 1;
}

.h2_txt {
  font-family: "HonMinKok-L", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: normal;
  line-height: 1.8;
  font-size: 32px !important;
  text-align: center;
  margin: 40px auto 30px;
  font-weight: normal;
}

.h2_txt span{
	font-size: 32px;
}

.h2-shoulder {
  font-size: 26px !important;
}

.section_txt {
	font-size:16px;
	line-height: 2;
	text-align: left;
	margin: 30px 0;
}

.bg_box {
    background: #e0e0e0;
    margin: 60px calc(50% - 50vw);
    padding: 20px 0;
    width: 100vw;
    border-top-left-radius: 95% 1%;
    border-top-right-radius: 95% 1%;
    border-bottom-left-radius: 95% 1%;
    border-bottom-right-radius: 95% 1%;
}

.section_txt_bg{
  background: #e0e0e0;
    padding: 0 0 30px !important;
    margin: 30px auto 0 !important;
    z-index: 994;
    position: relative;
}

/* 全体レイアウト */
.timeline-container {
  display: flex;
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin:0 auto;
}

/* 左側の年表一覧 */
.timeline-years {
  position: sticky;
  top: 25%;
  left: 0;
  width: 6%;
  height: calc(100vh - 300px);
  overflow-y: hidden;
  padding: 0 2% 0 0;
  box-sizing: border-box;
  display: grid;
  gap: 10px;
  text-align: center;
  margin-top: 60px;
}

.timeline-year-item {
  cursor: pointer;
  font-family: 'gill-sans-nova';
  font-weight: normal;
  font-size: 14px;
  line-height: 1;
  color: #ccc;
  transition: color 0.3s;
}

.timeline-year-item.active {
  color: #a97;
  font-weight: bold;
}

.stroke_txt{
    -webkit-text-stroke: 1px #333;
    color: #fff;
}

/* 右側のコンテンツエリア */
.timeline-content {
  position: relative;
  width: 94%;
  padding-right:6%;
}

/* タイムラインの線 */
.timeline-line {
  position: absolute;
  left: 47%;
  top: 0;
  width: 2px;
  height: 0;
  background-color: #888;
  transform: translateX(-50%);
}

/* 手の画像 */
.timeline-hand {
  position: absolute;
  left: 47%;
  top: 70px; /* 初期位置を70px下げる */
  transform: translateX(-50%) rotate(30deg);
  width: 65px;
  z-index: 10;
}

.timeline-hand img {
  width: 100%;
  height: auto;
}

.timeline-hand.animated {
  transition: top 0.3s ease-out;
}

/* 各年表イベント */
.timeline-event {
  /*display: flex;*/
  align-items: center;
  position: relative;
  min-height: auto;
  background: unset;
    margin: 60px auto !important;
    z-index: 11;
}

.timeline-event-content {
  /*padding:0px 20px;*/
  border-radius: 10px;
  position: relative;
  z-index: 11;
}

.timeline-event-content.left {
  margin-right: auto;
}

.timeline-event-content.right {
  margin-left: auto;
}

.timeline-event-content img {
  width: 100%;
  max-width: 750px;
  height: auto;
  border-radius:20px;
}

.year_title{
  background:#e0e0e0;
  max-width: fit-content;
    height: min-content;
  display: block;
  margin: 0 auto 30px;
  position: relative;
  z-index: 5;
  border-radius: unset;
}

.year_title h2{
  font-size: 52px;
  text-align: center;
  font-family: 'gill-sans-nova';
  font-weight: normal;
  line-height: 1.2;
  font-style: italic;
}

.year_title h3{
  font-size: 22px;
  text-align: center;
}

.year_title p{
  font-size: 16px;
  text-align: center;
}

.apparel_imgbox{
  max-width: 500px;
    margin: 0 auto;
    padding: 30px 0 0;
    gap: 10px;
}

.year_event_flex2{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15%;
}

.year_event_flex3{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  z-index: 99;
  position: relative;
  background: #e0e0e0;
  align-items: start;
  margin: 40px auto 0;
}

.year_event_flex2 div,
.year_event_flex3 div{
  background: #e0e0e0;
  display: grid;
  gap:10px;
  align-content: center;
  align-items: center;
}

.year_event_flex2 div img,
.year_event_flex3 div img{
  border-radius: 20px;
  position: relative;
  z-index: 20;
}

.year_event_flex2 div h3,
.year_event_flex3 div h3{
  font-size: 18px;
  text-align: left;
}

.year_event_flex2 div p,
.year_event_flex3 div p{
  font-size: 12px;
  text-align: left;
}

.timeline-event_1col{
    margin: 0 auto;
    width: 100%;
}

.year_event_flex1{
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background: #e0e0e0;
    position: relative;
    z-index: 99;
    font-size: 12px;
}

.year_event_flex1 h3{
  font-size: 18px;
}

.year_event_bottom_txt{
    display: block;
    margin: 15% auto 60px;
    text-align: center;
}

.year_event_bottom_txt span{
  color:#aa9977;
  font-size: 18px;
}

.section_title_gl{
  font-family: 'gill-sans-nova' !important;
  font-weight: 800 !important;
  font-size: 56px !important;
  color: #9a7b2d;
}

.timeline-event-content h3 a{
	color:#aa9977;
}

  .brand_msg_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1.5fr 0.5fr 1fr;
    gap: 5%;
    grid-template-areas:
        "brand_msg1 brand_msg2"
        "brand_msg1 brand_msg4"
        "brand_msg3 brand_msg4";
    margin: 80px auto;
    font-size: 14px;
    width: 100%;
    overflow-x: clip;
}

.brand_msg1 {
  grid-area: brand_msg1;
  position: relative;
  height: fit-content;
  padding-bottom: 30%;
}

.brand_msg_hand{
  display: none;
}

.brand_msg1_img1{
  display: block;
  max-width: 80%;
  margin: 0 0 0 auto;
  border-radius: 20px;
}

.brand_msg1_img2{
    border-radius: 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    max-width: 50%;
}

.brand_msg2 {
  grid-area: brand_msg2;
  height: fit-content;
  max-width: 85%;
}

.brand_msg3 {
  grid-area: brand_msg3;
    align-items: flex-end;
    display: flex;
    justify-content: flex-end;
    height: auto;
    max-width: 85%;
    margin: 0 0 0 auto;
}

.brand_msg4 {
  grid-area: brand_msg4;
  position: relative;
  padding-top: 15%;
}

.brand_msg4_img1{
    max-width: 60%;
    bottom: 0;
    left: 0;
    position: relative;
    border-radius: 20px;
}

.brand_msg4_img2{
  position: absolute;
    max-width: 45%;
    border-radius: 20px;
    right: 0;
    top: 0;
    z-index: -1;
}

.hand_2_svg{
    position: absolute;
    max-width: 470px;
    width: 80%;
    bottom: -5%;
    right: -10%;
}

.brand_msg_top_txt{
    position: relative;
    margin: 30px auto 60px;
}

.brand_msg_top_txt p{
    text-align: center;
    font-size: 18px;
}

.brand_msg_top_txt p span{
    font-size: 26px;
    border-bottom: 2px solid #333333;
}

.brand_msg_top_txt img{
    position: absolute;
    max-width: 390px;
    width: 39%;
    bottom: -75%;
    left: -10%;
    z-index: 1;
}

.heart_txtbox{
    position: relative;
    margin: 60px auto;
    padding: 60px 0 0;
}

.heart_txtbox span{
  color:#aa9977;
  font-size:18px;
}

.heart_txtbox div{
    padding-top: 50px;
    max-width: 800px;
    margin: 0 auto;
    width: 80%;
}

.heart_txt_img1{
    max-width: 300px;
    width: 30%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: -1;
}

.section_top_txt{
  margin: 30px auto;
  text-align: center;
  font-size: 18px;
}

.section_top_txt span{
  font-size: 22px;
}

.text_under{
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-color: #333;
}

#year-2025 .year_title h2{
  font-size:72px;
  color:#aa9977;
}

.fair_img{
  max-width: 750px;
  margin:30px auto;
  width: 100%;
  display: block;
}

.year_title_25{
  clear: both;
}

@media (max-width: 767px) {
.timeline-event{
  /*background: #e0e0e0;*/
  margin: 60px auto !important;
}

#year-2025 .year_title h2{
  font-size:52px;
}

.timeline-container{
  width: 96%;
  overflow-x: clip;
}

  .contents_wrapper{
    width: 96%;
    margin: 0 auto;
  }

  .keyuca_logo{
    max-width: 80px;
    margin: 20px auto;
  }

  .item_icon {
    max-width: 85px;
    position: absolute;
    right: -25px;
    bottom: -20px;
  }

  .mv_25th_svg {
    left: -25px;
    width: 20%;
  }

  .brand_msg1_hand{
    width: 60%;
    position: absolute;
    max-width: 190px;
    top: 10px;
    left: -30px;
    z-index: 1;
  }

  .mv_subtitle{
    font-size: 16px;
    bottom: 10px;
    left: -20px;
  }

  #logo_svg{
    max-width: 90px;
    right: -25px;
    top: -15px;
  }

  #main_txt_svg{
    max-width: 200px;
    margin: 20px auto;
  }

  #hand_svg{
    max-width: 200px;
    margin: 20px auto;
  }

	.section_txt {
		font-size: 14px;
		line-height: 2;
		margin: 20px 0;
	}

  .year_event_bottom_txt {
    margin: 30% auto 60px;
    background: #e0e0e0;
    position: relative;
    z-index: 1;
}

.year_title{
  margin:20px auto;
}

.year_title_25{
  float: inline-start;
}

  .h2_txt {
		font-size: 20px !important;
		margin:40px auto 20px !important;
	}


	.h2_txt span{
		font-size: 24px;
	}

  .section_title_gl{
    font-size: 32px !important;
  }

  .section_txt {
    font-size: 14px;
    margin: 20px 0;
	}

  .section_top_txt{
  margin: 20px auto;
  font-size: 16px;
}

.section_top_txt span{
  font-size: 18px;
}

#lp_header{
  gap: 5%;
  padding: 15px;
  top: 65px;
}

.mv_box{
  padding: 20px 35px 90px;
}

.brand_msg_top_txt {
  margin: 20px auto 40px;
}

.brand_msg_top_txt p {
  font-size: 16px;
}

.brand_msg_top_txt img{
  display: none;
}

.brand_msg_top_txt p span {
  font-size: 20px;
}

.brand_msg_box {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: 1fr;
  gap: 30px;
  grid-template-areas: unset;
  margin: 60px auto;
  font-size: 14px;
  width: 100%;
}

.brand_msg1 {
  grid-area: unset;
  height: unset;
  padding-bottom: 30%;
  order: 1;
}

.brand_msg2 {
  grid-area: unset;
  height: unset;
  max-width: 100%;
  order: 2;
}

.brand_msg3 {
  grid-area: unset;
  height: auto;
  max-width: 100%;
  order: 4;
}

.brand_msg4 {
  grid-area: unset;
  order: 3;
}

.brand_msg_hand{
  position: absolute;
  max-width: 190px;
  top: 0;
  left: -40px;
  z-index: 1;
  display: block;
}

.brand_msg1_img1 {
  max-width: 65%;
}

.brand_msg1_img2 {
  left: 60px;
  max-width: 40%;
}

.bg_box {
  margin: 40px calc(50% - 50vw);
  padding: 1px 0;
  border-top-left-radius: 95% 1%;
  border-top-right-radius: 95% 1%;
}

.section_txt_bg{
    padding: 0 0 20px !important;
    margin: 20px auto 0 !important;
}

.timeline-years{
  width: 12%;
}

.timeline-content{
  width: 88%;
  padding-right:0;
}

.year_title h3 {
  font-size: 18px;
}

.year_title p {
  font-size: 14px;
}

.timeline-hand img {
  width: 60%;
}

.timeline-hand {
  left: 53%;
  top: 70px;
  width: 60px;
}

.year_title h2{
  font-size: 38px;
}

#lp_header div {
  font-size: 14px;
}

.brand_msg4_img1 {
  max-width: 50%;
  bottom: 0;
  left: 0;
}

.brand_msg4_img2 {
  max-width: 40%;
  right: 45px;
  top: 0;
  z-index: -1;
}

.hand_2_svg {
  width: 65%;
   bottom: 10px;
  right: 0;
}

.heart_txt_img1 {
  width: 100%;
}

.heart_txtbox{
  padding:0;
}

.hand_width{
  aspect-ratio: 16 / 3;
  object-fit: cover;
  width: 100%;
  object-position: 65%;
}

.year_event_flex2 {
  grid-template-columns: 1fr;
  gap: 30px;
}

.year_event_flex3 {
  grid-template-columns: 1fr;
  gap: 30px;
  margin: 40px auto 0;
}

.heart_txtbox div{
    padding-top: 20px;
    width: 100%;
}

.timeline-line {
  left: 50%;
}

.apparel_imgbox{
    padding: 20px 0;
    text-align: left;
    align-items: flex-start !important;
}
}


/* SVG animation */

/* hand */
@-webkit-keyframes animate-svg-stroke-1 {
  0% {
    stroke-dashoffset: 3384.210693359375px;
    stroke-dasharray: 3384.210693359375px;
  }

  100% {
    stroke-dashoffset: 6768.42138671875px;
    stroke-dasharray: 3384.210693359375px;
  }
}

@keyframes animate-svg-stroke-1 {
  0% {
    stroke-dashoffset: 3384.210693359375px;
    stroke-dasharray: 3384.210693359375px;
  }

  100% {
    stroke-dashoffset: 6768.42138671875px;
    stroke-dasharray: 3384.210693359375px;
  }
}

.hand_svg-1 {
  -webkit-animation: animate-svg-stroke-1 2s cubic-bezier(0.445, 0.05, 0.55, 0.95) 0s both;
          animation: animate-svg-stroke-1 2s cubic-bezier(0.445, 0.05, 0.55, 0.95) 0s both;
}

@-webkit-keyframes animate-svg-stroke-2 {
  0% {
    stroke-dashoffset: 112.49395751953125px;
    stroke-dasharray: 112.49395751953125px;
  }

  100% {
    stroke-dashoffset: 224.9879150390625px;
    stroke-dasharray: 112.49395751953125px;
  }
}

@keyframes animate-svg-stroke-2 {
  0% {
    stroke-dashoffset: 112.49395751953125px;
    stroke-dasharray: 112.49395751953125px;
  }

  100% {
    stroke-dashoffset: 224.9879150390625px;
    stroke-dasharray: 112.49395751953125px;
  }
}

.hand_svg-2 {
  -webkit-animation: animate-svg-stroke-2 2s cubic-bezier(0.445, 0.05, 0.55, 0.95) 0.12s both;
          animation: animate-svg-stroke-2 2s cubic-bezier(0.445, 0.05, 0.55, 0.95) 0.12s both;
}

@-webkit-keyframes animate-svg-stroke-3 {
  0% {
    stroke-dashoffset: 113.74723052978516px;
    stroke-dasharray: 113.74723052978516px;
  }

  100% {
    stroke-dashoffset: 227.4944610595703px;
    stroke-dasharray: 113.74723052978516px;
  }
}

@keyframes animate-svg-stroke-3 {
  0% {
    stroke-dashoffset: 113.74723052978516px;
    stroke-dasharray: 113.74723052978516px;
  }

  100% {
    stroke-dashoffset: 227.4944610595703px;
    stroke-dasharray: 113.74723052978516px;
  }
}

.hand_svg-3 {
  -webkit-animation: animate-svg-stroke-3 2s cubic-bezier(0.445, 0.05, 0.55, 0.95) 0.24s both;
          animation: animate-svg-stroke-3 2s cubic-bezier(0.445, 0.05, 0.55, 0.95) 0.24s both;
}

@-webkit-keyframes animate-svg-stroke-4 {
  0% {
    stroke-dashoffset: 100.28660583496094px;
    stroke-dasharray: 100.28660583496094px;
  }

  100% {
    stroke-dashoffset: 200.57321166992188px;
    stroke-dasharray: 100.28660583496094px;
  }
}

@keyframes animate-svg-stroke-4 {
  0% {
    stroke-dashoffset: 100.28660583496094px;
    stroke-dasharray: 100.28660583496094px;
  }

  100% {
    stroke-dashoffset: 200.57321166992188px;
    stroke-dasharray: 100.28660583496094px;
  }
}

.hand_svg-4 {
  -webkit-animation: animate-svg-stroke-4 2s cubic-bezier(0.445, 0.05, 0.55, 0.95) 0.36s both;
          animation: animate-svg-stroke-4 2s cubic-bezier(0.445, 0.05, 0.55, 0.95) 0.36s both;
}

@-webkit-keyframes animate-svg-stroke-5 {
  0% {
    stroke-dashoffset: 56.02649688720703px;
    stroke-dasharray: 56.02649688720703px;
  }

  100% {
    stroke-dashoffset: 112.05299377441406px;
    stroke-dasharray: 56.02649688720703px;
  }
}

@keyframes animate-svg-stroke-5 {
  0% {
    stroke-dashoffset: 56.02649688720703px;
    stroke-dasharray: 56.02649688720703px;
  }

  100% {
    stroke-dashoffset: 112.05299377441406px;
    stroke-dasharray: 56.02649688720703px;
  }
}

.hand_svg-5 {
  -webkit-animation: animate-svg-stroke-5 2s cubic-bezier(0.445, 0.05, 0.55, 0.95) 0.48s both;
          animation: animate-svg-stroke-5 2s cubic-bezier(0.445, 0.05, 0.55, 0.95) 0.48s both;
}

@-webkit-keyframes animate-svg-stroke-6 {
  0% {
    stroke-dashoffset: 54.625003814697266px;
    stroke-dasharray: 54.625003814697266px;
  }

  100% {
    stroke-dashoffset: 109.25000762939453px;
    stroke-dasharray: 54.625003814697266px;
  }
}

@keyframes animate-svg-stroke-6 {
  0% {
    stroke-dashoffset: 54.625003814697266px;
    stroke-dasharray: 54.625003814697266px;
  }

  100% {
    stroke-dashoffset: 109.25000762939453px;
    stroke-dasharray: 54.625003814697266px;
  }
}

.hand_svg-6 {
  -webkit-animation: animate-svg-stroke-6 2s cubic-bezier(0.445, 0.05, 0.55, 0.95) 0.6s both;
          animation: animate-svg-stroke-6 2s cubic-bezier(0.445, 0.05, 0.55, 0.95) 0.6s both;
}

@-webkit-keyframes animate-svg-stroke-7 {
  0% {
    stroke-dashoffset: 97.69732666015625px;
    stroke-dasharray: 97.69732666015625px;
  }

  100% {
    stroke-dashoffset: 195.3946533203125px;
    stroke-dasharray: 97.69732666015625px;
  }
}

@keyframes animate-svg-stroke-7 {
  0% {
    stroke-dashoffset: 97.69732666015625px;
    stroke-dasharray: 97.69732666015625px;
  }

  100% {
    stroke-dashoffset: 195.3946533203125px;
    stroke-dasharray: 97.69732666015625px;
  }
}

.hand_svg-7 {
  -webkit-animation: animate-svg-stroke-7 2s cubic-bezier(0.445, 0.05, 0.55, 0.95) 0.72s both;
          animation: animate-svg-stroke-7 2s cubic-bezier(0.445, 0.05, 0.55, 0.95) 0.72s both;
}

@-webkit-keyframes animate-svg-stroke-8 {
  0% {
    stroke-dashoffset: 95.62457275390625px;
    stroke-dasharray: 95.62457275390625px;
  }

  100% {
    stroke-dashoffset: 191.2491455078125px;
    stroke-dasharray: 95.62457275390625px;
  }
}

@keyframes animate-svg-stroke-8 {
  0% {
    stroke-dashoffset: 95.62457275390625px;
    stroke-dasharray: 95.62457275390625px;
  }

  100% {
    stroke-dashoffset: 191.2491455078125px;
    stroke-dasharray: 95.62457275390625px;
  }
}

.hand_svg-8 {
  -webkit-animation: animate-svg-stroke-8 2s cubic-bezier(0.445, 0.05, 0.55, 0.95) 0.84s both;
          animation: animate-svg-stroke-8 2s cubic-bezier(0.445, 0.05, 0.55, 0.95) 0.84s both;
}

@-webkit-keyframes animate-svg-stroke-9 {
  0% {
    stroke-dashoffset: 107.52635955810547px;
    stroke-dasharray: 107.52635955810547px;
  }

  100% {
    stroke-dashoffset: 215.05271911621094px;
    stroke-dasharray: 107.52635955810547px;
  }
}

@keyframes animate-svg-stroke-9 {
  0% {
    stroke-dashoffset: 107.52635955810547px;
    stroke-dasharray: 107.52635955810547px;
  }

  100% {
    stroke-dashoffset: 215.05271911621094px;
    stroke-dasharray: 107.52635955810547px;
  }
}

.hand_svg-9 {
  -webkit-animation: animate-svg-stroke-9 2s cubic-bezier(0.445, 0.05, 0.55, 0.95) 0.96s both;
          animation: animate-svg-stroke-9 2s cubic-bezier(0.445, 0.05, 0.55, 0.95) 0.96s both;
}
/* hand end */


/* theme logo */

@-webkit-keyframes animate-svg_logo-fill-1 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(94, 79, 71);
  }
}

@keyframes animate-svg_logo-fill-1 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(94, 79, 71);
  }
}

.logo_svg-1 {
  -webkit-animation: animate-svg_logo-fill-1 1.5s cubic-bezier(0.39, 0.575, 0.565, 1) 0.8s both;
          animation: animate-svg_logo-fill-1 1.5s cubic-bezier(0.39, 0.575, 0.565, 1) 0.8s both;
}

@-webkit-keyframes animate-svg_logo-fill-2 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(94, 79, 71);
  }
}

@keyframes animate-svg_logo-fill-2 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(94, 79, 71);
  }
}

.logo_svg-2 {
  -webkit-animation: animate-svg_logo-fill-2 1.5s cubic-bezier(0.39, 0.575, 0.565, 1) 0.9s both;
          animation: animate-svg_logo-fill-2 1.5s cubic-bezier(0.39, 0.575, 0.565, 1) 0.9s both;
}

@-webkit-keyframes animate-svg_logo-fill-3 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(154, 123, 45);
  }
}

@keyframes animate-svg_logo-fill-3 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(154, 123, 45);
  }
}

.logo_svg-3 {
  -webkit-animation: animate-svg_logo-fill-3 1.5s cubic-bezier(0.39, 0.575, 0.565, 1) 1s both;
          animation: animate-svg_logo-fill-3 1.5s cubic-bezier(0.39, 0.575, 0.565, 1) 1s both;
}

@-webkit-keyframes animate-svg_logo-fill-4 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(154, 123, 45);
  }
}

@keyframes animate-svg_logo-fill-4 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(154, 123, 45);
  }
}

.logo_svg-4 {
  -webkit-animation: animate-svg_logo-fill-4 1.5s cubic-bezier(0.39, 0.575, 0.565, 1) 1.1s both;
          animation: animate-svg_logo-fill-4 1.5s cubic-bezier(0.39, 0.575, 0.565, 1) 1.1s both;
}

@-webkit-keyframes animate-svg_logo-fill-5 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(94, 79, 71);
  }
}

@keyframes animate-svg_logo-fill-5 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(94, 79, 71);
  }
}

.logo_svg-5 {
  -webkit-animation: animate-svg_logo-fill-5 1.5s cubic-bezier(0.39, 0.575, 0.565, 1) 1.2000000000000002s both;
          animation: animate-svg_logo-fill-5 1.5s cubic-bezier(0.39, 0.575, 0.565, 1) 1.2000000000000002s both;
}

@-webkit-keyframes animate-svg_logo-fill-6 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(94, 79, 71);
  }
}

@keyframes animate-svg_logo-fill-6 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(94, 79, 71);
  }
}

.logo_svg-6 {
  -webkit-animation: animate-svg_logo-fill-6 1.5s cubic-bezier(0.39, 0.575, 0.565, 1) 1.3s both;
          animation: animate-svg_logo-fill-6 1.5s cubic-bezier(0.39, 0.575, 0.565, 1) 1.3s both;
}

@-webkit-keyframes animate-svg_logo-fill-7 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(94, 79, 71);
  }
}

@keyframes animate-svg_logo-fill-7 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(94, 79, 71);
  }
}

.logo_svg-7 {
  -webkit-animation: animate-svg_logo-fill-7 1.5s cubic-bezier(0.39, 0.575, 0.565, 1) 1.4000000000000001s both;
          animation: animate-svg_logo-fill-7 1.5s cubic-bezier(0.39, 0.575, 0.565, 1) 1.4000000000000001s both;
}

@-webkit-keyframes animate-svg_logo-fill-8 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(94, 79, 71);
  }
}

@keyframes animate-svg_logo-fill-8 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(94, 79, 71);
  }
}

.logo_svg-8 {
  -webkit-animation: animate-svg_logo-fill-8 1.5s cubic-bezier(0.39, 0.575, 0.565, 1) 1.5s both;
          animation: animate-svg_logo-fill-8 1.5s cubic-bezier(0.39, 0.575, 0.565, 1) 1.5s both;
}

@-webkit-keyframes animate-svg_logo-fill-9 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(94, 79, 71);
  }
}

@keyframes animate-svg_logo-fill-9 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(94, 79, 71);
  }
}

.logo_svg-9 {
  -webkit-animation: animate-svg_logo-fill-9 1.5s cubic-bezier(0.39, 0.575, 0.565, 1) 1.6s both;
          animation: animate-svg_logo-fill-9 1.5s cubic-bezier(0.39, 0.575, 0.565, 1) 1.6s both;
}

@-webkit-keyframes animate-svg_logo-fill-10 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(94, 79, 71);
  }
}

@keyframes animate-svg_logo-fill-10 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(94, 79, 71);
  }
}

.logo_svg-10 {
  -webkit-animation: animate-svg_logo-fill-10 1.5s cubic-bezier(0.39, 0.575, 0.565, 1) 1.7000000000000002s both;
          animation: animate-svg_logo-fill-10 1.5s cubic-bezier(0.39, 0.575, 0.565, 1) 1.7000000000000002s both;
}

@-webkit-keyframes animate-svg_logo-fill-11 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(94, 79, 71);
  }
}

@keyframes animate-svg_logo-fill-11 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(94, 79, 71);
  }
}

.logo_svg-11 {
  -webkit-animation: animate-svg_logo-fill-11 1.5s cubic-bezier(0.39, 0.575, 0.565, 1) 1.8s both;
          animation: animate-svg_logo-fill-11 1.5s cubic-bezier(0.39, 0.575, 0.565, 1) 1.8s both;
}

@-webkit-keyframes animate-svg_logo-fill-12 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(94, 79, 71);
  }
}

@keyframes animate-svg_logo-fill-12 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(94, 79, 71);
  }
}

.logo_svg-12 {
  -webkit-animation: animate-svg_logo-fill-12 1.5s cubic-bezier(0.39, 0.575, 0.565, 1) 1.9000000000000001s both;
          animation: animate-svg_logo-fill-12 1.5s cubic-bezier(0.39, 0.575, 0.565, 1) 1.9000000000000001s both;
}

@-webkit-keyframes animate-svg_logo-fill-13 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(94, 79, 71);
  }
}

@keyframes animate-svg_logo-fill-13 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(94, 79, 71);
  }
}

.logo_svg-13 {
  -webkit-animation: animate-svg_logo-fill-13 1.5s cubic-bezier(0.39, 0.575, 0.565, 1) 2s both;
          animation: animate-svg_logo-fill-13 1.5s cubic-bezier(0.39, 0.575, 0.565, 1) 2s both;
}

@-webkit-keyframes animate-svg_logo-fill-14 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(94, 79, 71);
  }
}

@keyframes animate-svg_logo-fill-14 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(94, 79, 71);
  }
}

.logo_svg-14 {
  -webkit-animation: animate-svg_logo-fill-14 1.5s cubic-bezier(0.39, 0.575, 0.565, 1) 2.1s both;
          animation: animate-svg_logo-fill-14 1.5s cubic-bezier(0.39, 0.575, 0.565, 1) 2.1s both;
}

@-webkit-keyframes animate-svg_logo-fill-15 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(94, 79, 71);
  }
}

@keyframes animate-svg_logo-fill-15 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(94, 79, 71);
  }
}

.logo_svg-15 {
  -webkit-animation: animate-svg_logo-fill-15 1.5s cubic-bezier(0.39, 0.575, 0.565, 1) 2.2s both;
          animation: animate-svg_logo-fill-15 1.5s cubic-bezier(0.39, 0.575, 0.565, 1) 2.2s both;
}

@-webkit-keyframes animate-svg_logo-fill-16 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(94, 79, 71);
  }
}

@keyframes animate-svg_logo-fill-16 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(94, 79, 71);
  }
}

.logo_svg-16 {
  -webkit-animation: animate-svg_logo-fill-16 1.5s cubic-bezier(0.39, 0.575, 0.565, 1) 2.3s both;
          animation: animate-svg_logo-fill-16 1.5s cubic-bezier(0.39, 0.575, 0.565, 1) 2.3s both;
}

@-webkit-keyframes animate-svg_logo-fill-17 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(94, 79, 71);
  }
}

@keyframes animate-svg_logo-fill-17 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(94, 79, 71);
  }
}

.logo_svg-17 {
  -webkit-animation: animate-svg_logo-fill-17 1.5s cubic-bezier(0.39, 0.575, 0.565, 1) 2.4000000000000004s both;
          animation: animate-svg_logo-fill-17 1.5s cubic-bezier(0.39, 0.575, 0.565, 1) 2.4000000000000004s both;
}

@-webkit-keyframes animate-svg_logo-fill-18 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(94, 79, 71);
  }
}

@keyframes animate-svg_logo-fill-18 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(94, 79, 71);
  }
}

.logo_svg-18 {
  -webkit-animation: animate-svg_logo-fill-18 1.5s cubic-bezier(0.39, 0.575, 0.565, 1) 2.5s both;
          animation: animate-svg_logo-fill-18 1.5s cubic-bezier(0.39, 0.575, 0.565, 1) 2.5s both;
}


/* theme log end */

/* theme txt */

@-webkit-keyframes animate-svg_theme_txt-fill-1 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(35, 24, 21);
  }
}

@keyframes animate-svg_theme_txt-fill-1 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(35, 24, 21);
  }
}

.theme_txt_svg-1 {
  -webkit-animation: animate-svg_theme_txt-fill-1 1s ease 0.1s both;
          animation: animate-svg_theme_txt-fill-1 1s ease 0.1s both;
}

@-webkit-keyframes animate-svg_theme_txt-fill-2 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(35, 24, 21);
  }
}

@keyframes animate-svg_theme_txt-fill-2 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(35, 24, 21);
  }
}

.theme_txt_svg-2 {
  -webkit-animation: animate-svg_theme_txt-fill-2 1s ease 0.2s both;
          animation: animate-svg_theme_txt-fill-2 1s ease 0.2s both;
}

@-webkit-keyframes animate-svg_theme_txt-fill-3 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(35, 24, 21);
  }
}

@keyframes animate-svg_theme_txt-fill-3 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(35, 24, 21);
  }
}

.theme_txt_svg-3 {
  -webkit-animation: animate-svg_theme_txt-fill-3 1s ease 0.30000000000000004s both;
          animation: animate-svg_theme_txt-fill-3 1s ease 0.30000000000000004s both;
}

@-webkit-keyframes animate-svg_theme_txt-fill-4 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(35, 24, 21);
  }
}

@keyframes animate-svg_theme_txt-fill-4 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(35, 24, 21);
  }
}

.theme_txt_svg-4 {
  -webkit-animation: animate-svg_theme_txt-fill-4 1s ease 0.4s both;
          animation: animate-svg_theme_txt-fill-4 1s ease 0.4s both;
}

@-webkit-keyframes animate-svg_theme_txt-fill-5 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(35, 24, 21);
  }
}

@keyframes animate-svg_theme_txt-fill-5 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(35, 24, 21);
  }
}

.theme_txt_svg-5 {
  -webkit-animation: animate-svg_theme_txt-fill-5 1s ease 0.5s both;
          animation: animate-svg_theme_txt-fill-5 1s ease 0.5s both;
}

@-webkit-keyframes animate-svg_theme_txt-fill-6 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(35, 24, 21);
  }
}

@keyframes animate-svg_theme_txt-fill-6 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(35, 24, 21);
  }
}

.theme_txt_svg-6 {
  -webkit-animation: animate-svg_theme_txt-fill-6 1s ease 0.6s both;
          animation: animate-svg_theme_txt-fill-6 1s ease 0.6s both;
}

@-webkit-keyframes animate-svg_theme_txt-fill-7 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(35, 24, 21);
  }
}

@keyframes animate-svg_theme_txt-fill-7 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(35, 24, 21);
  }
}

.theme_txt_svg-7 {
  -webkit-animation: animate-svg_theme_txt-fill-7 1s ease 0.7000000000000001s both;
          animation: animate-svg_theme_txt-fill-7 1s ease 0.7000000000000001s both;
}

@-webkit-keyframes animate-svg_theme_txt-fill-8 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(35, 24, 21);
  }
}

@keyframes animate-svg_theme_txt-fill-8 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(35, 24, 21);
  }
}

.theme_txt_svg-8 {
  -webkit-animation: animate-svg_theme_txt-fill-8 1s ease 0.8s both;
          animation: animate-svg_theme_txt-fill-8 1s ease 0.8s both;
}

@-webkit-keyframes animate-svg_theme_txt-fill-9 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(35, 24, 21);
  }
}

@keyframes animate-svg_theme_txt-fill-9 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(35, 24, 21);
  }
}

.theme_txt_svg-9 {
  -webkit-animation: animate-svg_theme_txt-fill-9 1s ease 0.9s both;
          animation: animate-svg_theme_txt-fill-9 1s ease 0.9s both;
}

@-webkit-keyframes animate-svg_theme_txt-fill-10 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(35, 24, 21);
  }
}

@keyframes animate-svg_theme_txt-fill-10 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(35, 24, 21);
  }
}

.theme_txt_svg-10 {
  -webkit-animation: animate-svg_theme_txt-fill-10 1s ease 1s both;
          animation: animate-svg_theme_txt-fill-10 1s ease 1s both;
}

@-webkit-keyframes animate-svg_theme_txt-fill-11 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(35, 24, 21);
  }
}

@keyframes animate-svg_theme_txt-fill-11 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(35, 24, 21);
  }
}

.theme_txt_svg-11 {
  -webkit-animation: animate-svg_theme_txt-fill-11 1s ease 1.1s both;
          animation: animate-svg_theme_txt-fill-11 1s ease 1.1s both;
}

@-webkit-keyframes animate-svg_theme_txt-fill-12 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(35, 24, 21);
  }
}

@keyframes animate-svg_theme_txt-fill-12 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(35, 24, 21);
  }
}

.theme_txt_svg-12 {
  -webkit-animation: animate-svg_theme_txt-fill-12 1s ease 1.2000000000000002s both;
          animation: animate-svg_theme_txt-fill-12 1s ease 1.2000000000000002s both;
}

@-webkit-keyframes animate-svg_theme_txt-fill-13 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(35, 24, 21);
  }
}

@keyframes animate-svg_theme_txt-fill-13 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(35, 24, 21);
  }
}

.theme_txt_svg-13 {
  -webkit-animation: animate-svg_theme_txt-fill-13 1s ease 1.3000000000000003s both;
          animation: animate-svg_theme_txt-fill-13 1s ease 1.3000000000000003s both;
}

@-webkit-keyframes animate-svg_theme_txt-fill-14 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(35, 24, 21);
  }
}

@keyframes animate-svg_theme_txt-fill-14 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(35, 24, 21);
  }
}

.theme_txt_svg-14 {
  -webkit-animation: animate-svg_theme_txt-fill-14 1s ease 1.4000000000000001s both;
          animation: animate-svg_theme_txt-fill-14 1s ease 1.4000000000000001s both;
}
/* theme txt end */


/* SVG animation end */

/* fadein */

  .animation{
	opacity : 0;
	visibility: hidden;
	transition: 2.5s;
	transform: translateY(30px);
  }

  .active{
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
  }

  .fadein {
    opacity : 0;
    transform : translate(0, 50px);
    transition : all 2s;
}

.fadein.scrollin {
    opacity : 1;
    transform : translate(0, 0);
}

.fade-in-bottom {
	opacity: 0;
	animation-name: fadein-bottom;
	animation-duration: 1s;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
 }

 @keyframes fadein-bottom {
	0% {
	   opacity: 0;
	   transform: translateY(20px);
	}
	100% {
	   opacity: 1;
	   transform: translateY(0);
	}
 }

 /* scroll */

/* スクロールダウンの位置 */
.scroll {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 30px;
    z-index: 995;
    font-family: 'gill-sans-nova';
    font-weight: normal;
    margin: 0 auto;
    text-align: center;
    font-size: 16px;
}
/* 線のアニメーション部分 */
.scroll::before {
    animation: scroll 2s infinite;
    background-color: #333;
    bottom: -90px;
    content: "";
    height: 70px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    width: 1px;
    z-index: 2;
}
/* 線の背景色 */
.scroll::after {
    background-color: #ccc;
    bottom: -90px;
    content: "";
    height: 70px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    width: 1px;
}
/* 線のアニメーション */
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

.fadein_right_nd {
    opacity : 0;
    transform : translateX(50px);
    transition : all 2s;
}

.fadein_right_nd.scrollin {
    opacity : 1;
    transform : translateX(0);
}

.fadein_left_nd {
    opacity : 0;
    transform : translateX(-50px);
    transition : all 2s;
}

.fadein_left_nd p a,
.fadein_right_nd p a{
  display: inline;
  color: #aa9977;
}

.fadein_left_nd.scrollin {
    opacity : 1;
    transform : translateX(0);
}

.fadein_right {
    opacity : 0;
    transform : translateX(50px);
    transition : all 2s;
}

.fadein_right.scrollin {
    opacity : 1;
    transform : translateX(0);
    transition : all 2s 2s;
}

.fadein_2s {
    opacity : 0;
    transform : translate(0, 50px);
    transition : all 2s;
}

.fadein_2s.scrollin {
    opacity : 1;
    transform : translate(0, 0);
    transition : all 2s 1s;
}

.fadein_4s {
    opacity : 0;
    transform : translate(0, 50px);
    transition : all 2s;
}

.fadein_4s.scrollin {
    opacity : 1;
    transform : translate(0, 0);
    transition : all 2s 2s;
}

/*sub title svg*/
/***************************************************
 * Generated by SVG Artista on 8/21/2025, 3:57:39 PM
 * MIT license (https://opensource.org/licenses/MIT)
 * W. https://svgartista.net
 **************************************************/

@-webkit-keyframes animate-svg-stroke-1 {
  0% {
    stroke-dashoffset: 116.57168579101562px;
    stroke-dasharray: 116.57168579101562px;
  }

  100% {
    stroke-dashoffset: 233.14337158203125px;
    stroke-dasharray: 116.57168579101562px;
  }
}

@keyframes animate-svg-stroke-1 {
  0% {
    stroke-dashoffset: 116.57168579101562px;
    stroke-dasharray: 116.57168579101562px;
  }

  100% {
    stroke-dashoffset: 233.14337158203125px;
    stroke-dasharray: 116.57168579101562px;
  }
}

@-webkit-keyframes animate-svg-fill-1 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(0, 0, 0);
  }
}

@keyframes animate-svg-fill-1 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(0, 0, 0);
  }
}

@media (max-width: 767px){
  .scroll::before{ 
  bottom: -60px;
  height: 50px;
}

.scroll::after{
  height: 50px;
  bottom: -60px;
}
}

.sub_title_svg-1 {
  -webkit-animation: animate-svg-stroke-1 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s both,
                       animate-svg-fill-1 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s both;
          animation: animate-svg-stroke-1 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s both,
               animate-svg-fill-1 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s both;
}

@-webkit-keyframes animate-svg-stroke-2 {
  0% {
    stroke-dashoffset: 82.95419311523438px;
    stroke-dasharray: 82.95419311523438px;
  }

  100% {
    stroke-dashoffset: 165.90838623046875px;
    stroke-dasharray: 82.95419311523438px;
  }
}

@keyframes animate-svg-stroke-2 {
  0% {
    stroke-dashoffset: 82.95419311523438px;
    stroke-dasharray: 82.95419311523438px;
  }

  100% {
    stroke-dashoffset: 165.90838623046875px;
    stroke-dasharray: 82.95419311523438px;
  }
}

@-webkit-keyframes animate-svg-fill-2 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(0, 0, 0);
  }
}

@keyframes animate-svg-fill-2 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(0, 0, 0);
  }
}

.sub_title_svg-2 {
  -webkit-animation: animate-svg-stroke-2 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s both,
                       animate-svg-fill-2 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s both;
          animation: animate-svg-stroke-2 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s both,
               animate-svg-fill-2 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s both;
}

@-webkit-keyframes animate-svg-stroke-3 {
  0% {
    stroke-dashoffset: 109.74720001220703px;
    stroke-dasharray: 109.74720001220703px;
  }

  100% {
    stroke-dashoffset: 219.49440002441406px;
    stroke-dasharray: 109.74720001220703px;
  }
}

@keyframes animate-svg-stroke-3 {
  0% {
    stroke-dashoffset: 109.74720001220703px;
    stroke-dasharray: 109.74720001220703px;
  }

  100% {
    stroke-dashoffset: 219.49440002441406px;
    stroke-dasharray: 109.74720001220703px;
  }
}

@-webkit-keyframes animate-svg-fill-3 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(0, 0, 0);
  }
}

@keyframes animate-svg-fill-3 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(0, 0, 0);
  }
}

.sub_title_svg-3 {
  -webkit-animation: animate-svg-stroke-3 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.24s both,
                       animate-svg-fill-3 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1s both;
          animation: animate-svg-stroke-3 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.24s both,
               animate-svg-fill-3 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1s both;
}

@-webkit-keyframes animate-svg-stroke-4 {
  0% {
    stroke-dashoffset: 103.38897705078125px;
    stroke-dasharray: 103.38897705078125px;
  }

  100% {
    stroke-dashoffset: 206.7779541015625px;
    stroke-dasharray: 103.38897705078125px;
  }
}

@keyframes animate-svg-stroke-4 {
  0% {
    stroke-dashoffset: 103.38897705078125px;
    stroke-dasharray: 103.38897705078125px;
  }

  100% {
    stroke-dashoffset: 206.7779541015625px;
    stroke-dasharray: 103.38897705078125px;
  }
}

@-webkit-keyframes animate-svg-fill-4 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(0, 0, 0);
  }
}

@keyframes animate-svg-fill-4 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(0, 0, 0);
  }
}

.sub_title_svg-4 {
  -webkit-animation: animate-svg-stroke-4 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.36s both,
                       animate-svg-fill-4 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s both;
          animation: animate-svg-stroke-4 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.36s both,
               animate-svg-fill-4 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s both;
}

@-webkit-keyframes animate-svg-stroke-5 {
  0% {
    stroke-dashoffset: 110.05970764160156px;
    stroke-dasharray: 110.05970764160156px;
  }

  100% {
    stroke-dashoffset: 220.11941528320312px;
    stroke-dasharray: 110.05970764160156px;
  }
}

@keyframes animate-svg-stroke-5 {
  0% {
    stroke-dashoffset: 110.05970764160156px;
    stroke-dasharray: 110.05970764160156px;
  }

  100% {
    stroke-dashoffset: 220.11941528320312px;
    stroke-dasharray: 110.05970764160156px;
  }
}

@-webkit-keyframes animate-svg-fill-5 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(0, 0, 0);
  }
}

@keyframes animate-svg-fill-5 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(0, 0, 0);
  }
}

.sub_title_svg-5 {
  -webkit-animation: animate-svg-stroke-5 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.48s both,
                       animate-svg-fill-5 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2000000000000002s both;
          animation: animate-svg-stroke-5 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.48s both,
               animate-svg-fill-5 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2000000000000002s both;
}

@-webkit-keyframes animate-svg-stroke-6 {
  0% {
    stroke-dashoffset: 138.5px;
    stroke-dasharray: 138.5px;
  }

  100% {
    stroke-dashoffset: 277px;
    stroke-dasharray: 138.5px;
  }
}

@keyframes animate-svg-stroke-6 {
  0% {
    stroke-dashoffset: 138.5px;
    stroke-dasharray: 138.5px;
  }

  100% {
    stroke-dashoffset: 277px;
    stroke-dasharray: 138.5px;
  }
}

@-webkit-keyframes animate-svg-fill-6 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(0, 0, 0);
  }
}

@keyframes animate-svg-fill-6 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(0, 0, 0);
  }
}

.sub_title_svg-6 {
  -webkit-animation: animate-svg-stroke-6 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s both,
                       animate-svg-fill-6 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s both;
          animation: animate-svg-stroke-6 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s both,
               animate-svg-fill-6 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s both;
}

@-webkit-keyframes animate-svg-stroke-7 {
  0% {
    stroke-dashoffset: 50.97968292236328px;
    stroke-dasharray: 50.97968292236328px;
  }

  100% {
    stroke-dashoffset: 101.95936584472656px;
    stroke-dasharray: 50.97968292236328px;
  }
}

@keyframes animate-svg-stroke-7 {
  0% {
    stroke-dashoffset: 50.97968292236328px;
    stroke-dasharray: 50.97968292236328px;
  }

  100% {
    stroke-dashoffset: 101.95936584472656px;
    stroke-dasharray: 50.97968292236328px;
  }
}

@-webkit-keyframes animate-svg-fill-7 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(0, 0, 0);
  }
}

@keyframes animate-svg-fill-7 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(0, 0, 0);
  }
}

.sub_title_svg-7 {
  -webkit-animation: animate-svg-stroke-7 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.72s both,
                       animate-svg-fill-7 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4000000000000001s both;
          animation: animate-svg-stroke-7 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.72s both,
               animate-svg-fill-7 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4000000000000001s both;
}

@-webkit-keyframes animate-svg-stroke-8 {
  0% {
    stroke-dashoffset: 80.02713775634766px;
    stroke-dasharray: 80.02713775634766px;
  }

  100% {
    stroke-dashoffset: 160.0542755126953px;
    stroke-dasharray: 80.02713775634766px;
  }
}

@keyframes animate-svg-stroke-8 {
  0% {
    stroke-dashoffset: 80.02713775634766px;
    stroke-dasharray: 80.02713775634766px;
  }

  100% {
    stroke-dashoffset: 160.0542755126953px;
    stroke-dasharray: 80.02713775634766px;
  }
}

@-webkit-keyframes animate-svg-fill-8 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(0, 0, 0);
  }
}

@keyframes animate-svg-fill-8 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(0, 0, 0);
  }
}

.sub_title_svg-8 {
  -webkit-animation: animate-svg-stroke-8 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.84s both,
                       animate-svg-fill-8 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s both;
          animation: animate-svg-stroke-8 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.84s both,
               animate-svg-fill-8 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s both;
}

@-webkit-keyframes animate-svg-stroke-9 {
  0% {
    stroke-dashoffset: 74.1001205444336px;
    stroke-dasharray: 74.1001205444336px;
  }

  100% {
    stroke-dashoffset: 148.2002410888672px;
    stroke-dasharray: 74.1001205444336px;
  }
}

@keyframes animate-svg-stroke-9 {
  0% {
    stroke-dashoffset: 74.1001205444336px;
    stroke-dasharray: 74.1001205444336px;
  }

  100% {
    stroke-dashoffset: 148.2002410888672px;
    stroke-dasharray: 74.1001205444336px;
  }
}

@-webkit-keyframes animate-svg-fill-9 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(0, 0, 0);
  }
}

@keyframes animate-svg-fill-9 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(0, 0, 0);
  }
}

.sub_title_svg-9 {
  -webkit-animation: animate-svg-stroke-9 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.96s both,
                       animate-svg-fill-9 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s both;
          animation: animate-svg-stroke-9 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.96s both,
               animate-svg-fill-9 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s both;
}

@-webkit-keyframes animate-svg-stroke-10 {
  0% {
    stroke-dashoffset: 54.86677932739258px;
    stroke-dasharray: 54.86677932739258px;
  }

  100% {
    stroke-dashoffset: 109.73355865478516px;
    stroke-dasharray: 54.86677932739258px;
  }
}

@keyframes animate-svg-stroke-10 {
  0% {
    stroke-dashoffset: 54.86677932739258px;
    stroke-dasharray: 54.86677932739258px;
  }

  100% {
    stroke-dashoffset: 109.73355865478516px;
    stroke-dasharray: 54.86677932739258px;
  }
}

@-webkit-keyframes animate-svg-fill-10 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(0, 0, 0);
  }
}

@keyframes animate-svg-fill-10 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(0, 0, 0);
  }
}

.sub_title_svg-10 {
  -webkit-animation: animate-svg-stroke-10 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.08s both,
                       animate-svg-fill-10 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7000000000000002s both;
          animation: animate-svg-stroke-10 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.08s both,
               animate-svg-fill-10 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7000000000000002s both;
}

@-webkit-keyframes animate-svg-stroke-11 {
  0% {
    stroke-dashoffset: 74.10013580322266px;
    stroke-dasharray: 74.10013580322266px;
  }

  100% {
    stroke-dashoffset: 148.2002716064453px;
    stroke-dasharray: 74.10013580322266px;
  }
}

@keyframes animate-svg-stroke-11 {
  0% {
    stroke-dashoffset: 74.10013580322266px;
    stroke-dasharray: 74.10013580322266px;
  }

  100% {
    stroke-dashoffset: 148.2002716064453px;
    stroke-dasharray: 74.10013580322266px;
  }
}

@-webkit-keyframes animate-svg-fill-11 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(0, 0, 0);
  }
}

@keyframes animate-svg-fill-11 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(0, 0, 0);
  }
}

.sub_title_svg-11 {
  -webkit-animation: animate-svg-stroke-11 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s both,
                       animate-svg-fill-11 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.8s both;
          animation: animate-svg-stroke-11 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s both,
               animate-svg-fill-11 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.8s both;
}

@-webkit-keyframes animate-svg-stroke-12 {
  0% {
    stroke-dashoffset: 67.6405258178711px;
    stroke-dasharray: 67.6405258178711px;
  }

  100% {
    stroke-dashoffset: 135.2810516357422px;
    stroke-dasharray: 67.6405258178711px;
  }
}

@keyframes animate-svg-stroke-12 {
  0% {
    stroke-dashoffset: 67.6405258178711px;
    stroke-dasharray: 67.6405258178711px;
  }

  100% {
    stroke-dashoffset: 135.2810516357422px;
    stroke-dasharray: 67.6405258178711px;
  }
}

@-webkit-keyframes animate-svg-fill-12 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(0, 0, 0);
  }
}

@keyframes animate-svg-fill-12 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(0, 0, 0);
  }
}

.sub_title_svg-12 {
  -webkit-animation: animate-svg-stroke-12 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3199999999999998s both,
                       animate-svg-fill-12 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.9000000000000001s both;
          animation: animate-svg-stroke-12 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3199999999999998s both,
               animate-svg-fill-12 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.9000000000000001s both;
}

@-webkit-keyframes animate-svg-stroke-13 {
  0% {
    stroke-dashoffset: 80.53768920898438px;
    stroke-dasharray: 80.53768920898438px;
  }

  100% {
    stroke-dashoffset: 161.07537841796875px;
    stroke-dasharray: 80.53768920898438px;
  }
}

@keyframes animate-svg-stroke-13 {
  0% {
    stroke-dashoffset: 80.53768920898438px;
    stroke-dasharray: 80.53768920898438px;
  }

  100% {
    stroke-dashoffset: 161.07537841796875px;
    stroke-dasharray: 80.53768920898438px;
  }
}

@-webkit-keyframes animate-svg-fill-13 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(0, 0, 0);
  }
}

@keyframes animate-svg-fill-13 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(0, 0, 0);
  }
}

.sub_title_svg-13 {
  -webkit-animation: animate-svg-stroke-13 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.44s both,
                       animate-svg-fill-13 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
          animation: animate-svg-stroke-13 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.44s both,
               animate-svg-fill-13 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
}

@-webkit-keyframes animate-svg-stroke-14 {
  0% {
    stroke-dashoffset: 80.9405517578125px;
    stroke-dasharray: 80.9405517578125px;
  }

  100% {
    stroke-dashoffset: 161.881103515625px;
    stroke-dasharray: 80.9405517578125px;
  }
}

@keyframes animate-svg-stroke-14 {
  0% {
    stroke-dashoffset: 80.9405517578125px;
    stroke-dasharray: 80.9405517578125px;
  }

  100% {
    stroke-dashoffset: 161.881103515625px;
    stroke-dasharray: 80.9405517578125px;
  }
}

@-webkit-keyframes animate-svg-fill-14 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(0, 0, 0);
  }
}

@keyframes animate-svg-fill-14 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(0, 0, 0);
  }
}

.sub_title_svg-14 {
  -webkit-animation: animate-svg-stroke-14 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.56s both,
                       animate-svg-fill-14 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.1s both;
          animation: animate-svg-stroke-14 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.56s both,
               animate-svg-fill-14 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.1s both;
}

@-webkit-keyframes animate-svg-stroke-15 {
  0% {
    stroke-dashoffset: 60.84346008300781px;
    stroke-dasharray: 60.84346008300781px;
  }

  100% {
    stroke-dashoffset: 121.68692016601562px;
    stroke-dasharray: 60.84346008300781px;
  }
}

@keyframes animate-svg-stroke-15 {
  0% {
    stroke-dashoffset: 60.84346008300781px;
    stroke-dasharray: 60.84346008300781px;
  }

  100% {
    stroke-dashoffset: 121.68692016601562px;
    stroke-dasharray: 60.84346008300781px;
  }
}

@-webkit-keyframes animate-svg-fill-15 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(0, 0, 0);
  }
}

@keyframes animate-svg-fill-15 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(0, 0, 0);
  }
}

.sub_title_svg-15 {
  -webkit-animation: animate-svg-stroke-15 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.68s both,
                       animate-svg-fill-15 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.2s both;
          animation: animate-svg-stroke-15 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.68s both,
               animate-svg-fill-15 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.2s both;
}

@-webkit-keyframes animate-svg-stroke-16 {
  0% {
    stroke-dashoffset: 159.17198181152344px;
    stroke-dasharray: 159.17198181152344px;
  }

  100% {
    stroke-dashoffset: 318.3439636230469px;
    stroke-dasharray: 159.17198181152344px;
  }
}

@keyframes animate-svg-stroke-16 {
  0% {
    stroke-dashoffset: 159.17198181152344px;
    stroke-dasharray: 159.17198181152344px;
  }

  100% {
    stroke-dashoffset: 318.3439636230469px;
    stroke-dasharray: 159.17198181152344px;
  }
}

@-webkit-keyframes animate-svg-fill-16 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(0, 0, 0);
  }
}

@keyframes animate-svg-fill-16 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(0, 0, 0);
  }
}

.sub_title_svg-16 {
  -webkit-animation: animate-svg-stroke-16 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7999999999999998s both,
                       animate-svg-fill-16 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.3s both;
          animation: animate-svg-stroke-16 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7999999999999998s both,
               animate-svg-fill-16 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.3s both;
}

@-webkit-keyframes animate-svg-stroke-17 {
  0% {
    stroke-dashoffset: 178.00071716308594px;
    stroke-dasharray: 178.00071716308594px;
  }

  100% {
    stroke-dashoffset: 356.0014343261719px;
    stroke-dasharray: 178.00071716308594px;
  }
}

@keyframes animate-svg-stroke-17 {
  0% {
    stroke-dashoffset: 178.00071716308594px;
    stroke-dasharray: 178.00071716308594px;
  }

  100% {
    stroke-dashoffset: 356.0014343261719px;
    stroke-dasharray: 178.00071716308594px;
  }
}

@-webkit-keyframes animate-svg-fill-17 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(0, 0, 0);
  }
}

@keyframes animate-svg-fill-17 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(0, 0, 0);
  }
}

.sub_title_svg-17 {
  -webkit-animation: animate-svg-stroke-17 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.92s both,
                       animate-svg-fill-17 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.4000000000000004s both;
          animation: animate-svg-stroke-17 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.92s both,
               animate-svg-fill-17 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.4000000000000004s both;
}

@-webkit-keyframes animate-svg-stroke-18 {
  0% {
    stroke-dashoffset: 159.17205810546875px;
    stroke-dasharray: 159.17205810546875px;
  }

  100% {
    stroke-dashoffset: 318.3441162109375px;
    stroke-dasharray: 159.17205810546875px;
  }
}

@keyframes animate-svg-stroke-18 {
  0% {
    stroke-dashoffset: 159.17205810546875px;
    stroke-dasharray: 159.17205810546875px;
  }

  100% {
    stroke-dashoffset: 318.3441162109375px;
    stroke-dasharray: 159.17205810546875px;
  }
}

@-webkit-keyframes animate-svg-fill-18 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(0, 0, 0);
  }
}

@keyframes animate-svg-fill-18 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(0, 0, 0);
  }
}

.sub_title_svg-18 {
  -webkit-animation: animate-svg-stroke-18 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.04s both,
                       animate-svg-fill-18 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.5s both;
          animation: animate-svg-stroke-18 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.04s both,
               animate-svg-fill-18 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.5s both;
}

@-webkit-keyframes animate-svg-stroke-19 {
  0% {
    stroke-dashoffset: 173.06675720214844px;
    stroke-dasharray: 173.06675720214844px;
  }

  100% {
    stroke-dashoffset: 346.1335144042969px;
    stroke-dasharray: 173.06675720214844px;
  }
}

@keyframes animate-svg-stroke-19 {
  0% {
    stroke-dashoffset: 173.06675720214844px;
    stroke-dasharray: 173.06675720214844px;
  }

  100% {
    stroke-dashoffset: 346.1335144042969px;
    stroke-dasharray: 173.06675720214844px;
  }
}

@-webkit-keyframes animate-svg-fill-19 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(0, 0, 0);
  }
}

@keyframes animate-svg-fill-19 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(0, 0, 0);
  }
}

.sub_title_svg-19 {
  -webkit-animation: animate-svg-stroke-19 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.16s both,
                       animate-svg-fill-19 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.6s both;
          animation: animate-svg-stroke-19 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.16s both,
               animate-svg-fill-19 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.6s both;
}

@-webkit-keyframes animate-svg-stroke-20 {
  0% {
    stroke-dashoffset: 190.4600067138672px;
    stroke-dasharray: 190.4600067138672px;
  }

  100% {
    stroke-dashoffset: 380.9200134277344px;
    stroke-dasharray: 190.4600067138672px;
  }
}

@keyframes animate-svg-stroke-20 {
  0% {
    stroke-dashoffset: 190.4600067138672px;
    stroke-dasharray: 190.4600067138672px;
  }

  100% {
    stroke-dashoffset: 380.9200134277344px;
    stroke-dasharray: 190.4600067138672px;
  }
}

.sub_title_svg-20 {
  -webkit-animation: animate-svg-stroke-20 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.28s both,
                       animate-svg-fill-20 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.7s both;
          animation: animate-svg-stroke-20 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.28s both,
               animate-svg-fill-20 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.7s both;
}

@-webkit-keyframes animate-svg-stroke-21 {
  0% {
    stroke-dashoffset: 144.13999938964844px;
    stroke-dasharray: 144.13999938964844px;
  }

  100% {
    stroke-dashoffset: 288.2799987792969px;
    stroke-dasharray: 144.13999938964844px;
  }
}

@keyframes animate-svg-stroke-21 {
  0% {
    stroke-dashoffset: 144.13999938964844px;
    stroke-dasharray: 144.13999938964844px;
  }

  100% {
    stroke-dashoffset: 288.2799987792969px;
    stroke-dasharray: 144.13999938964844px;
  }
}

.sub_title_svg-21 {
  -webkit-animation: animate-svg-stroke-21 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.4s both,
                       animate-svg-fill-21 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.8s both;
          animation: animate-svg-stroke-21 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.4s both,
               animate-svg-fill-21 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.8s both;
}

@-webkit-keyframes animate-svg-stroke-22 {
  0% {
    stroke-dashoffset: 144.13999938964844px;
    stroke-dasharray: 144.13999938964844px;
  }

  100% {
    stroke-dashoffset: 288.2799987792969px;
    stroke-dasharray: 144.13999938964844px;
  }
}

@keyframes animate-svg-stroke-22 {
  0% {
    stroke-dashoffset: 144.13999938964844px;
    stroke-dasharray: 144.13999938964844px;
  }

  100% {
    stroke-dashoffset: 288.2799987792969px;
    stroke-dasharray: 144.13999938964844px;
  }
}

.sub_title_svg-22 {
  -webkit-animation: animate-svg-stroke-22 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.52s both,
                       animate-svg-fill-22 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.9000000000000004s both;
          animation: animate-svg-stroke-22 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.52s both,
               animate-svg-fill-22 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.9000000000000004s both;
}
