@charset "utf-8";
/* CSS Document */
/* =================================
  base set
================================= */
body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100vh;
  font-family: "Noto Serif JP", serif;
  scroll-behavior: smooth;
  background-color: #FFFFFF;
  color: #6f8581;
}

.noto-serif-jp-<uniquifier> {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
h3 {
  font-size: 1.5em;
}
.bold {
  font-weight: bold;
}
.center {
  text-align: center!important;
}
.left {
	text-align: left!important;
}
.right {
	text-align: right!important;
}
/* =================================
  head set
================================= */
.main-visual {
  position: relative;
  width: 100%;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.main-visual video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* =================================
   bland set
================================= */
.brand-message {
    writing-mode: vertical-rl;
    max-width: 90vw; /* 横幅をもっと広く使う */
    height: 85vh; /* 高さも少し大きめに */
    padding: 80px; /* さらに余白を確保 */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-rl; /* 縦書き（右から左） */
    text-orientation: upright; /* 文字を正立させる */
}

.brand-title,
.message {
    font-weight: normal;
  position: relative;
  font-size: 24px;
  opacity: 0; /* 初めは透明 */
  visibility: hidden; /* 初めは完全に非表示 */
}
.message, .product {
    margin-bottom: 60px; /* 要素間の余白をさらに広げる */
}

.product-title {
    font-size: 22px; /* 少し大きく */
    font-weight: normal;
    margin-bottom: 15px;
}

.message-text, .product-text {
    font-size: 0.7em; /* 読みやすいサイズに */
    margin: 0;
    text-align: justify;
	line-height: 4em;
}
.brand-title.show {
  opacity: 1;
  visibility: visible;
  transition: opacity 1s ease-out; /* タイトルはゆっくりフェードイン */
}

.message.show {
  opacity: 1;
  visibility: visible;
  transition: opacity 1s ease-out 0.5s; /* 0.5秒遅れてフェードイン */
}
@keyframes fadeInFromBottom {
  to {
    opacity: 1; /* アニメーション終了時に完全に表示 */
    transform: translateY(0); /* アニメーション終了時の位置 */
  }
}
@keyframes drawLine {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes drawLineReverse {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}


/* =================================
   story set
================================= */
.story-section {
    width: 100%;
    min-height: 750px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.story-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    flex-grow: 1;
    position: relative;
    margin: 0 0 300px;
}

.story-container.reverse {
    flex-direction: row-reverse; /* 逆配置 */
}

.image-area {
    width: 50%;
    height: 750px;
    background-size: cover;
    background-position: center;
    background-color: #ddd;
}

.image-1 { background-image: url("images/content01.jpg"); }
.image-2 { background-image: url("images/content02.jpg"); }
.image-3 { background-image: url("images/content03.jpg"); }

.text-area {
    width: 400px;
    padding: 0 50px;
    min-height: 750px;
    position: relative;
}

/* **縦書きスタイル** */
.content {
    position: absolute;
    bottom: 0%;
    left: 50%;
    transform: translate(-50%, 0);
    min-width: 320px;
    writing-mode: vertical-rl; /* 縦書き */
    text-orientation: upright; /* 文字を正立させる */
}

/* **タイトルのスタイル** */
.title {
    text-align: start;
    margin-bottom: 20px;
}

.content p {
    font-size: 16px;
    line-height: 4em;
    text-align: start;	
}

.title-main {
    font-size: 1.5em;
    font-weight: 500;
    margin-bottom: 20px;
}

.title-sub {
    font-size: 1.4em;
    margin-bottom: 20px;
    position: relative; /* 疑似要素を相対位置に */
    display: inline-block; /* テキストの幅に合わせる */
}
.title-sub::after {
    content: ""; 
    position: absolute;
    left: 50%; /* テキストの中央に配置 */
    bottom: -110%; /* 少し下にずらす（調整可能） */
    width: 1px; /* 縦線の幅 */
    height: 100%; /* 縦線の長さ（変更可） */
    background-color: #6f8581; /* ラインの色（変更可） */
    transform: translateX(-50%); /* 中央揃え */
	width: 0.5px;
}

/* 1024px以下の調整 */
@media (max-width: 1024px) {
    .story-container {
        display: flex;
        flex-direction: column; /* 縦並び */
        align-items: center;
        justify-content: center; /* これで縦中央 */
		margin-bottom: 0px;
    }

    .story-container.reverse {
        flex-direction: column; /* 逆配置も縦並び */
    }

    .image-area {
        width: 100%;
		height: auto;
        min-height: 250px;
        background-size: cover;
        background-position: center;
    }

    .text-area {
        width: 80%;
        padding: 150px 20px;
        background-color: #FFFFFF;
        margin-top: -50px; /* ちょっと画像にかぶせる */
        display: flex;
        align-items: center; /* 縦中央 */
        justify-content: center; /* 横中央 */
		min-height: auto;
    }
    .title-main,
    .title-sub {
        text-align: center;
    }
.content {
    position: static;
    transform: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center; /* 必要なら縦方向の中央寄せ */
    text-align: center; /* テキストを中央寄せ */
}
	.content p {
		line-height: 2em!important;
	}
}

/* =================================
   New Product Section
================================= */
.newproduct {
	width: 100%;
    background-color: #e5e5e5;
    padding: 100px 0;
    text-align: center;
    position: relative;
}
.newpro_wrap {
	max-width: 1920px;
	margin: 0 auto;
}
.newproduct-title {
    margin-bottom: 10%;
}

/* セクション切り替わりの丸いオブジェ */
.newproduct-title::before {
    content: "";
    position: absolute;
    top: -15px;
    left: 50%;
    width: 30px;
    height: 30px;
    background-color: #6f8581;
    border-radius: 50%;
    transform: translateX(-50%);
}

/* 90vw の親要素 */
.newproduct-container {
    width: 100%;
	min-height: 100vh;
	position: relative;
    margin: 10% auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 画像エリア */
.image-wrapper {
    position: relative;
    width: 60%;
	max-width: 1400px;
    padding: 0 20%;
    margin-bottom: 50px;
}

/* メイン画像 */
.main-image {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease-in-out;
}

/* ホバーで拡大 */
.main-image:hover {
    transform: scale(1.03);
}

/* サブ画像 */
.sub-image {
    position: absolute;
    object-fit: cover;
    border-radius: 10px;
}

/* 1枚目のサブ画像（左下） */
.sub1 {
    width: 15%;
    aspect-ratio: 1/1;
    left: 10%;
    bottom: -20%;
}

/* 2枚目のサブ画像（1枚目の右下） */
.sub2 {
    width: 7.5%;
    aspect-ratio: 1/1;
    left: 25%;
    bottom: -40%;
}

/* 回転テキスト */
.rotated-text {
    position: absolute;
    top: 100px;
    left: 76%;
    font-size: 0.7em;
    transform: rotate(90deg);
    color: #6F8581;
    white-space: nowrap;
}

/* タイトルエリア（要素1） */
.product-title-area {
    width: 80%;
}

/* タイトルボックス（白透過背景あり） */
.title-box {
	position: absolute;
	top: 30px;
	left: 0;
	width: 25%;
    background: rgba(255, 255, 255, 0.8);
    padding: 20px 10px;
}

/* タイトル */
.product-header {
    display: flex;
    justify-content: space-between;
    font-size: clamp(8px, 6vw, 12px); /* 16px以上、最大48px、通常は4vw */
    color: #6F8581;
    font-weight: 100;
	margin-bottom: 10px;
}

/* 罫線 */
.product-underline {
    width: 100%;
    height: 0.5px;
    background-color: #6F8581;
    margin: 10px 0 0;
}

/* 説明エリア（要素2） */
.product-description-area {
    display: flex;
    justify-content: flex-end; /* 右端に寄せる */
    align-items: flex-end; /* 下端に寄せる */
    position: relative;
    width: 100%; /* 横幅を親要素いっぱいに */
    margin-top: -10%; /* メイン画像と相対的に近づける */
}

/* 説明ボックス（白透過背景あり） */
.description-box {
    width: 40%;
    background: rgba(255, 255, 255, 0.8);
    padding: 40px;
}
.description-text {
	text-align: left;
	line-height: 2.4em;
	font-size: clamp(12px, 3vw, 18px); /* 16px以上、最大48px、通常は4vw */
}

/* メインタイトル */
.main-title {
    font-size: clamp(24px, 4vw, 36px); /* 16px以上、最大48px、通常は4vw */
    font-weight: normal;
    color: #6F8581;
	text-align: left;
	margin-bottom: 25px;
}

/* 説明文 */
.description-header {
	font-size: clamp(16px, 3vw, 24px); /* 16px以上、最大48px、通常は4vw */
    font-weight: normal;
    color: #6F8581;
	text-align: left;
}

/* 購入リンク（右寄せ＆四角形の淵） */
.purchase-link {
    display: inline-block;
    padding: 20px 30px;
    color: #6F8581;
    text-decoration: none;
    border: 1px solid #6F8581; /* 枠線を追加 */
    border-radius: 0; /* 四角形にする */
    transition: background 0.3s, color 0.3s;
    text-align: right;
	font-size: 1.5em;
}

/* 購入リンクの親要素（右寄せ） */
.purchase-container {
    text-align: right;
    margin-top: 20px;
}

/* ホバー時に色反転 */
.purchase-link:hover {
    background: #6F8581;
    color: #fff;
}

/* 2個目のセクション用（reverse クラス） */

.newproduct-container.reverse {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%; /* 横幅を親要素いっぱいに */
    min-height: 1500px; /* 1個目と同じ高さを適用 */
}
/* 2個目（reverse クラス）のサブ画像を反転 */
.newproduct-container.reverse .sub1 {
    left: auto;
    right: 10%; /* 1個目の `left: -10%` を `right` に変更 */
    bottom: -30%;
}

.newproduct-container.reverse .sub2 {
    left: auto;
    right: 25%; /* 1個目の `left: 20%` を `right` に変更 */
    bottom: -50%;
}

/* タイトルエリアを右側へ移動 */
.newproduct-container.reverse .product-title-area {
    text-align: right;
    right: 0;
    left: auto;
}

/* リバース時（左下に配置） */
.newproduct-container.reverse .product-description-area {
    justify-content: flex-start; /* 左寄せ */
    transform: translateY(-85%); /* ここでしっかり適用 */
}

/* リバース時の `.description-box` を左に移動 */
.newproduct-container.reverse .description-box {
    margin-left: 0; /* 余計なマージンを削除 */
    margin-right: auto; /* 右側の余白を埋める */
}

/* 説明ボックス（左寄せにする） */
.newproduct-container.reverse .description-box {
    right: auto;
    left: 0;
}
/* 2個目（reverse クラス）の回転テキストを反転 */
.newproduct-container.reverse .rotated-text {
    right: auto;
    left: -20px; /* 右端ではなく左端に配置 */
}
@media (max-width: 1024px) {
  /* .title-box 内の罫線（product-underline）とサブ画像を非表示 */
  .title-box .product-underline,
  .title-box .sub-image {
    display: none !important;
  }

  /* sub1 と sub2 を両方非表示 */
  .sub1,
  .sub2 {
    display: none;
  }

  .image-wrapper {
    width: 90%;
    padding: 0;
    margin: 0 auto;
  }

  .product-header { margin: 0; }

  .newproduct-container {
    margin: 0 auto !important;
    width: 100%;
    flex-direction: column;
    align-items: center;
    min-height: auto;
  }

  .product-description-area {
    justify-content: center;
    text-align: center;
    margin: 0 auto;
    width: 90%;
  }

  .description-box {
    width: 100%;
    margin: 0 auto 100px;
  }

  .purchase-container { text-align: center; }

  .newproduct-container.reverse {
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin: 0 auto;
    padding: 0;
    min-height: auto;
  }

  .newproduct-container.reverse .image-wrapper,
  .newproduct-container.reverse .description-box {
    width: 90%;
    margin: 0 auto;
  }

  .newproduct-container.reverse .product-description-area {
    transform: translateY(0);
    margin-top: 0;
  }
}



/* =================================
   footer set
================================= */
.footer {
  background-color: #6f8581; 
  color: white;
  padding: 40px 10%;
  font-size: 14px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px 0;
}

.footer-logo img {
  max-width: 150px;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
}
.footer-nav a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s;
}
.footer-nav a:hover {
  opacity: 0.7;
}

.footer-social {
  display: flex;
  gap: 15px;
}
.footer-social a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: opacity 0.3s;
}
.footer-social a:hover {
  opacity: 0.7;
}

.footer-bottom {
  text-align: center;
  font-size: 12px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
}

@media screen and (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .footer-nav ul {
    flex-direction: column;
    gap: 10px;
  }
  .footer-social {
    justify-content: center;
  }
}
/* =================================
   mobile set
================================= */
@media (max-width: 768px) {

  .netshop_btn_text {
    margin: 0;
    color: #FFFFFF;
  }
  .main-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100dvh;
  }
  .main-visual::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); 
    z-index: 1;
  }
	.brand-message {
		width: 90%;
		padding: 200px 0;
		margin: 0 auto;
	}
	.message-text {
		line-height: 2em;
	}
}
/* =================================
   loading animation set
================================= */
.loading-screen {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: #85a29c;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 1s ease-out;
}
.loading-screen.hide {
  opacity: 0;
  pointer-events: none;
}
.wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  color: #FFFFFF;
}
.loading-logo {
  width: 150px;
  height: auto;
  position: absolute;
  top: -80px;
}
.circle-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #fff;
  animation: bounce 0.5s alternate infinite ease;
}
.circle:nth-child(2) {
  animation-delay: 0.2s;
}
.circle:nth-child(3) {
  animation-delay: 0.4s;
}
.shadow-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.shadow {
  width: 20px;
  height: 4px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  filter: blur(1px);
  animation: shadow-bounce 0.5s alternate infinite ease;
}
.shadow:nth-child(2) {
  animation-delay: 0.2s;
}
.shadow:nth-child(3) {
  animation-delay: 0.4s;
}
.wrapper span {
  font-family: 'Lato', sans-serif;
  font-size: 20px;
  letter-spacing: 5px;
  color: #fff;
  text-align: center;
  margin-top: 10px;
}
@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-20px);
  }
}
@keyframes shadow-bounce {
  0% {
    transform: scaleX(1.5);
    opacity: 0.7;
  }
  100% {
    transform: scaleX(0.8);
    opacity: 0.4;
  }
}
.pi {
  background-color: #D8A7A7;
}
.gr {
  background-color: #A3C8C3;
}
.or {
  background-color: #E09D56;
}
/* =================================
   car btn animation
================================= */
.map-play {
  position: fixed;
  top: 40px;
  right: 40px;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  cursor: pointer;
  opacity: .9;
  -webkit-transition: all .5s ease-out;
  -o-transition: all .5s ease-out;
  transition: all .5s ease-out;
  width: 80px;
  height: 80px;
  z-index: 9000;
  background-color: #00a1b8;
  border-radius: 40px;
}
.map-play .cls-2 {
  fill: #ffffff;
  -webkit-animation: rotating 24s linear infinite;
  animation: rotating 24s linear infinite;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}
@-webkit-keyframes rotating {
  from {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }

  to {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

@keyframes rotating {
  from {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }

  to {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
.netshop_btn_text {
  margin: 0;
  color: #00a1b8;
}
/*------ scroll Down ------*/
.netshop_btn {
  transition: 0.3s all;
}
.netshop_btn:hover {
  opacity: 0.7;
  transform: scale(1.2, 1.2);
  transition: 0.3s all;
}
/* =================================
   PageTopbtn
================================= */
.pagetop {
  z-index: 999;
  position: fixed;
  bottom: 40px;
  right: 40px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out, filter 0.5s ease-in-out;
}
.pagetop.show {
  opacity: 1;
  transform: translateY(0);
}
.pagetop:hover {
  opacity: 0.8;
  transform: scale(1.1);
  filter: drop-shadow(0px 5px 10px rgba(0, 0, 0, 0.2));
}
/* =================================
   mouse scroll animation
================================= */
.mouse_wrap {
  position: absolute;
  bottom: 5%; 
  left: 50%;
  transform: translateX(-50%);
  z-index: 999; 
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.mouse {
  width: 26px;
  height: 44px;
  position: relative;
  background: #4e5559 linear-gradient(transparent 0%, transparent 50%, #ffffff 50%, #ffffff 100%);
  background-size: 100% 200%;
  border-radius: 100px;
  animation: colorSlide 5s linear infinite, nudgeMouse 5s ease-out infinite;
}
.mouse:before, .mouse:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
.mouse:before {
  width: 23px;
  height: 41px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 100px;
}
.mouse:after {
  background-color: #ffffff;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  animation: trackBallSlide 5s linear infinite;
}
.text {
  margin-top: 20px;
  font-family: Cabin;
  letter-spacing: 4px;
  color: #fff;
  text-indent: 4px;
  animation: colorText 5s ease-out infinite, nudgeText 5s ease-out infinite;
  font-size: 8px;	
}
/* Animations */
@keyframes colorSlide {
  0% {
    background-position: 0% 100%;
  }
  20% {
    background-position: 0% 0%;
  }
  21% {
    background-color: #4e5559;
  }
  29.99% {
    background-color: #ffffff;
    background-position: 0% 0%;
  }
  30% {
    background-color: #4e5559;
    background-position: 0% 100%;
  }
  50% {
    background-position: 0% 0%;
  }
  51% {
    background-color: #4e5559;
  }
  59% {
    background-color: #ffffff;
    background-position: 0% 0%;
  }
  60% {
    background-color: #4e5559;
    background-position: 0% 100%;
  }
  80% {
    background-position: 0% 0%;
  }
  81% {
    background-color: #4e5559;
  }
  90%, 100% {
    background-color: #ffffff;
  }
}
@keyframes colorText {
  21% {
    color: #4e5559;
  }
  30% {
    color: #ffffff;
  }
  51% {
    color: #4e5559;
  }
  60% {
    color: #ffffff;
  }
  81% {
    color: #4e5559;
  }
  90% {
    color: #ffffff;
  }
}
@keyframes trackBallSlide {
  0% {
    opacity: 1;
    transform: scale(1) translateY(-20px);
  }
  6% {
    opacity: 1;
    transform: scale(0.9) translateY(5px);
  }
  14% {
    opacity: 0;
    transform: scale(0.4) translateY(40px);
  }
  15%, 19% {
    opacity: 0;
    transform: scale(0.4) translateY(-20px);
  }
  28%, 29.99% {
    opacity: 1;
    transform: scale(1) translateY(-20px);
  }
  30% {
    opacity: 1;
    transform: scale(1) translateY(-20px);
  }
  36% {
    opacity: 1;
    transform: scale(0.9) translateY(5px);
  }
  44% {
    opacity: 0;
    transform: scale(0.4) translateY(40px);
  }
  45%, 49% {
    opacity: 0;
    transform: scale(0.4) translateY(-20px);
  }
  58%, 59.99% {
    opacity: 1;
    transform: scale(1) translateY(-20px);
  }
  60% {
    opacity: 1;
    transform: scale(0.9) translateY(-20px);
  }
  66% {
    opacity: 1;
    transform: scale(0.9) translateY(5px);
  }
  74% {
    opacity: 0;
    transform: scale(0.4) translateY(40px);
  }
  75%, 79% {
    opacity: 0;
    transform: scale(0.4) translateY(-20px);
  }
  88%, 100% {
    opacity: 1;
    transform: scale(1) translateY(-20px);
  }
}
@media (max-width: 768px) {
  .mouse {
    width: 26px; 
    height: 44px;
  }
  .mouse:before {
    width: 23px;
    height: 41px;
  }
  .mouse:after {
    width: 5px;
    height: 5px;
  }
  .text {
    display: none; 
  }
}
/* =================================
   SVG
================================= */
.svg-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw; 
}
.logo-svg {
  width: 20%;
  min-width: 300px;
  height: auto;
  z-index: 9998;
}
@media (max-width: 768px) {
  .logo-svg {
    width: 300px;
  }
}
svg .svg-elem-1 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s;
  transition: fill 0.7s ease-in-out 0.8s;
}
svg.active .svg-elem-1 {
  fill: rgb(255, 255, 255);
}
svg .svg-elem-2 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s;
}
svg.active .svg-elem-2 {
  fill: rgb(255, 255, 255);
}
svg .svg-elem-3 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1s;
}
svg.active .svg-elem-3 {
  fill: rgb(255, 255, 255);
}
svg .svg-elem-4 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s;
}
svg.active .svg-elem-4 {
  fill: rgb(255, 255, 255);
}
svg .svg-elem-5 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2000000000000002s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2000000000000002s;
}
svg.active .svg-elem-5 {
  fill: rgb(255, 255, 255);
}
svg .svg-elem-6 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s;
}
svg.active .svg-elem-6 {
  fill: rgb(255, 255, 255);
}
svg .svg-elem-7 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4000000000000001s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4000000000000001s;
}
svg.active .svg-elem-7 {
  fill: rgb(255, 255, 255);
}
svg .svg-elem-8 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s;
}
svg.active .svg-elem-8 {
  fill: rgb(255, 255, 255);
}
svg .svg-elem-9 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s;
}
svg.active .svg-elem-9 {
  fill: rgb(255, 255, 255);
}
svg .svg-elem-10 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7000000000000002s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7000000000000002s;
}
svg.active .svg-elem-10 {
  fill: rgb(255, 255, 255);
}
svg .svg-elem-11 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.8s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.8s;
}
svg.active .svg-elem-11 {
  fill: rgb(255, 255, 255);
}
svg .svg-elem-12 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.9000000000000001s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.9000000000000001s;
}
svg.active .svg-elem-12 {
  fill: rgb(255, 255, 255);
}
svg .svg-elem-13 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2s;
}
svg.active .svg-elem-13 {
  fill: rgb(255, 255, 255);
}
svg .svg-elem-14 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.1s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.1s;
}
svg.active .svg-elem-14 {
  fill: rgb(255, 255, 255);
}
svg .svg-elem-15 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.2s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.2s;
}
svg.active .svg-elem-15 {
  fill: rgb(255, 255, 255);
}
svg .svg-elem-16 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.3s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.3s;
}
svg.active .svg-elem-16 {
  fill: rgb(255, 255, 255);
}
svg .svg-elem-17 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.4000000000000004s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.4000000000000004s;
}
svg.active .svg-elem-17 {
  fill: rgb(255, 255, 255);
}
svg .svg-elem-18 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.5s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.5s;
}
svg.active .svg-elem-18 {
  fill: rgb(255, 255, 255);
}
svg .svg-elem-19 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.6s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.6s;
}
svg.active .svg-elem-19 {
  fill: rgb(255, 255, 255);
}
svg .svg-elem-20 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.7s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.7s;
}
svg.active .svg-elem-20 {
  fill: rgb(255, 255, 255);
}
svg .svg-elem-21 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.8s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.8s;
}
svg.active .svg-elem-21 {
  fill: rgb(255, 255, 255);
}
svg .svg-elem-22 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.9000000000000004s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.9000000000000004s;
}
svg.active .svg-elem-22 {
  fill: rgb(255, 255, 255);
}
svg .svg-elem-23 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3s;
}
svg.active .svg-elem-23 {
  fill: rgb(35, 24, 21);
}
svg .svg-elem-24 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.1000000000000005s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.1000000000000005s;
}
svg.active .svg-elem-24 {
  fill: rgb(35, 24, 21);
}
svg .svg-elem-25 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.2s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.2s;
}
svg.active .svg-elem-25 {
  fill: rgb(35, 24, 21);
}
svg .svg-elem-26 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.3s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.3s;
}
svg.active .svg-elem-26 {
  fill: rgb(35, 24, 21);
}
svg .svg-elem-27 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.4000000000000004s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.4000000000000004s;
}
svg.active .svg-elem-27 {
  fill: rgb(35, 24, 21);
}
svg .svg-elem-28 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.5s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.5s;
}
svg.active .svg-elem-28 {
  fill: rgb(35, 24, 21);
}
svg .svg-elem-29 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.6000000000000005s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.6000000000000005s;
}
svg.active .svg-elem-29 {
  fill: rgb(35, 24, 21);
}
svg .svg-elem-30 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.7s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.7s;
}
svg.active .svg-elem-30 {
  fill: rgb(35, 24, 21);
}
svg .svg-elem-31 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.8s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.8s;
}
svg.active .svg-elem-31 {
  fill: rgb(35, 24, 21);
}
svg .svg-elem-32 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.9000000000000004s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.9000000000000004s;
}
svg.active .svg-elem-32 {
  fill: rgb(35, 24, 21);
}
svg .svg-elem-33 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4s;
}
svg.active .svg-elem-33 {
  fill: rgb(35, 24, 21);
}
svg .svg-elem-34 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.1000000000000005s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.1000000000000005s;
}
svg.active .svg-elem-34 {
  fill: rgb(35, 24, 21);
}
svg .svg-elem-35 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.2s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.2s;
}
svg.active .svg-elem-35 {
  fill: rgb(35, 24, 21);
}
svg .svg-elem-36 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.3s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.3s;
}
svg.active .svg-elem-36 {
  fill: rgb(35, 24, 21);
}
svg .svg-elem-37 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.4s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.4s;
}
svg.active .svg-elem-37 {
  fill: rgb(35, 24, 21);
}
svg .svg-elem-38 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.5s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.5s;
}
svg.active .svg-elem-38 {
  fill: rgb(35, 24, 21);
}
svg .svg-elem-39 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.6000000000000005s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.6000000000000005s;
}
svg.active .svg-elem-39 {
  fill: rgb(35, 24, 21);
}
svg .svg-elem-40 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.7s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.7s;
}
svg.active .svg-elem-40 {
  fill: rgb(255, 255, 255);
}
svg .svg-elem-41 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.8s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.8s;
}
svg.active .svg-elem-41 {
  fill: rgb(255, 255, 255);
}
svg .svg-elem-42 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.9s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.9s;
}
svg.active .svg-elem-42 {
  fill: rgb(255, 255, 255);
}
svg .svg-elem-43 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 5s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 5s;
}
svg.active .svg-elem-43 {
  fill: rgb(255, 255, 255);
}
svg .svg-elem-44 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 5.1s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 5.1s;
}
svg.active .svg-elem-44 {
  fill: rgb(255, 255, 255);
}
svg .svg-elem-45 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 5.2s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 5.2s;
}
svg.active .svg-elem-45 {
  fill: rgb(255, 255, 255);
}
svg .svg-elem-46 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 5.3s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 5.3s;
}
svg.active .svg-elem-46 {
  fill: rgb(255, 255, 255);
}
svg .svg-elem-47 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 5.4s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 5.4s;
}
svg.active .svg-elem-47 {
  fill: rgb(255, 255, 255);
}
svg .svg-elem-48 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 5.5s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 5.5s;
}
svg.active .svg-elem-48 {
  fill: rgb(255, 255, 255);
}
svg .svg-elem-49 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 5.6000000000000005s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 5.6000000000000005s;
}
svg.active .svg-elem-49 {
  fill: rgb(255, 255, 255);
}
svg .svg-elem-50 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 5.7s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 5.7s;
}
svg.active .svg-elem-50 {
  fill: rgb(255, 255, 255);
}
svg .svg-elem-51 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 5.8s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 5.8s;
}
svg.active .svg-elem-51 {
  fill: rgb(255, 255, 255);
}
svg .svg-elem-52 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 5.9s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 5.9s;
}
svg.active .svg-elem-52 {
  fill: rgb(255, 255, 255);
}
svg .svg-elem-53 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 6s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 6s;
}
svg.active .svg-elem-53 {
  fill: rgb(255, 255, 255);
}
svg .svg-elem-54 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 6.1000000000000005s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 6.1000000000000005s;
}
svg.active .svg-elem-54 {
  fill: rgb(255, 255, 255);
}
svg .svg-elem-55 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 6.2s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 6.2s;
}
svg.active .svg-elem-55 {
  fill: rgb(255, 255, 255);
}
svg .svg-elem-56 {
  fill: transparent;
  -webkit-transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 6.3s;
  transition: fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 6.3s;
}
svg.active .svg-elem-56 {
  fill: rgb(255, 255, 255);
}