@charset "UTF-8";


/* ---　---　--- 共通 ---　---　--- */
html, body {
  overflow-x: hidden;
  font-family: 'Noto Sans JP', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff0f3; /* bg-secondary に対応 */
  color: #1f2937;            /* text-gray-800 */
  min-height: 100vh;         /* min-h-screen */
  width: 100%;               /* w-full */
}
/* ---　---　--- 共通終了 ---　---　--- */





/* ---　---　--- header内 ---　---　---*/
header {
  position: fixed;        /* fixed */
  top: 0;                 /* top-0 */
  left: 0;                /* left-0 */
  width: 100%;            /* w-full */
  z-index: 50;            /* z-50 */
  padding: 1rem 0;   /* py-4 px-6 */
  display: flex;          /* flex */
  justify-content: space-between; /* justify-between */
  align-items: center;    /* items-center */
  background-color: #fff0f3; /* bg-secondary */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* shadow-md 相当 */
  
}

.custom-font-title {
  font-family: 'Pacifico', cursive; /* font-['Pacifico'] */
  font-size: 1.8rem;                 /* text-2xl 相当 */
  color: #1f2937;                     /* text-gray-800 */
}

.link-hover-primary {
  color: inherit;                  /* デフォルトの文字色を継承 */
  text-decoration: none;           /* 必要なら下線を消す */
}



.flex-center-gap {
  display: flex;           /* flex */
  align-items: center;     /* items-center */
  gap: 1.3rem;               /* gap-4 相当 (16px) */
}

/* ---　---　--- ヘッダー外部アイコン ---　---　---*/
.social-link img {
  display: block;
  width: auto; /* 横幅は個別指定する場合にoverride可能 */
  height: auto;
  transition: opacity 0.3s; /* hoverのアニメーション */
}

.social-link:hover img {
  opacity: 0.75;
}

/* 個別サイズ */
.social-link.insta img {
  width: 2.5rem;   /* w-8 相当 */
  height: 2.5rem;  /* h-8 相当 */
}

.social-link.twitter img {
  width: 1.5rem; /* w-6 相当 */
  height: 1.5rem;/* h-6 相当 */
}

.social-link.minne img {
  width: 3rem; /* w-10 相当 */
  height: 3rem;/* h-10 相当 */
}

/* ---　---　--- header終了 ---　---　---*/


/* ---　---　--- main ---　---　---*/
.main-content {
  padding-top: 3.5rem; /* pt-14 相当 */
  width: 100%;         /* w-full 相当 */
}




/* ---　---　--- header下の３枚画像切替 ---　---　---*/
/* スライダーなどのセクションラッパー */
.slider-section {
  margin-bottom: 11rem;   /* mb-44 相当 */
  margin-top: 1.5rem;     /* mt-6 相当 */
  position: relative;
  width: 100%;
  height: 450px;          /* h-[400px] 相当 */
  overflow: hidden;
  box-shadow: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05); /* shadow-lg 相当 */
}

/* ---３枚スライド調整---*/
/* スライド画像全体 */
.slide {
  position: absolute;   /* absolute */
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;              /* inset-0 */
  opacity: 1;           /* opacity-100 */
  transition: opacity 1s; /* transition-opacity duration-1000 */
}

/* スライド用画像共通 */
.slide-img {
  width: 100%;          /* w-full */
  height: 100%;         /* h-full */
  object-fit: cover;    /* object-cover */
  object-position: center; /* object-center */
}



/* スライド画像動きCSS*/
.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slider-container .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: fade 12s infinite;
}

.slider-container .slide:nth-child(1) {
  animation-delay: 0s;
}
.slider-container .slide:nth-child(2) {
  animation-delay: 4s;
}
.slider-container .slide:nth-child(3) {
  animation-delay: 8s;
}

@keyframes fade {
  0%   { opacity: 0; }
  8%   { opacity: 1; }
  33%  { opacity: 1; }
  41%  { opacity: 0; }
  100% { opacity: 0; }
}
/* ---３枚スライド調整---*/
@media screen and (max-width: 480px) {
.slider-section {
  margin-bottom: 1rem;   /* mb-44 相当 */
}
}

/* --- --- ---ご挨拶--- --- ---*/
/* ご挨拶セクション */
#greeting {
  margin-bottom: 8rem;  /* mb-32 相当 */
  width: 100%;          /* w-full */
  
}


.introduction-container{
  width: 60%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  
}
.background-image {
  position: absolute;
}

.background-image img {
  width: 200px;
  height: auto;
  opacity: 0.4; /* 👈 ここで薄くする */
  transform: translate(250px,10px); /* 👈 30px 下にずらす */
}


/* ご挨拶見出し */
#greeting h2 {
  color: #414040;
  width: 60%;              /* 好きな幅 */
  margin: 4rem auto;           /* 左右中央寄せ */
  margin-bottom: 2rem;
  text-align: left;         /* テキストは左揃え */
  letter-spacing: 2px;
  font-size: 1.875rem; /* text-sm相当 */
  font-weight: bold;
  font-family: 'M PLUS Rounded 1c', sans-serif;
}

.introduction-subtitle{
  color: #666;           /* text-gray-700 */
  font-size: 1.1rem;      /* text-lg 相当 */
  line-height: 1.8;         /* leading-relaxed 相当 */
  width: 60%;              /* 好きな幅 */
  margin: 0 auto;           /* 左右中央寄せ */
  margin-bottom: 2rem;
  text-align: left;         /* テキストは左揃え */
  letter-spacing: 1px;
  font-weight: bold;
}

/* ご挨拶テキスト */
#introduction-text {
  color: #444;           /* text-gray-700 */
  height: 10rem;            /* h-48 相当 */
  font-size: 1.1rem;      /* text-lg 相当 */
  width: 60%;              /* 好きな幅 */
  margin: 0 auto;           /* 左右中央寄せ */
  text-align: left;         /* テキストは左揃え */
  letter-spacing: 1px;

  
}

  #h2introduction-text {
    font-size: 1.075rem; /* text-sm相当 */

  }


/*------- レスポンシブ画像調整------*/
  @media screen and (max-width: 1200px) {
#greeting h2 {
    font-size: 1.65rem; /* ごあいさつの大きさ */
      letter-spacing: 0.5px;
      margin-bottom: 2rem;
      width: 70%;
}

.introduction-container{
  left: 10%;
}

.introduction-subtitle{
  font-size: 1.35rem;      /* text-lg 相当 */
  margin-bottom: 1.2rem;
  letter-spacing: 0.5px;
      line-height: 1.2;
      width: 70%;
}

  #introduction-text {
    font-size: 1.025rem; /*　ご挨拶文 */
    line-height: 1.4;
          width: 70%;
  }


  }


  /*------- レスポンシブ画像調整------*/
  @media screen and (max-width: 1050px) {
#greeting h2 {
    font-size: 1.65rem; /* ごあいさつの大きさ */
      letter-spacing: 0.5px;
      margin-bottom: 2rem;
      width: 60%;
}

.introduction-container{
  left: 20%;
}

.introduction-subtitle{
  font-size: 1.35rem;      /* text-lg 相当 */
  margin-bottom: 1.2rem;
  letter-spacing: 0.5px;
      line-height: 1.2;
      width: 60%;
}

  #introduction-text {
    font-size: 1.025rem; /*　ご挨拶文 */
    line-height: 1.4;
          width: 60%;
  }


  }


/*------- タブレットサイズ ------*/
  @media screen and (max-width: 768px) {
.background-image img {
  width: 180px;
  height: auto;
  transform: translate(30px, 20px); /* 👈 30px 下にずらす */

}

#greeting h2 {
    font-size: 1.85rem; /* ごあいさつの大きさ */
      margin-bottom: 2rem;
      width: 90%;
}

.introduction-container{
  left: 10%;
}

.introduction-subtitle{
  font-size: 1.3rem;      /* text-lg 相当 */
  margin-bottom: 1.2rem;
  letter-spacing: 0.5px;
      line-height: 1.2;
      width: 90%;
}

  #introduction-text {
    font-size: 0.925rem; /*　ご挨拶文 */
    line-height: 1.2;
          width: 90%;
  }

}
/*------- スマホサイズ ------*/
@media screen and (max-width: 480px) {


.background-image img {
  width: 100px;
  height: auto;
  opacity: 0.35; /* 👈 ここで薄くする */
  transform: translate(25px, 115px); /* 👈 30px 下にずらす */

}

#greeting{
  margin-bottom: 3em;
}
#greeting h2 {
    font-size: 1.55rem; /* ごあいさつの大きさ */
      margin-bottom: 1rem;
      width: 90%;
}

.introduction-container{
    left: 15%;
  
}

.introduction-subtitle{
  font-size: 1rem;      /* text-lg 相当 */
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
      line-height: 1.3;
      width: 90%;
}

  #introduction-text {
    font-size: 0.8025rem; /*　ご挨拶文 */
    line-height: 1.3;
          width: 90%;
          height: auto;
  }

}



/* ←----index.html中央の左右スライド---→ */
.slider-wrapper {
  overflow: hidden;
  width: 100%;
  margin-bottom: 1.5rem;
}

.slider-track {
  display: flex;
  gap: 0.75rem;
  width: max-content;
}

/* 左スライド */
.slider-track.slide-left {
  animation: slide-left 40s linear infinite;
}

/* 右スライド */
.slider-track.slide-right {
  animation: slide-right 40s linear infinite;
}

/* 画像共通 */
.slider-img {
  height: 10rem;
  width: auto;
  border-radius: 0.375rem;
}

@media screen and (min-width: 640px) {
  .slider-img { height: 15rem; }
}
@media screen and (min-width: 768px) {
  .slider-img { height: 15rem; }
}

/* 左スライド */
@keyframes slide-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* 右スライド */
@keyframes slide-right {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
/* ←----index.html中央の左右スライド---→ */






/* ----------------index.html 中央PRODUCT ---------------- */


/*------- スマホ版PRODUCT文字の大きさ ------*/
@media screen and (max-width: 480px) {

  #product {
    font-size: 1.775rem; /* text-sm相当 */
    line-height: 1.5;
  }
  #product-text {
    font-size: 0.85rem; /* text-sm相当 */
    line-height: 1.5;
  }


  /* 📱スマホ・タブレットでは動きを完全に無効化 */
  .product-button {
    transition: none !important; /* アニメーションを無効化 */
    background-color: #b899aa !important; /* 元の色を固定 */
  }

  .product-button:hover,
  .product-button:active,
  .product-button:focus {
    background-color: #b899aa !important; /* 変化しないように固定 */
  }
}


/* PRODUCT セクション */
.product-section {
  background: #fff;
  padding: 80px 20px;
  text-align: center;
}
.product-container {
  max-width: 700px;
  margin: 0 auto;
}
.product-title {
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 2px;
  color: #333;
  margin-bottom: 10px;
  font-family: 'M PLUS Rounded 1c', sans-serif;

}
.product-subtitle {
  font-size: 20px;
  font-weight: 500;
  color: #666;
  margin-bottom: 30px;
  letter-spacing: 1px;
}
.product-desc {
  font-size: 16px;
  line-height: 2;
  color: #444;
  margin-bottom: 40px;
  letter-spacing: 1px;
}
.product-button {
  display: inline-block;
  padding: 12px 40px;
  background-color: #b899aa;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  border-radius: 30px;
  transition: background-color 0.3s ease;
}
.product-button:hover {
  background-color: #d0a8c1;
}
/* ----------------index.html 中央PRODUCT ---------------- */




/* ----------------出店情報 ---------------- */
/* セクション全体 */
.section-standard {
  margin-top: 8rem; /* mt-32 相当 */
  width: 100%;      /* w-full */
}

/* コンテナ用 */
.container-max {
  max-width: 64rem;  /* max-w-4xl 相当 */
  margin-left: auto;  /* mx-auto */
  margin-right: auto; /* mx-auto */
  width: 100%;        /* w-full */
}

/* セクションタイトル用 */
.section-title {
  font-size: 1.875rem; /* text-3xl 相当 */
  font-weight: 700;    /* font-bold */
  text-align: center;  /* text-center */
  margin-bottom: 6rem; /* mb-24 */
  color: #3e3e3e;
  font-family: 'M PLUS Rounded 1c', sans-serif;

}

/* サブタイトル用 */
.subsection-title {
  font-size: 1.5rem;   /* text-2xl 相当 */
  width: 80%;              /* 好きな幅 */
  margin: 0 auto;           /* 左右中央寄せ */
  text-align: left;         /* テキストは左揃え */
  margin-bottom: 2rem; /* mb-8 */
  letter-spacing: 1px;
  color: #3e3e3e;
  font-family: 'M PLUS Rounded 1c', sans-serif;


}

/* フェード＆スライドリスト用 */
.fade-slide {
  margin: 0;          /* m-0 */
  padding: 0;         /* p-0 */
  list-style: none;   /* list-none */
  display: flex;
  flex-direction: column;
  gap: 1rem;          /* space-y-4 相当 */
  width: 80%;              /* 好きな幅 */
  margin: 0 auto;           /* 左右中央寄せ */
  text-align: left;         /* テキストは左揃え */
  letter-spacing: 1px;
  
}

.past-exhibit-title {
  font-size: 1.5rem;   /* text-2xl 相当 */
  width: 80%;              /* 好きな幅 */
  margin: 4rem auto;           /* 左右中央寄せ */
  margin-bottom: 2rem;
  text-align: left;         /* テキストは左揃え */
  letter-spacing: 1px;
  color: #3e3e3e;
  font-family: 'M PLUS Rounded 1c', sans-serif;
}

.commission-exhibit-title {
  font-size: 1.5rem;   /* text-2xl 相当 */
  width: 80%;              /* 好きな幅 */
  margin: 4rem auto;           /* 左右中央寄せ */
  margin-bottom: 2rem;
  text-align: left;         /* テキストは左揃え */
  letter-spacing: 1px;
  color: #3e3e3e;
  font-family: 'M PLUS Rounded 1c', sans-serif;

}

/* ---------------レスポンシブスマホ---------------- */
/* @media screen and (max-width: 480px) {

} */
/* ----------------出店情報 ---------------- */





/* ----------------footer---------------- */
.site-footer {
  margin-top: 4rem;      /* mt-16 */
  padding-top: 1rem;     /* py-8 上下 */
  padding-bottom: 1rem;  /* py-8 上下 */
  background-color: #fcd9e1; /* bg-primary */
  width: 100%;
}


.footer-text {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem; /* gap-8 相当 */
}


/* ----------------常時表示リンク---------------- */



.floating-link {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #fff;
  padding: 12px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  color: #333;
  text-decoration: none;
  transition: transform 0.3s;
  z-index: 1000;
}
.floating-link:hover {
  transform: scale(1.05);
}
.floating-link::before, .floating-link::after {
  content: "";
  position: absolute;
  top: -20px;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 20px solid #fff;
}
.floating-link::before { left: 20px; }
.floating-link::after { right: 20px; }
.floating-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.floating-text {
  white-space: nowrap;
  letter-spacing: 1px;
}






@media screen and (max-width: 480px) {
  .floating-link {
    transition: none !important; /* アニメーションを無効化 */
  }

  .floating-link:hover,
  .floating-link:active,
  .floating-link:focus {
    transform: none !important; /* 拡大しない */
  }


}


/* ----------------常時表示リンク---------------- */
/* ----------------footer---------------- */






/* --- --- ---中央　３種類固定ソーシャルリンク --- --- ---*/
.social-links-center {
  display: flex;            /* flex */
  flex-direction: column;   /* flex-col */
  gap: 1.5rem;              /* gap-6 相当 */
  align-items: center;      /* items-center */
  margin: 0 auto;
    margin-top: 4rem;         /* mt-16 */
      width: 100%;              /* w-full */
  padding: 50px 0;
  font-family: 'Noto Sans JP', sans-serif;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  max-width: 600px;
  padding: 20px 25px;
  background-color: #ffffffcc;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-decoration: none;
  color: #333;
  transition: transform 0.3s, box-shadow 0.3s;
}
.social-btn:hover {
  transform: translateX(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}
.social-btn img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.social-text {
  display: flex;
  flex-direction: column;
}
.social-title {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.8px;
}
.social-desc {
  font-size: 13px;
  color: #555;
  margin-top: 2px;
  letter-spacing: 0.8px;
}



@media screen and (max-width: 480px) {
  .social-btn {
    max-width: 80%;
    padding: 12px 15px;
    transition: none !important; /* アニメーションをなくす */
    transform: none !important;  /* 元の位置に固定 */
    box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important; /* hover時の変化なし */
  }
  .social-btn img {
    width: 28px;
    height: 28px;
  }
  .social-title { font-size: 14px; }
  .social-desc { font-size: 11px; }

  .social-btn:hover,
  .social-btn:active,
  .social-btn:focus {
    transform: none !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
  }
}


























/* --- --- --- 新商品・作品セクション共通 --- --- --- */

/* テキスト */
#work-inttext {
  color: #444;           /* text-gray-700 */
  height: 10rem;         /* 高さ */
  font-size: 1.1rem;     /* text-lg 相当 */
  width: 80%;             /* ブロック幅を指定 */
  max-width: 480px;       /* 最大幅 */
  margin: 0 auto 5em;     /* 上下は0、下マージン5em、左右中央寄せ */
  text-align: left;       /* テキストは左揃え */
  letter-spacing: 1px;
}

/*------- スマホサイズ ------*/
@media screen and (max-width: 480px) {

  #work-inttext {
    font-size: 0.9025rem;
    width: 90%;
    letter-spacing: 2px;
    line-height: 1.6;
  }

}

/* 商品一覧タイトル */
#product_worktext h2 {
  color: #414040;
  width: 100%;              /* 好きな幅 */
  margin: 0 auto;           /* 左右中央寄せ */
  margin-bottom: 2rem;
  margin-top: 8rem;
  text-align: center;         /* テキストは左揃え */
  letter-spacing: 2px;
  font-size: 1.875rem; /* text-sm相当 */
  font-weight: bold;
  font-family: 'M PLUS Rounded 1c', sans-serif;
}

#product_worktext{
  margin-bottom: 10rem;
}

/*------- スマホサイズ ------*/
@media screen and (max-width: 480px) {

  #product_worktext h2 {
  margin-bottom: 2rem;
  font-size: 1.575rem; /* text-sm相当 */
  }

    #product_worktext {
  margin-bottom: 10rem;
  }



}


/* URLリンクの色を仕様変更 */
.urllink_color{
    color: #ec4899;
  text-decoration: none;
  font-family: 'Comic Neue', cursive;
  border-bottom: 2px dashed #f9a8d4; /* 点線でかわいく */
  padding-bottom: 2px;
}


/* セクション全体 */
.section-new-products {
  margin-top: 3rem; /* mt-12 相当 */
  width: 100%;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  
}

/* 見出し */
.section-new-products h2 {
  font-size: 1.875rem; /* text-3xl */
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem; /* mb-8 */
}



/* グリッドコンテナ */
.section-new-products .container-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1.25rem; /* gap-5 */
  max-width: 80rem; /* max-w-5xl */
  margin: 0 auto;
  justify-items: center;
}

/* md (768px以上) */
@media screen and (min-width: 768px) {
  .section-new-products .container-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* lg (1024px以上) */
@media screen and (min-width: 1024px) {
  .section-new-products .container-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* --- --- --- 商品一覧--- --- --- */

/* セクション全体 */
.work_title {
  margin-top: 8rem; /* mt-32 */
  width: 100%;
}

/* 見出し */
.work_title-heading {
  font-size: 1.875rem; /* text-3xl */
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem; /* mb-12 */
    font-family: 'M PLUS Rounded 1c', sans-serif;
}

/* グリッド */
.work_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1.25rem; /* gap-5 */
  max-width: 80rem; /* max-w-5xl */
  margin: 0 auto;
  justify-items: center;
}

/* md (768px以上) */
@media screen and (min-width: 768px) {
  .work_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* lg (1024px以上) */
@media screen and (min-width: 1024px) {
  .work_grid {
    grid-template-columns: repeat(3, 1fr);
  }
}



/* --- カード --- */
/* --- カード全体 --- */
.card {
  display: flex;
  flex-direction: column;
  align-items: center;   /* 横方向中央揃え */
  justify-content: flex-start;
  text-align: center;
  width: 300px;          /* 幅をカード幅に固定 */
  margin: 0 auto;        /* カード自体を中央寄せ */
}

/* カード内画像 */
.card img,
.card-img {
  width: 100%;           /* カード幅いっぱいに */
  height: auto;
  max-height: 240px;
  object-fit: cover;
  border-radius: 0.75rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: box-shadow 0.3s;
}
/* グリッド全体を中央寄せ */
.work_grid {
  display: grid;
  justify-items: center;  /* グリッドアイテムを中央寄せ */
  row-gap: 1.25rem;
}




/* カード文字部分 */
.card h3 {
    color: #554646;
  font-size: 1.15rem;
  margin-top: 1rem;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 500; /* 太さ調整 */
}

.card p {
  color: #7c6565;
  font-size: 0.975rem;
  line-height: 1.5;
  margin-top: 0.5rem;
  word-break: break-word;
  margin-bottom: 6rem;
  text-align: left;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 400; /* 太さ調整 */
}




/* レスポンシブ対応 */
@media screen and (max-width: 480px) {
  .card img,
  .card-img {
    width: 90%;        /* 画面幅に合わせる */
    height: auto;
  }
}
/* md以上 */
@media screen and (min-width: 768px) {
  .work_grid {
    grid-template-columns: repeat(2, auto);
  }
}

/* lg以上 */
@media screen and (min-width: 1024px) {
  .work_grid {
    grid-template-columns: repeat(3, auto);
  }
}



/*　カードフェードインアニメーション　*/
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}



.lazy-img {
  filter: blur(8px);
  opacity: 0.5;
  transition: filter 0.6s ease, opacity 0.6s ease;
}
