/* 定義 */
:root {
  /* ベースカラー */
  --base-color: #fff;
  --border-color: #707070;
  --white-color: #f8f8f8;
  --black-color: #1d1b14;
  --red-color: #FE0100;
  
  /* 追加カラー */
  --pure-white: #fff;
  --pure-black: #000;
  --accent-green: #eaeaea;
  
  /* グレー系 */
  --medium-gray: #555555;
  --light-gray: #aaaaaa;
  --lighter-gray: #cccccc;
  --background-light: #f2f2f2;
  --gray-500: #505050;
  
  /* ========================================
   * 🎨 ボタンデザイン切替（超シンプル）
   * ========================================
   * 使い方：使いたい方のコメントを外す
   */
  
  /* 🔲 四角ボタン */
  /* --btn-border-radius: 0px; */
  
  /* 🔘 角丸ボタン */
  --btn-border-radius: 100px;

  /* ========================================
   * 🖼️ 画像角丸切替（超シンプル）
   * ========================================
   * 使い方：使いたい方のコメントを外す
   */
  
  /* 🔲 四角画像 */
  --img-border-radius: 0px;
  
  /* 🔘 角丸画像 */
  /* --img-border-radius: 20px; */
  
  /* ========================================
   * ボタンサイズ設定
   * ========================================
   */
  --btn-width: 252px;                /* ボタンの幅 */
  --btn-height: 59px;                /* ボタンの高さ */
  
  /* 角丸バリエーション */
  --radius-none: 0;                  /* 角なし（四角） */
  --radius-small: 5px;               /* 小さな角丸 */
  --radius-medium: 10px;             /* 中程度の角丸 */
  --radius-large: 200px;             /* 大きな角丸 */
  --radius-circle: 50%;              /* 完全な円 */
  
  /* サイズ */
  --size-small: 100px;               /* 小サイズ（ロゴなど） */
  --size-medium: 252px;              /* 中サイズ（ボタンなど） */
  --size-large: 400px;               /* 大サイズ */
  /* pc最小幅 */
  --pc-width: 1200px;
  /* sp-inner padding */
  --sp-inner-p: 10px;
  /* フォントサイズ */
  --font-size-s: 12px;
  --font-size-m: 16px;
  --font-size-l: 30px;
  --font-size-ll: 40px;
  --font-size-xl: 60px;
  --font-size-2xl: 70px;
  --font-size-3xl: 80px;
  --font-size-4xl: 90px;

  @media (max-width: 960px) {
    /* フォントサイズ */
    --font-size-4xl: 2.3rem;
  }

  @media (max-width: 599px) {
    /* フォントサイズ */
    --font-size-s: 12px;
    --font-size-m: 0.9rem;
    --font-size-l: 1.1rem;
    --font-size-ll: 1.2rem;
    --font-size-xl: 1.4rem;
    --font-size-2xl: 1.8rem;
    --font-size-3xl: 45px;
    --font-size-4xl: 2rem;
  }
}

/* ========================================
 * 🖼️ 画像角丸スタイル（統一設定）
 * ========================================
 */

/* 全てのimgタグに角丸を適用 */
/* img {
  border-radius: var(--img-border-radius);
} */

/* background-imageを持つ要素に角丸を適用 */
.bg-image,
.has-bg-image,
[style*="background-image"] {
  border-radius: var(--img-border-radius);
}

/* 画像コンテナ（背景色がある要素）にも角丸を適用 */
.bg_dark,
.bg-dark,
.image-container,
.img-wrapper,
/* .swiper-slide, */
.page-images {
  border-radius: var(--img-border-radius);
  overflow: hidden; /* 角丸内にコンテンツを収める */
}

/* ヘッダーロゴは角丸の影響を受けない */
.site-title img {
  border-radius: 0;
}

/* 特定のクラスで角丸を無効化したい場合 */
.no-border-radius,
.no-border-radius img {
  border-radius: 0 !important;
}

/* 特定のクラスで強制的に角丸にしたい場合 */
.force-border-radius,
.force-border-radius img {
  border-radius: var(--img-border-radius) !important;
}

/* 基本 */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}
@media screen and (max-width: 599px) {
  html {
    scroll-padding-top: 100px;
  }
}
body {
  margin: 0;
  background: var(--base-color);
  font-family:"Zen Kaku Gothic New", "Noto Sans JP", "Helvetica Neue", Arial,
    "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 400;
  color: var(--black-color);
  box-sizing: border-box;
  overflow-x: hidden;
}
body *{
  box-sizing: inherit;
}
a:hover{
  opacity: 0.7;
}
p {
  margin: 0;
}
hr {
  border-color: var(--black-color);
}
.spdeny {
  display: block;
}
.sponly {
  display: none;
}
.grecaptcha-badge {
  visibility: hidden;
}
@media screen and (max-width: 599px) {
  .sponly {
    display: block;
  }
  .spdeny {
    display: none;
  }
}

/* フォント関連 */
.en-text {
  font-family: "Josefin Sans", serif;
}
.deco-text {
  font-family: "Alex Brush", serif;
  color: var(--accent-green);
}

/* flex関連 */
.flex {
  display: flex;
}
.justify-between {
  justify-content: space-between;
}
.justify-center {
  justify-content: center;
}
.justify-evenly {
  justify-content: space-evenly;
}
.justify-end {
  justify-content: flex-end;
}
.items-center {
  align-items: center;
}
.items-start {
  align-items: flex-start;
}
.flex-wrap {
  flex-wrap: wrap;
}

.flex-column {
  flex-direction: column;
}

.text-center {
  text-align: center;
}
.text-white {
  color: var(--pure-white);
}
.font-xl {
  font-size: var(--font-size-xl);
}
.font-l {
  font-size: var(--font-size-l);
}
.font-m {
  font-size: var(--font-size-m);
}
.font-s {
  font-size: var(--font-size-s);
}

.bg-base {
  background: var(--base-color);
  z-index: -2;
  overflow: hidden;
}

/* ヘッダー */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 60;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  width: 100vw;
  padding: 22px 50px;
  box-sizing: border-box;
}
@media screen and (max-width: 1330px) {
  .header-inner {
      padding: 37px 5%;
      box-sizing: border-box;

  }
}
@media screen and (max-width: 599px) {
  .header-inner {
    padding: 15px 5%;
  }
}
.site-title {
  display: block;
  /* position: fixed; */
  /* top: 37px;
  left: 50px; */
  width: 450px;
  a {
    text-decoration: none;
    display: flex;
    align-items: center;
  }
  img {
    width: 50px;
  }
  span{
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    padding-left: 10px;
  }
}
@media (max-width: 599px) {
  .site-title {
    width: 100%;
    span {
      font-size: 12px;
    }
  }
}
@media (min-width: 600px) and (max-width: 1199px) {

}

/* ハンバーガーメニュー */
.menu-btn {
  display: flex;
  height: 34px;
  width: 40px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
  z-index: 90;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
  content: "";
  display: block;
  height: 1.5px;
  width: 40px;
  background-color: var(--pure-white);
  transition: 0.2s;
  position: absolute;
  z-index: 90;
}

/* .menu-btn.scrolled span,
.menu-btn.scrolled span:before,
.menu-btn.scrolled span:after {
  background-color: var(--pure-black);
} */

.menu-btn span:before {
  bottom: 16px;
}
.menu-btn span:after {
  top: 16px;
}
#menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(
    255,
    255,
    255,
    0
  ); /*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
  background-color: var(--black-color);
}
#menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
  background-color: var(--black-color);
}

@media (max-width: 599px) {
  
  .menu-btn {
    height: 32px;
    width: 30px;
  }
  .menu-btn span,
  .menu-btn span:before,
  .menu-btn span:after {
    width: 25px;
  }
  .menu-btn span:before {
    bottom: 9px;
  }
  .menu-btn span:after {
    top: 9px;
  }
}
@media (min-width: 600px) and (max-width: 1199px) {
  .menu-btn {
    right: 4%;
  }
}

/* ナビゲーション */
.hamburger-menu {
  height: 0;
  position: fixed;
  top: calc(37px - 15px);
  right: calc(50px - 15px);
}
/* ハンバーガーメニューの背景 */
.menu-bg {
  background-color: var(--black-color);
  padding: 15px;
}

@media screen and (max-width: 1330px) {
  .hamburger-menu {
    position: fixed;
    top: calc(37px - 15px);
    right: calc(5% - 15px);
  }
}
@media screen and (max-width: 599px) {
  .hamburger-menu {
    height: 0;
    position: fixed;
    top: calc(15px - 5px);
    right: calc(5% - 5px);
  }
  .menu-bg {
    padding: 5px;
  }
  
}

.glnav {
  position: fixed;
  width: 0px;
  min-height: 100svh;
  right: 0;
  top: 0;
  background: var(--base-color);
  z-index: 80;
  transform: translateX(100%);
  transition: transform 0.4s;
  padding: 2rem 0;
  .btn-area {
    display: flex;
  }

  @media screen and (max-width: 599px) {
    padding: 1rem 0;
    .btn-area {
      flex-direction: column;
    }
  }
}
#menu-btn-check:checked ~ .glnav {
  width: 700px;
  overflow: scroll;
  height: 100vh;
  transform: translateX(0);
  overflow-x: hidden;
  @media screen and (max-width: 800px) {
    width: 100%;
    max-width: 90vw;
  }
  @media screen and (max-width: 599px) {
    width: 100%;
    max-width: 100vw;
  }
}
.bg-nav {
  width: 0;
  filter: opacity(0%);
  transition: filter 0.5s;
}
#menu-btn-check:checked ~ .bg-nav {
  position: fixed;
  width: 100%;
  height: 100%;
  background: var(--black-color);
  filter: opacity(50%);
  z-index: 70;
  transition: filter 0.5s;
  top: 0;
  left: 0;
}
.nav-contents {
  flex-direction: column;
  width: 100%;
  padding: 4rem 3.5rem 10rem;
  box-sizing: border-box;
  a {
    color: var(--black-color);
    text-decoration: none;
  }
  hr {
    width: 100%;
    margin: 3rem 0;
    border-style: solid;
    border-width: 0.5px;
  }
  @media screen and (max-width: 599px) {
    padding: 3rem 1.5rem 6rem;
    .gl-menu {
      gap: 2.5rem !important;
    }
    hr {
      margin: 2rem 0 2.5rem;
    }
    .btn-area {
      gap: 1.5rem;
      margin: 2.5rem 0;
    }
    .btn {
      height: 4.5rem;
      width: 100%;
    }
  }
}
.contents-upper {
  /* flex: 0.6; */
  .gl-menu {
    height: 100%;
    flex-flow: column;
    padding-inline-start: 0;
    gap: 3rem;
    .gl-menu-title {
      font-size: 22px;
      font-weight: bold;
    }
    li {
      flex-grow: 1;
      list-style: none;
      font-size: 14px;
    }
  }
}
.contents-lower {
  /* flex: 0.4; */
  p {
    padding: 0.5rem 0;
    font-size: 13px;
  }
  .btn-area {
    gap: 1rem;
    .btn {
      color: var(--pure-white);
    }
    .btn:last-child {
      background: var(--medium-gray);
    }
    .btn:hover {
      background: var(--white-color);
      color: var(--black-color);
      border: 1px solid var(--black-color);
      opacity: 1;
    }
  }
}

/* ========================================
 * 🎨 CSS変数使用例（上級者向け）
 * ========================================
 */
 
/* カスタム角丸を使いたい場合は上記を以下のように変更可能 */
/* --btn-border-radius: var(--radius-small);   小さな角丸 */
/* --btn-border-radius: var(--radius-medium);  中程度の角丸 */
/* --btn-border-radius: var(--radius-large);   大きな角丸 */
/* --btn-border-radius: var(--radius-circle);  完全な円 */

/* ボタン */
.btn {
  background: var(--red-color);
  color: var(--pure-white);
  border-radius: var(--btn-border-radius);
  font-size: var(--font-size-m);
  cursor: pointer;
  text-decoration: none;
  height: var(--btn-height);
  width: var(--btn-width);

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.btn:hover {
  background: var(--white-color);
  color: var(--black-color);
  border: 1px solid var(--black-color);
  opacity: 1;
}
.btn-clear {
  background: transparent;
  color: white;
  border: 1px solid var(--pure-white);
}

.btn-area {
  margin: 50px 0;
  @media screen and (max-width: 599px) {
    margin: 30px 0;
    justify-content: center;
    text-align: center;
  }
}
.fa-circle-chevron-right {
  padding-left: 1rem;
}

/* コンテナ共通 */
.container {
  width: 100%;
}
.container-inner {
  /* PC用スタイル */
  @media (min-width: 1200px) {
    /* margin: 0 auto; */
    max-width: var(--pc-width);
    min-height: 50vh;
  }
  /* タブレット用スタイル */
  @media (min-width: 600px) and (max-width: 1199px) {
    .sp-inner {
      margin: 0 var(--sp-inner-p);
    }

  }
  @media (max-width: 599px) {
    /* margin: 0 10px; */
    .sp-inner {
      margin: 0 var(--sp-inner-p);
    }
  }
}
/* ファーストビュー */
.firstview.is-loaded::before {
  opacity: 0.9; /* フェードイン後の透明度 */
}

.firstview::before {
  opacity: 0;
  transition: opacity 1.2s linear;
  content: "";
  background-image: url("../images/top/top.webp");
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.firstview.is-loaded::after {
  background-color: rgba(0, 0, 0, 0.3);
}

.firstview::after {
  content: "";
    background-color: rgba(0, 0, 0, 0.0);
    transition: background-color 1.2s linear;

  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* 背景画像の上に配置 */
}
.firstview {
  z-index: 10;
  height: 100vh;
  align-items: center;
  background-color: rgb(255, 255, 255);
  position: relative;
  overflow: hidden;

  .top-title-box {
    font-size: var(--font-size-ll);
    letter-spacing: 0.15rem;
    border: 1px solid var(--pure-white);
    padding: 1rem;
    margin: 0.5rem 0.5rem 2rem;
    width: auto;
    font-weight: bold;
  }
  typewritten-text[paused] .typewritten-text_character::after {
    visibility: hidden;
  }
  > div > span {
    font-size: 1.2rem;
    font-weight: 300;
  }
  .fv-news-area {
    width: 100%;
    background: #152537;
    padding: 2em;
    color: #fff;
    position: absolute;
    bottom: 0;
  }
  .fv-news-area a {
    color: #fff;
  }
  .fv-news-wrap {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
  }
  .fv-news-title {
    font-size: var(--font-size-xl);
    margin: 0;
    font-weight: 600;
    width: 40%;
    height: 50px;
  }
  .fv-news-post {
    width: 60%;
  }
  .fv-news-post .news-link {
    text-decoration: none;
  }
  @media (max-width: 599px) {
    .fv-news-area {
      padding: 1em;
    }
    .fv-news-wrap {
      width: 100%;
      display: block;
    }
    .fv-news-title {
      display: none;
    }
    .fv-news-post {
      width: 100%;
      font-size: 14px;
    }
    .fv-news-post p:last-child {
      display: flex;
      align-items: center;
    }
    .fv-news-post img {
      width: 80%;
    }
    .text-center span {
      font-size: 1rem;
    }
  }
  .massage-list {
    display: flex;
    justify-content: space-between;
    height: 100%;
    position: relative;
  }
  .datetime::before {
    content: '●';
    color: var(--red-color);
    margin-right: 10px;
  }
  .news_title {
    width: 100%;
    padding: 0 30px;
  }
  .massage-list p.icon-link,
  .massage-list p.icon-pdf {
    padding-left: 50px;
  }
  .massage-list p.icon-link::before {
    content: "";
    background-image: url("../images/common/icon-link.svg");
    background-size: cover;
    background-position: center;
    position: absolute;
  }
  .massage-list p.icon-pdf::before {
    content: "";
    background-image: url("../images/common/icon-pdf.svg");
    background-size: cover;
    background-position: center;
    position: absolute;
  }
  .massage-list p.icon-link::before,
  .massage-list p.icon-pdf::before {
    top: 16px;
    left: 111px;
    width: 20px;
    height: 20px;
  }
  @media screen and (max-width: 1330px) {
    .top-title-box {
      font-size: var(--font-size-l);
    }
    > div > span {
      font-size: 1.5rem;
    }
  }
  @media screen and (max-width: 960px) {
    .top-title-box {
      margin: 2rem 15vw;
      padding: 1rem;
    }
    > div > span {
      font-size: 1.5rem;
    }
  }
  @media screen and (max-width: 700px) {
    .top-title-box {
      font-size: 21px;
    }
    > div > span {
      font-size: 1.2rem;
    }
  }
  @media screen and (max-width: 599px) {
    .top-title-box {
      font-size: 18px;
      margin: 2rem 7vw;
    }
    .massage-list p.icon-link::before,
    .massage-list p.icon-pdf::before {
      top: 2px;
      left: 102px;
      width: 20px;
      height: 20px;
    }
  }
}
.swiper {
  width: 600px;
}

/* 共通：全ページ */
.btn i {
  padding-left: 1rem;
}

/* SVGアニメーション */
/* .loading__svg {
  background-color: var(--white-color);
  width: 100vw;
  height: 100vh;
  position: relative;
  z-index: 99;
  #svg__logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 200px;
    height: auto;
  }
}
@media screen and (max-width: 700px) {
  .loading__svg {
    #svg__logo {
      width: 20vw;
      max-width: 150px;
    }
  }
}
@media screen and (max-width: 700px) {
  .loading__svg {
    #svg__logo {
      top: 47%;
      width: 25vw;
      max-width: 100px;
    }
  }
} */

/***************************************************
 * Generated by SVG Artista on 2/21/2025, 1:54:33 PM
 * MIT license (https://opensource.org/licenses/MIT)
 * W. https://svgartista.net
 **************************************************/

@-webkit-keyframes animate-svg-fill-1 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(28, 26, 19);
  }
}

@keyframes animate-svg-fill-1 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(28, 26, 19);
  }
}

.svg-elem-1 {
  -webkit-animation: animate-svg-fill-1 0.7s cubic-bezier(0.47, 0, 0.745, 0.715)
    0.8s both;
  animation: animate-svg-fill-1 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s
    both;
}

@-webkit-keyframes animate-svg-fill-2 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(28, 26, 19);
  }
}

@keyframes animate-svg-fill-2 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(28, 26, 19);
  }
}

.svg-elem-2 {
  -webkit-animation: animate-svg-fill-2 0.7s cubic-bezier(0.47, 0, 0.745, 0.715)
    0.9s both;
  animation: animate-svg-fill-2 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s
    both;
}

@-webkit-keyframes animate-svg-fill-3 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(28, 26, 19);
  }
}

@keyframes animate-svg-fill-3 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(28, 26, 19);
  }
}

.svg-elem-3 {
  -webkit-animation: animate-svg-fill-3 0.7s cubic-bezier(0.47, 0, 0.745, 0.715)
    1s both;
  animation: animate-svg-fill-3 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1s both;
}

@-webkit-keyframes animate-svg-fill-4 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(28, 26, 19);
  }
}

@keyframes animate-svg-fill-4 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(28, 26, 19);
  }
}

.svg-elem-4 {
  -webkit-animation: animate-svg-fill-4 0.7s cubic-bezier(0.47, 0, 0.745, 0.715)
    1.1s both;
  animation: animate-svg-fill-4 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s
    both;
}

@-webkit-keyframes animate-svg-fill-5 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(28, 26, 19);
  }
}

@keyframes animate-svg-fill-5 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(28, 26, 19);
  }
}

.svg-elem-5 {
  -webkit-animation: animate-svg-fill-5 0.7s cubic-bezier(0.47, 0, 0.745, 0.715)
    1.2000000000000002s both;
  animation: animate-svg-fill-5 0.7s cubic-bezier(0.47, 0, 0.745, 0.715)
    1.2000000000000002s both;
}

@-webkit-keyframes animate-svg-fill-6 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(28, 26, 19);
  }
}

@keyframes animate-svg-fill-6 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(28, 26, 19);
  }
}

.svg-elem-6 {
  -webkit-animation: animate-svg-fill-6 0.7s cubic-bezier(0.47, 0, 0.745, 0.715)
    1.3s both;
  animation: animate-svg-fill-6 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s
    both;
}

@-webkit-keyframes animate-svg-fill-7 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(28, 26, 19);
  }
}

@keyframes animate-svg-fill-7 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(28, 26, 19);
  }
}

.svg-elem-7 {
  -webkit-animation: animate-svg-fill-7 0.7s cubic-bezier(0.47, 0, 0.745, 0.715)
    1.4000000000000001s both;
  animation: animate-svg-fill-7 0.7s cubic-bezier(0.47, 0, 0.745, 0.715)
    1.4000000000000001s both;
}

@-webkit-keyframes animate-svg-fill-8 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(28, 26, 19);
  }
}

@keyframes animate-svg-fill-8 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(28, 26, 19);
  }
}

.svg-elem-8 {
  -webkit-animation: animate-svg-fill-8 0.7s cubic-bezier(0.47, 0, 0.745, 0.715)
    1.5s both;
  animation: animate-svg-fill-8 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s
    both;
}

@-webkit-keyframes animate-svg-fill-9 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(28, 26, 19);
  }
}

@keyframes animate-svg-fill-9 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(28, 26, 19);
  }
}

.svg-elem-9 {
  -webkit-animation: animate-svg-fill-9 0.7s cubic-bezier(0.47, 0, 0.745, 0.715)
    1.6s both;
  animation: animate-svg-fill-9 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s
    both;
}

@-webkit-keyframes animate-svg-fill-10 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(28, 26, 19);
  }
}

@keyframes animate-svg-fill-10 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(28, 26, 19);
  }
}

.svg-elem-10 {
  -webkit-animation: animate-svg-fill-10 0.7s
    cubic-bezier(0.47, 0, 0.745, 0.715) 1.7000000000000002s both;
  animation: animate-svg-fill-10 0.7s cubic-bezier(0.47, 0, 0.745, 0.715)
    1.7000000000000002s both;
}
