/* ===============================
   RESET / BASE
=============================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #333;
  background: #fff;
  padding-top: 135px; /* ヘッダー高さ分 */
    opacity: 0;                /* 最初は透明 */
  transition: opacity 1s ease; /* 1秒でフェードイン */

}

body.loaded {
  opacity: 1;                /* 表示状態 */
}



/* 波アニメーション用 */
body::before {
  content: "";
  position: fixed;
  bottom: 0;
  left: 0;
  width: 120%;
  height: 40%;
  background: rgba(255, 223, 100, 0.25);
  border-radius: 45% 55% 0 0 / 25% 25% 0 0;
  animation: waveMove 5s ease-in-out infinite alternate;
  z-index: -1; 
  filter: blur(15px);
}

@keyframes waveMove {
  0%   { transform: translateX(0) translateY(0); }
  25%  { transform: translateX(10px) translateY(-15px); }
  50%  { transform: translateX(0px) translateY(-25px); }
  75%  { transform: translateX(-10px) translateY(-15px); }
  100% { transform: translateX(0) translateY(0); }
}

/* ===============================
   HEADER
=============================== */
header {
  background: #fff;
  padding: 15px 30px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo img {
  height: 70px;
  width: auto;
}

.header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 26px;
  height: 26px;
  display: block;
}

.social-icons img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-link {
  font-size: 14px;
  color: #333;
  text-decoration: none;
  text-align: left;      /* 左揃え */
  white-space: nowrap;   /* 改行させない */
  display: block;        /* 幅をコントロール可能に */
  max-width: 100%;       /* はみ出さない */
  box-sizing: border-box;
  margin-right: 60px;
}

nav {
  display: flex;
  gap: 50px;
  font-size: 25px;
}

nav a {
  display: inline-flex;          /* ← inline-block → inline-flex */
  align-items: center;           /* 縦方向中央 */
  padding: 8px 0;                /* 上下パディングを少し増やす */
  position: relative;
  text-decoration: none;
  color: #333;
  white-space: nowrap;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;                   /* 下から2pxに調整 */
  width: 100%;                   /* 110% → 100% でずれにくく */
  height: 4px;
  background-color: #F5C400;
  border-radius: 2px;
  opacity: 0;
  transform: scaleX(0);
  transition: opacity 0.2s ease, transform 0.25s ease;
}

nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}


/* ===============================
   DROPDOWN MENU
=============================== */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(0) scale(1); /* 縦揺れなし */
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  width: max-content;
  min-width: unset;
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  box-shadow: 0 12px 24px rgba(0,0,0,0.18);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease; /* scaleなし */
}

.dropdown-menu a {
  padding: 12px 20px;
  font-size: 18px;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease;
  border-bottom: 1px solid #eee;
}

.dropdown-menu a:last-child {
  border-bottom: none;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1); /* 縦揺れなし */
  pointer-events: auto;
}


/* ===============================
   PROFILE LIST
=============================== */
.profile-list {
  list-style: disc;
  padding-left: 24px;
  font-size: 20px;
  color: #000;
  text-align: left;
}

.profile-list li {
  margin-bottom: 12px;
  line-height: 1.2;
}

.profile-list-history {
  margin-top: 24px;
  font-size: 16px;
  line-height: 1.8;
}

.profile-list-history a {
  color: #FCB5C1;
  text-decoration: none;
  font-weight: 500;
}

.profile-list-history a:hover {
  text-decoration: underline;
}

/* ===============================
   TABLET & MOBILE HEADER
=============================== */
@media (max-width: 1200px) {

  /* ヘッダー内 */
  .header-container {
    justify-content: space-between;
    align-items: center;
  }

  .logo {
    flex: 1;
    display: flex;
    justify-content: center; /* ロゴ中央 */
  }

  .header-right {
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }

  /* PC版の横並びソーシャルアイコンは非表示 */
  .social-icons {
    display: none;
  }

  /* ハンバーガーボタン */
  .menu-toggle {
    width: 40px;
    height: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
  }

  .menu-toggle span {
    display: block;
    height: 4px;
    width: 100%;
    background: #333;
    border-radius: 2px;
  }

  /* ナビ（アコーディオン） */
  nav.main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    width: 220px;
    background: #fff;
    flex-direction: column;
    gap: 0;
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(0,0,0,0.2);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 1050;
    overflow: hidden; /* はみ出し防止 */
  }

  nav.main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  nav.main-nav a,
  .nav-dropdown > a {
    width: 100%;
    text-align: center;
    padding: 14px 0;
    display: block;
  }
/* --- メニュー内SNS・お問い合わせ用スタイル --- */

  .sp-menu-bottom {
    border-top: 1px solid #eee; /* メニューの区切り線 */
    margin-top: 5px;
  }

  /* 他のメニュー項目と同じ見た目に統一 */
  .sp-contact-link {
    font-weight: 500; /* 太すぎず他の項目に合わせる */
    color: #333 !important; /* 他と同じ黒 */
    background-color: #fff !important; /* 白背景 */
  }

  /* タップした時に少し色が変わるように（任意） */
  .sp-contact-link:active {
    background-color: #f5f5f5 !important;
  }

  /* --- ここまで追加分 --- */

  /* ドロップダウンをアコーディオン化 */
  .dropdown-menu {
    position: relative;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    display: block;
    transition: max-height 0.3s ease;
    box-shadow: none;
    border: none;
    padding: 0;
    background: #fff;
    box-sizing: border-box;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .nav-dropdown.is-open .dropdown-menu {
    max-height: 500px;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .dropdown-menu a {
    display: block !important;
    width: 100% !important;
    text-align: center;
    padding: 12px 0;
    font-size: 16px;
    color: #333 !important;
    background: #fafafa;
    border-bottom: 1px solid #eee;
    box-sizing: border-box !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }

  .dropdown-menu a:last-child {
    border-bottom: none;
  }
}

/* PC版（1201px以上）ではスマホ専用パーツを絶対に隠す */
@media (min-width: 1201px) {
  .sp-menu-bottom {
    display: none !important;
  }
}


/* ===============================
   HERO
================================ */
.hero {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 5px;
}

.hero-inner {
  width: 100%;
  max-width: 1200px;
  height: 350px;
  position: relative;
  overflow: hidden;
  background: #000;
}

.hero-inner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.5s ease;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: 1px solid #fff;
  font-size: 24px;
  cursor: pointer;
}

.prev { left: 16px; }
.next { right: 16px; }

/* ===============================
   TWO COLUMN（上段）
================================ */
.two-column {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.two-column-inner {
  width: 100%;
  max-width: 1200px;
  display: flex;
  gap: 60px;
  padding: 0 30px;
  align-items: stretch; /* 高さを揃える */
}

/* 左カラム */
.column-left {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.latest-label {
  width: 100%;
  background: #F32C79;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(56px, 8vw, 90px);
  font-size: clamp(24px, 5vw, 64px);
  font-weight: 700;
  text-align: center;
  line-height: 1.2;

  border-radius: 12px; /* ← 角丸を追加 */
}

.latest-cover {
  width: 100%;
  flex: 1;
  padding-top: 30px;
  display: flex;
  justify-content: center;
  overflow: hidden;
  background: #fff;
  position: relative;
  border-radius: 12px;
}

.latest-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}

.latest-cover::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0);
  transition: background 0.3s ease;
  z-index: 2;
  pointer-events: none; /* ← これでクリックが透過される */
}

.latest-cover:hover::after {
  background: rgba(255,255,255,0.2);
}

.latest-cover:hover img {
  transform: scale(1.05);
}

/* 右カラム */
.column-right {
  width: calc(36% + 30px);
  flex-shrink: 0;
  background: #FCB5C1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-radius: 12px;
}

/* ===============================
   PROFILE CARD
================================ */
.profile-card {
  margin: 20px 0;
  padding: 24px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.profile-image {
  display: flex;
  justify-content: center;
}

.profile-image img {
  max-width: 100%;
  height: auto;
  display: block;
}

.profile-name {
  margin-top: 16px;
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  color: #000;
}

/* ===============================
   BOTTOM TWO COLUMN
================================ */
.bottom-two-column {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.bottom-two-column-inner {
  display: flex;
  width: 100%;
  max-width: 1200px;
  gap: 60px;
  padding: 0 30px;
  box-sizing: border-box;
  align-items: stretch;
  justify-content: center;
}

/* 左カラム */
.bottom-column-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-sizing: border-box;
}

/* 右カラム（ツイッター） */
.bottom-column-right.twitter-column {
  width: calc(36% + 30px);
  min-height: 400px;
  flex-shrink: 0;
  background: #fff;
  padding: 20px;
  box-sizing: border-box;
  border-radius: 12px;
}

.bottom-column-right.twitter-column blockquote.twitter-tweet {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto !important;
}

/* ===============================
   PRODUCTS
================================ */
/* ===============================
    PRODUCTS
================================ */
.now-on-sale {
  font-size: 30px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* PC時は3列 */
  gap: 30px 20px;
  margin-top: 20px;
  width: 100%;
}

/* スマホ等で1列〜2列にしたい場合はこちらを調整 */
@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.product-item {
  position: relative; /* ラベルの基準位置 */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
}

/* --- ラベルのスタイル --- */
.product-label {
  position: absolute;
  top: 0;
  right: 0; /* 右上に変更 */
  z-index: 10;
  padding: 2px 6px;
  font-size: 9px; /* より小さく */
  font-weight: 500;
  color: #fff;
  background-color: #999; /* 控えめなグレー */
  border-radius: 0 8px 0 8px; /* 画像の角に合わせる */
  letter-spacing: 0.5px;
  pointer-events: none;
}

.status-sale {
  background-color: #ff4785; /* 電子あり：ピンク */
}

.status-non-digital {
  background-color: #666; /* 電子なし：グレー */
}

.product-item img {
  width: 100%;
  max-width: 150px;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* 軽く影をつけると本っぽくなります */
  transition: transform 0.3s ease;
}

/* リンクがある(aタグ)時だけホバー効果を出す */
a.product-item:hover img {
  transform: scale(1.05);
}

/* リンクがない(divタグ)は少し暗くして「手に取れない感」を出す（お好みで） */
div.product-item img {
  opacity: 0.7;
}

.product-item {
  margin-bottom: 10px;
}

.product-name {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
}

/* ===============================
   BOTTOM SINGLE SECTION
================================ */
.bottom-single-section {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 0px 0;
}

.bottom-single-inner {
  width: 100%;
  max-width: 1200px;
  padding: 0 30px;
  display: flex;
  justify-content: center;
}

.line-stamp-label {
  width: 100%;
  max-width: 750px;
  background: #06C755;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(56px, 8vw, 90px);
  font-size: clamp(24px, 5vw, 64px);
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  border-radius: 12px;
  padding: 0 20px;
  margin: 0 auto;
}

/* ===============================
   LINE STAMP GRID
================================ */
.line-stamp-grid-section {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 60px;
}

.line-stamp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 100%;
  max-width: 1200px;
  padding: 0 30px;
  box-sizing: border-box;
  justify-items: center;
  align-items: start;
}

.line-stamp-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
  position: relative;
}

.line-stamp-img-wrapper {
  position: relative;
  width: 200px;
  height: 200px;
  overflow: hidden;
  border-radius: 12px;
}

.line-stamp-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}

.line-stamp-img-wrapper::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0);
  transition: background 0.3s ease;
  pointer-events: none;
}

.line-stamp-item:hover .line-stamp-img-wrapper::after {
  background: rgba(255,255,255,0.3);
}

.line-stamp-item:hover img {
  transform: scale(1.05);
}

.line-stamp-name {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 500;
  color: #000;
}

/* ===============================
   TRIAL READING SECTION
================================ */
.trial-reading-label {
  width: 100%;
  max-width: 750px;
  background: #F32C79;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(56px, 8vw, 90px);
  font-size: clamp(24px, 5vw, 64px);
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  border-radius: 12px;
  padding: 0 20px;
  margin: 0 auto;
}

.trial-reading-grid-section {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 60px;
}

.trial-reading-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  padding: 0 30px;
  box-sizing: border-box;
  justify-items: center;
  align-items: start;
}

.trial-reading-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
  position: relative;
}

.trial-reading-img-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1055 / 1500;
  overflow: hidden;
  border-radius: 12px;
}

.trial-reading-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.trial-reading-img-wrapper::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0);
  transition: background 0.3s ease;
  pointer-events: none;
}

.trial-reading-item:hover .trial-reading-img-wrapper::after {
  background: rgba(255,255,255,0.3);
}

.trial-reading-item:hover img {
  transform: scale(1.05);
}

.trial-reading-name {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  text-align: center;
  line-height: 1.4;
  max-width: 60%;
  word-break: break-word;
  overflow: hidden;
}

footer {
    background-color: #727272;  /* 背景色を濃い灰色 */
    text-align: center;          /* 文字中央寄せ */
    padding: 5px 0;             /* 上下に余白 */
    width: 100%;                 /* 横幅いっぱい */
    color: white;                /* 文字色を白 */
}

/* 内側のコンテンツだけ幅を制限 */
footer .footer-inner {
    max-width: 768px;            /* コンテンツ幅を制限 */
    margin: 0 auto;              /* 中央寄せ */
    padding: 0px;
}

footer a {
    color: #ffffff;              /* リンク色を白 */
    text-decoration: none;       /* 下線なし */
}

footer p {
    margin: 5px 0;
}

/* 最新刊の紫の帯 */
.latest-label {
  box-shadow: 4px 8px 12px rgba(0, 0, 0, 0.25);
}

/* プロフィールのピンクの箱 */
.column-right {
  box-shadow: 4px 8px 12px rgba(0, 0, 0, 0.25);
}

/* LINESTAMPの緑の帯 */
.line-stamp-label {
  box-shadow: 4px 8px 12px rgba(0, 0, 0, 0.25);
}

/* 試し読みの紫の帯 */
.trial-reading-label {
  box-shadow: 4px 8px 12px rgba(0, 0, 0, 0.25);
}

/* 試し読みの紫の帯 */
.latest-cover {
  box-shadow: 4px 8px 12px rgba(0, 0, 0, 0.25);
}

.floating-btn {
  position: fixed;
  bottom: 20px;
  right: 40px;
  width: 60px;
  height: 60px;
  background-color: #ffffff; /* 丸の色を白に */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.floating-btn:hover {
  transform: scale(1.1); /* ホバーで少し拡大 */
}

/* SVG はボタン中央に配置 */
.floating-btn svg {
  display: block;
}



/* ===============================
   RESPONSIVE
================================ */

/* PC~タブレット用 */
@media (min-width: 769px) {
  .bottom-single-section {
    margin-top: 40px;
  }
}

/* タブレット～スマホ用 */
@media (max-width: 1024px) {
  .column-right,
  .bottom-column-right.twitter-column {
    width: 360px;
  }

  .bottom-two-column-inner {
    justify-content: center;
  }
}

/* ===============================
    RESPONSIVE (MOBILE)
=============================== */
@media (max-width: 768px) {
  /* --- HEROスライドの隙間解消 --- */
  .hero-inner {
    height: auto !important;   /* 高さを中身に合わせる */
    aspect-ratio: 1200 / 350;  /* 画像の比率を維持 */
    background: transparent;   /* 背景の黒を消す */
  }
  .hero-inner img {
    object-fit: contain;       /* 画像全体を収める */
  }
  .prev, .next {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  /* --- レイアウト調整 --- */
  .two-column-inner,
  .bottom-two-column-inner {
    flex-direction: column;
    gap: 32px;
    padding: 0;
    justify-content: center;
    align-items: center;
  }

  .column-left,
  .column-right,
  .bottom-column-left,
  .bottom-column-right.twitter-column {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    min-height: auto;
    padding: 20px;
  }

  /* --- LINE STAMP GRID --- */
  .line-stamp-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 0 10px;
    width: 100%;
    box-sizing: border-box;
  }

  .line-stamp-item {
    max-width: 120px;
    width: 100%;
  }

  .line-stamp-img-wrapper {
    width: 100%;
    max-width: 120px;
    aspect-ratio: 1 / 1;
    height: auto;
  }

  /* --- TRIAL READING --- */
  .trial-reading-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .trial-reading-img-wrapper {
    width: 100%;
    max-width: 180px;
    aspect-ratio: 1055 / 1500;
    height: auto;
  }

  .trial-reading-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* ===============================
   PRODUCTS (文字強調＆ラインくっきり版)
=============================== */
.now-on-sale {
  font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
  font-size: 32px;      /* 22pxから32pxにアップ */
  font-weight: 700;
  letter-spacing: 0.15em; 
  color: #111;          /* より深い黒に */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 60px 0 40px;
}

/* 線のデザインを「くっきり」させる */
.now-on-sale::before,
.now-on-sale::after {
  content: "";
  height: 3px;         /* 1pxから3pxに厚くして強調 */
  background: #333;    /* 薄いグレーから濃いグレー(#333)に変更 */
  flex-grow: 1;
  max-width: 120px;    /* 線を少し短くして、中央の大きな文字を引き立てる */
}

.now-on-sale::before {
  margin-right: 25px;  /* 文字との隙間を少し広めに */
}

.now-on-sale::after {
  margin-left: 25px;
}

.product-item img {
  width: 100%;
  max-width: 150px;
  height: auto;
  display: block;
  border-radius: 4px; /* 角丸を少しだけ甘く */
  /* 柔らかい影をつける（重たくならない程度に） */
  box-shadow: 0 10px 20px rgba(0,0,0,0.08); 
  transition: all 0.3s ease;
}

.product-item:hover img {
  transform: translateY(-8px); /* 上に浮かび上がるアニメーション */
  box-shadow: 0 15px 30px rgba(0,0,0,0.15); /* ホバー時に影を濃く */
}