/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: 'Galvji';
  src: url('../fonts/Galvji.ttc') format('truetype');
  font-weight: normal;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  /* 横スクロール禁止 */
  font-family: "mukta-mahee", sans-serif;
  font-style: normal;
  color: #000;
}

/* Wrapper */
.wrapper {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .wrapper {
    display: flex;
    flex-direction: column;
  }
}

/* Main Visual */
.main-visual {
  width: 100%;
  max-width: 1920px;
  height: 56.25vw;
  /* 1080 / 1920 = 0.5625 */
  max-height: 1080px;
  position: relative;
  background: url("../img/pc/top_1920-1080/top_1920-1080.jpg") no-repeat center center;
  background-size: cover;
}

/* スマホ用画像グリッド（デフォルトは非表示） */
.sp-image-grid {
  display: none;
}

/* スマホサイズ対応 */
@media (max-width: 767px) {
  .main-visual {
    height: auto;
    background: none;
    padding-top: 13.85vw;
    /* 54 / 390 */
  }

  .sp-image-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3.33vw;
    /* 13 / 390 */
    width: 100%;
  }

  .sp-image-item {
    width: 87.18vw;
    /* 340 / 390 */
    height: 35.9vw;
    /* 140 / 390 */
    overflow: hidden;
    position: relative;
  }

  .sp-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .sp-image-item img.rotate-90 {
    width: 35.9vw;
    /* 140 / 390 - 回転後の高さ */
    height: 87.18vw;
    /* 340 / 390 - 回転後の幅 */
    object-fit: cover;
    transform: rotate(90deg);
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -43.59vw;
    /* -340/2 / 390 */
    margin-left: -17.95vw;
    /* -140/2 / 390 */
  }
}

/* ロゴ中央配置 */
.logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.logo img {
  max-width: 26.61vw;
  /* 511 / 1920 = 0.2661 */
  width: 100%;
  height: auto;
}

@media (min-width: 1920px) {
  .logo img {
    max-width: 511px;
  }
}

/* スマホ時のロゴ配置 */
@media (max-width: 767px) {
  .logo {
    position: absolute;
    top: calc(13.85vw + 35.9vw + 3vw + 35.9vw + 3vw);
    /* ヘッダー + 画像1枚 + gap + 画像2枚目 + gap */
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
  }

  .logo img {
    max-width: 44.1vw;
    /* 172 / 390 */
    width: 44.1vw;
  }
}

/* 横並びリンク（幅500px内で均等配置） */
.top-links {
  position: absolute;
  top: 6.25vw;
  /* 120 / 1920 = 0.0625 */
  right: 3.85vw;
  /* 74 / 1920 = 0.0385 */
  display: flex;
  justify-content: space-between;
  width: 26.04vw;
  /* 500 / 1920 = 0.2604 */
  z-index: 1000;
}

@media (min-width: 1920px) {
  .top-links {
    top: 120px;
    right: 74px;
    width: 500px;
  }
}

/* スマホ時のトップリンク */
@media (max-width: 767px) {
  .top-links {
    position: absolute;
    top: 0;
    right: 0;
    width: 60.51vw;
    /* 236 / 390 */
    height: 13.85vw;
    /* 54 / 390 */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 6.41vw;
    /* 25 / 390 */
    z-index: 1000;
  }

  .top-links .menu-item {
    position: relative;
    flex: 0 0 auto;
  }

  .top-links .menu-item a {
    display: block;
    white-space: nowrap;
  }
}

.top-links .menu-item {
  position: relative;
}

.top-links a {
  font-size: 0.83vw;
  /* 16 / 1920 = 0.0083 */
  letter-spacing: 0.043vw;
  line-height: 1.41vw;
  color: #000;
  text-decoration: none;
}

@media (min-width: 1920px) {
  .top-links a {
    font-size: 16px;
    letter-spacing: 0.82px;
    line-height: 27px;
  }
}

@media (max-width: 767px) {
  .top-links a {
    font-size: 2.56vw;
    /* 10 / 390 */
    letter-spacing: 0.13vw;
    /* 0.51 / 390 */
    line-height: 4.1vw;
    /* 16 / 390 */
  }
}

/* Helper: elements visible only on SP (hidden on desktop) */
.sp-only {
  display: block;
}

@media (min-width: 768px) {
  .sp-only {
    display: none !important;
  }
}

/* Helper: elements visible only on PC (hidden on SP) */
.pc-only {
  display: block;
}

@media (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}

.menu-item {
  position: relative;
}

/* 共通のsubmenu */
.submenu {
  display: none;
  position: absolute;
  top: 100%;
  right: -1.3vw;
  /* -25 / 1920 */
  background: #F8F8F8;
  opacity: 0.71;
  width: 6.51vw;
  /* 125 / 1920 */
  text-align: right;
  border-top: 0.1vw solid #000;
  padding-top: 1.25vw;
  /* 24 / 1920 */
  padding-right: 1.46vw;
  /* 28 / 1920 */
}

@media (min-width: 1920px) {
  .submenu {
    right: -25px;
    width: 125px;
    border-top: 2px solid #000;
    padding-top: 24px;
    padding-right: 28px;
  }
}

@media (max-width: 767px) {
  .submenu {
    right: -2vw;
    top: calc(100% + 1.28vw);
    /* 5 / 390 */
    /* 70px @ 390px baseline -> 70/390*100 = 17.9487vw */
    width: 15vw;
    padding-top: 2vw;
    padding-right: 2vw;
    border-top: 0.26vw solid #000;
  }
}

/* products-visual 内だけ上書き */
.products-visual .submenu {
  background: #FFF;
}

.submenu a {
  display: block;
  font-size: 0.73vw;
  /* 14 / 1920 */
  color: #000;
  text-align: right;
  padding-bottom: 1.2vw;
  /* 23 / 1920 */
}

@media (min-width: 1920px) {
  .submenu a {
    font-size: 14px;
    padding-bottom: 23px;
  }
}

@media (max-width: 767px) {
  .submenu a {
    font-size: 2.05vw;
    /* 8 / 390 */
    letter-spacing: 0.11vw;
    /* 0.41 / 390 */
    line-height: 3.33vw;
    /* 13 / 390 */
    padding-bottom: 2.05vw;
    /* 8 / 390 */
  }
}

/* ギャラリー全体 */
.gallery {
  margin-top: 23.02vw;
  /* 442 / 1920 */
  display: flex;
  justify-content: center;
}

@media (min-width: 1920px) {
  .gallery {
    margin-top: 442px;
  }
}

/* グリッド配置 */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 16.04vw);
  /* 308 / 1920 */
  grid-template-rows: repeat(3, 21.77vw);
  /* 418 / 1920 */
  column-gap: 0;
  row-gap: 2.03vw;
  /* 39 / 1920 */
}

@media (min-width: 1920px) {
  .gallery-grid {
    grid-template-columns: repeat(5, 308px);
    grid-template-rows: repeat(3, 418px);
    row-gap: 39px;
  }
}

/* 画像サイズ固定 */
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* スマホ時のギャラリー */
@media (max-width: 767px) {
  .gallery {
    margin-top: 8.97vw;
    /* 35 / 390 - text-areaの後に表示 */
    order: 2;
  }

  .gallery-grid {
    grid-template-columns: repeat(5, 17.44vw);
    /* 68 / 390 */
    grid-template-rows: repeat(3, 23.08vw);
    /* 90 / 390 */
    column-gap: 0;
    row-gap: 2.82vw;
    /* 11 / 390 */
    width: 87.18vw;
    /* 340 / 390 */
    margin: 0 auto;
  }
}

/* テキストエリア */
.text-area {
  margin-top: 4.69vw;
  /* 90 / 1920 */
  display: flex;
  justify-content: center;
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-style: normal;
}

@media (min-width: 1920px) {
  .text-area {
    margin-top: 90px;
  }
}

.text-lines {
  width: 80.21vw;
  /* 1540 / 1920 */
  height: 5.47vw;
  /* 105 / 1920 */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (min-width: 1920px) {
  .text-lines {
    width: 1540px;
    height: 105px;
  }
}

.text-lines p {
  font-size: 0.68vw;
  /* 13 / 1920 */
  letter-spacing: 0.052vw;
  line-height: 1.2vw;
  /* 23 / 1920 */
  color: #000;
  margin: 0;
  display: block;
}

@media (min-width: 1920px) {
  .text-lines p {
    font-size: 13px;
    letter-spacing: 1px;
    line-height: 23px;
  }
}

/* Product specification table (borderless, table-like layout) */
.product-spec-wrap {
  margin: 0.63vw 0;
}

.product-spec {
  border-collapse: collapse;
  border: none;
  width: 100%;
  max-width: 36vw;
  font-size: 0.63vw;
  letter-spacing: 0.026vw;
  line-height: 1.04vw;
}

.product-spec th,
.product-spec td {
  text-align: left;
  vertical-align: top;
  color: #111;
  line-height: inherit;
  font-weight: normal;
}

.product-spec th {
  width: 20%;
  white-space: nowrap;
  padding-right: 0.63vw;
}

@media (max-width: 767px) {
  .product-spec-wrap {
    margin: 2.05vw 0;
  }

  .product-spec {
    max-width: 87.18vw;
    font-size: 2.05vw;
    letter-spacing: 0.08vw;
    line-height: 3.33vw;
  }

  .product-spec th,
  .product-spec td {
    line-height: inherit;
  }
}

/* スマホ用の改行を非表示（PC） */
.sp-br {
  display: none;
}

/* スマホ時のテキストエリア */
@media (max-width: 767px) {
  .text-area {
    margin-top: 8.72vw;
    /* 34 / 390 */
    order: 1;
  }

  .text-lines {
    width: 87.18vw;
    /* 340 / 390 */
    height: auto;
    gap: 0;
  }

  .text-lines p {
    font-size: 1.28vw;
    /* 5 / 390 */
    letter-spacing: 0.1vw;
    /* 0.39 / 390 */
    line-height: 2.56vw;
    /* 10 / 390 - 2行分 */
    text-align: left;
    margin: 0;
  }

  /* スマホ用の改行を表示 */
  .sp-br {
    display: inline;
  }
}

/* 次のセクション */
.next-section {
  margin-top: 12.86vw;
  /* 247 / 1920 */
  background-color: #FAFAFA;
}

@media (min-width: 1920px) {
  .next-section {
    margin-top: 247px;
  }
}

.next-section .inner {
  width: 80.21vw;
  /* 1540 / 1920 */
  margin: 0 auto;
  padding-top: 17.4vw;
  /* 334 / 1920 */
  padding-bottom: 12.45vw;
  /* 239 / 1920 */
}

@media (min-width: 1920px) {
  .next-section .inner {
    width: 1540px;
    padding-top: 334px;
    padding-bottom: 239px;
  }
}

@media (max-width: 767px) {
  .next-section {
    margin-top: 0;
    order: 3;
    background-color: #FFFFFF;
    padding-top: 0;
  }

  .next-section .inner {
    width: 87.18vw;
    /* 340 / 390 */
    padding-top: 0;
    padding-bottom: 10.26vw;
    /* 40 / 390 */
  }
}

/* 画像エリア */
.image-area {
  width: 73.85vw;
  /* 1418 / 1920 */
  height: 45.42vw;
  /* 872 / 1920 */
  margin: 0 auto;
  overflow-x: auto;
  overflow-y: hidden;
  position: relative;

  /* ネイティブスクロールバーを非表示 */
  -ms-overflow-style: none;
  /* IE/Edge */
  scrollbar-width: none;
  /* Firefox */
}

@media (min-width: 1920px) {
  .image-area {
    width: 1418px;
    height: 872px;
  }
}

@media (max-width: 767px) {
  .image-area {
    display: none;
  }
}

.image-area::-webkit-scrollbar {
  display: none;
  /* Chrome / Safari */
}

/* 横並びの画像トラック */
.image-track {
  display: flex;
  gap: 0;
}

/* カスタムスクロールバー（image-area直下に配置） */
.custom-scrollbar {
  position: absolute;
  left: 0;
  bottom: 0;
  /* place flush with image bottom */
  width: 100%;
  height: 1.46vw;
  /* 28 / 1920 */
  display: flex;
  align-items: center;
  padding: 0 0.63vw;
  /* 12 / 1920 */
  box-sizing: border-box;
  pointer-events: none;
  z-index: 999;
}

@media (min-width: 1920px) {
  .custom-scrollbar {
    bottom: 0;
    height: 28px;
    padding: 0 12px;
  }
}

@media (max-width: 767px) {
  .custom-scrollbar {
    bottom: 0;
    /* flush with bottom on small screens */
    height: 2.05vw;
    /* 8 / 390 */
    padding: 0 1.28vw;
    /* 5 / 390 */
  }
}

/* サム（操作できる部分） */
.custom-scrollbar .custom-thumb {
  pointer-events: auto;
  height: 0.63vw;
  /* 12 / 1920 */
  min-width: 2.08vw;
  /* 40 / 1920 */
  background: rgba(250, 250, 250, 0.25);
  border-radius: 0;
  border: 0.05vw solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 0.05vw 0.1vw rgba(0, 0, 0, 0.08);
  will-change: transform;
}

@media (min-width: 1920px) {
  .custom-scrollbar .custom-thumb {
    height: 12px;
    min-width: 40px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  }
}

@media (max-width: 767px) {
  .custom-scrollbar .custom-thumb {
    height: 1.28vw;
    /* 5 / 390 */
    min-width: 10.26vw;
    /* 40 / 390 */
    border: 0.13vw solid rgba(0, 0, 0, 0.06);
  }
}

/* サム hover */
.custom-scrollbar .custom-thumb:hover {
  background: rgba(245, 245, 245, 0.35);
}

/* 画像の基本 */
.image-track img {
  width: 36.93vw;
  /* 709 / 1920 */
  height: 45.42vw;
  /* 872 / 1920 */
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

@media (min-width: 1920px) {
  .image-track img {
    width: 709px;
    height: 872px;
  }
}

@media (max-width: 767px) {
  .image-track img {
    width: 41.03vw;
    /* 160 / 390 */
    height: 51.28vw;
    /* 200 / 390 */
  }
}

/* ロゴエリア */
.logo-area {
  margin-top: 9.17vw;
  /* 176 / 1920 */
  display: flex;
  justify-content: center;
}

@media (min-width: 1920px) {
  .logo-area {
    margin-top: 176px;
  }
}

@media (max-width: 767px) {
  .logo-area {
    margin-top: 13.08vw;
    /* 51 / 390 */
  }
}

.logo-area img {
  width: 12.34vw;
  /* 237 / 1920 */
  height: auto;
  display: block;
}

@media (min-width: 1920px) {
  .logo-area img {
    width: 237px;
  }
}

@media (max-width: 767px) {
  .logo-area img {
    width: 30.77vw;
    /* 120 / 390 */
  }
}

/* テキストエリア */
.text-block {
  margin-top: 5.94vw;
  /* 114 / 1920 */
  height: 7.86vw;
  /* 151 / 1920 */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-style: normal;
}

@media (min-width: 1920px) {
  .text-block {
    margin-top: 114px;
    height: 151px;
  }
}

.text-block p {
  font-size: 0.68vw;
  /* 13 / 1920 */
  letter-spacing: 0.052vw;
  line-height: 1.2vw;
  /* 23 / 1920 */
  color: #333;
  margin: 0;
}

@media (min-width: 1920px) {
  .text-block p {
    font-size: 13px;
    letter-spacing: 1px;
    line-height: 23px;
  }
}

@media (max-width: 767px) {
  .text-block {
    margin-top: 5.13vw;
    /* 20 / 390 */
    height: auto;
  }

  .text-block p {
    font-size: 1.28vw;
    /* 5 / 390 */
    letter-spacing: 0.1vw;
    line-height: 2.56vw;
    /* 10 / 390 */
  }
}

/* About Visual */
.about-visual {
  width: 100%;
  max-width: 1920px;
  height: 56.25vw;
  /* 1080 / 1920 */
  max-height: 1080px;
  background: #FFF;
  color: #000;
  position: relative;
}

/* ロゴ配置 */
.about-logo {
  position: absolute;
  top: 16.04vw;
  /* 308 / 1920 */
  left: 8.07vw;
  /* 155 / 1920 */
}

@media (min-width: 1920px) {
  .about-logo {
    top: 308px;
    left: 155px;
  }
}

.about-logo img {
  width: 14.9vw;
  /* 286 / 1920 */
  max-width: 286px;
  /* cap at design size on wide screens */
  height: auto;
  display: block;
}

@media (min-width: 1920px) {
  /* desktop placement for .about-logo is handled above; width is capped by max-width */
}

/* テキストエリア */
.about-text {
  position: absolute;
  top: 22.92vw;
  /* 440 / 1920 */
  left: 9.9vw;
  /* 190 / 1920 */
  height: 20.94vw;
  /* 402 / 1920 */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (min-width: 1920px) {
  .about-text {
    top: 440px;
    left: 190px;
    height: 402px;
  }
}

.about-text-common p,
.about-text-pc p {
  margin: 0;
  font-size: 0.68vw;
  /* 13 / 1920 */
  letter-spacing: 0.034vw;
  line-height: 1.15vw;
  /* 22 / 1920 */
  color: #000;
}

.about-text-common p+p,
.about-text-pc p+p {
  margin-top: 1.15vw;
  /* 22 / 1920 - 1行分の余白 */
}

.about-text-pc {
  margin-top: 4.58vw;
  /* 88 / 1920 - 4行分の余白 (22 * 4) */
}

@media (min-width: 1920px) {

  .about-text-common p,
  .about-text-pc p {
    font-size: 13px;
    letter-spacing: 0.66px;
    line-height: 22px;
  }

  .about-text-common p+p,
  .about-text-pc p+p {
    margin-top: 22px;
  }

  .about-text-pc {
    margin-top: 88px;
    /* 4行分の余白 */
  }
}

/* PC画面ではスマホ用を非表示 */
.about-text-sp {
  display: none;
}

@media (max-width: 767px) {
  .about-visual {
    height: auto;
    min-height: 150vw;
    padding: 0;
    position: relative;
  }

  .about-logo {
    position: absolute;
    top: 0;
    left: 3.08vw;
    /* 12 / 390 */
    height: 13.85vw;
    /* 54 / 390 - .top-linksと同じ高さ */
    display: flex;
    align-items: center;
    margin-bottom: 0;
  }

  .about-logo img {
    width: 26.67vw;
    /* 104 / 390 */
    display: block;
  }

  .about-text {
    position: absolute;
    top: 51.03vw;
    /* (115 + 22 + 44) / 390 = 181 / 390 */
    left: 50%;
    transform: translateX(-50%);
    height: auto;
    width: 73.59vw;
    /* 287 / 390 */
    padding-top: 0;
    padding-bottom: 10.26vw;
    /* 40 / 390 */
  }

  .about-text-common p,
  .about-text-sp p {
    font-size: 2.05vw;
    /* 8 / 390 */
    letter-spacing: 0.11vw;
    /* 0.41 / 390 */
    line-height: 3.33vw;
    /* 13 / 390 */
    margin-bottom: 0;
  }

  .about-text-common p+p,
  .about-text-sp p+p {
    margin-top: 3.33vw;
    /* 13 / 390 - 1行分の余白 */
  }

  .about-text-pc {
    display: none;
  }

  .about-text-sp {
    display: block;
    margin-top: 13.33vw;
    /* 52 / 390 - 共通部分との間に4行分の余白 */
  }
}

/* スマホ用aboutタイトル（デフォルトは非表示） */
.about-title-sp {
  display: none;
}

@media (max-width: 767px) {
  .about-title-sp {
    display: block;
    position: absolute;
    top: 29.49vw;
    /* (54 + 61) / 390 = 115 / 390 */
    left: 0;
    width: 100%;
    text-align: center;
    font-family: "mukta-mahee", sans-serif;
    font-size: 3.33vw;
    /* 13 / 390 */
    letter-spacing: 0.17vw;
    /* 0.66 / 390 */
    line-height: 5.64vw;
    /* 22 / 390 */
    font-weight: normal;
    margin: 0;
  }
}

/* =========================
   Products Page
========================= */
.products-visual {
  width: 100%;
  max-width: 1920px;
  background: #FFF;
  color: #000;
  position: relative;
}

/* ヘッダー */
.products-header {
  height: 13.91vw;
  /* 267 / 1920 */
  position: relative;
}

@media (min-width: 1920px) {
  .products-header {
    height: 267px;
  }
}

/* ロゴ配置 */
.products-logo {
  position: absolute;
  top: 5.21vw;
  /* 100 / 1920 */
  left: 5.36vw;
  /* 103 / 1920 */
  width: 15.05vw;
  /* 289 / 1920 */
  max-width: 289px;
  /* cap at design size on wide screens */
  height: auto;
}

/* Make the logo image scale with the container so it becomes responsive
   (container uses vw with a max-width cap). This mirrors .about-logo img behavior. */
.products-logo img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 1920px) {
  .products-logo {
    top: 100px;
    left: 103px;
    /* placement for desktop; width is handled by max-width to allow fluid resizing */
    height: auto;
  }
}

@media (max-width: 767px) {
  .products-header {
    height: auto;
    padding: 5.13vw 0;
    /* 20 / 390 */
  }

  .products-logo {
    position: absolute;
    top: 0;
    left: 3.08vw;
    /* 12 / 390 */
    width: 26.67vw;
    /* 104 / 390 */
    height: 13.85vw;
    /* 54 / 390 */
    display: flex;
    align-items: center;
    z-index: 10;
  }

  .products-logo img {
    max-width: 26.67vw;
    /* 104 / 390 */
    width: 26.67vw;
    height: auto;
    display: block;
  }
}

/* カテゴリ名 */
.category-title {
  margin-top: 2.29vw;
  /* 44 / 1920 */
  text-align: center;
  font-size: 1.46vw;
  /* 28 / 1920 */
  letter-spacing: 0.075vw;
  line-height: 2.45vw;
  /* 47 / 1920 */
}

@media (min-width: 1920px) {
  .category-title {
    margin-top: 44px;
    font-size: 28px;
    letter-spacing: 1.43px;
    line-height: 47px;
  }
}

@media (max-width: 767px) {
  .category-title {
    /* top-links と category-title の間を 61px (at 390px) にする = 61 / 3.9 = 15.641vw */
    margin-top: 15.64vw;
    /* ~61px @ 390px */
    font-size: 3.59vw;
    /* 14 / 390 */
    letter-spacing: 0.18vw;
    line-height: 5.13vw;
    /* 20 / 390 */
  }
}

/* 商品一覧 */
.products-list {
  margin-top: 2.97vw;
  /* 57 / 1920 */
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 14.27vw;
  /* 274 / 1920 */
}

@media (min-width: 1920px) {
  .products-list {
    margin-top: 57px;
    padding-bottom: 274px;
  }
}

/* 共通 */
.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 11.72vw);
  /* 225 / 1920 */
  column-gap: 1.61vw;
  /* 31 / 1920 */
  row-gap: 3.91vw;
  /* 75 / 1920 */
  justify-content: center;
}

@media (min-width: 1920px) {
  .products-grid {
    grid-template-columns: repeat(5, 225px);
    column-gap: 31px;
    row-gap: 75px;
  }
}

@media (max-width: 767px) {

  /* category-title と products-list の間を 50px (at 390px) にする = 50 / 3.9 = 12.8205vw */
  .products-list {
    margin-top: 12.82vw;
    /* ~50px @ 390px */
    /* スマホ基準(390px)で下部余白を約84pxにする (84/390*100 = 21.53846vw)
       clamp を使い最小・最大を設定して極端な拡大を防ぐ */
    padding-bottom: clamp(20px, 21.53846vw, 160px);
  }

  /* product-item: 135px @390 => 135/3.9 = 34.615vw */
  /* gap: 17px @390 => 17/3.9 = 4.359vw */
  /* img height: 155px @390 => 155/3.9 = 39.743vw */
  .products-grid {
    grid-template-columns: repeat(2, 34.62vw);
    /* ~135px @390 */
    column-gap: 4.36vw;
    /* ~17px @390 */
    row-gap: 7.69vw;
    /* 30 / 390 */
  }
}

/* bracelet ページ専用 */
.bracelet-grid {
  /* Default: make responsive using auto-fit/ minmax so the grid can
     shrink to the number of items when fewer than max columns. */
  column-gap: 1.61vw;
  /* keep same gap as .products-grid */
  row-gap: 3.91vw;
  /* limit the maximum width to exactly 5 columns so we don't create
     more than 5 items per row on wide screens */
  width: min(100%, calc(5 * 11.72vw + 4 * 1.61vw));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(11.72vw, 1fr));
  justify-content: center;
  /* center when fewer than max columns */
}

@media (min-width: 1920px) {
  .bracelet-grid {
    /* Desktop fixed sizing: 225px columns, max 5 columns */
    column-gap: 31px;
    row-gap: 75px;
    width: min(100%, calc(5 * 225px + 4 * 31px));
    grid-template-columns: repeat(auto-fit, minmax(225px, 1fr));
    justify-content: center;
  }
}

/* Override for small screens: always 2 columns */
@media (max-width: 767px) {
  .bracelet-grid {
    display: grid;
    grid-template-columns: repeat(2, 34.62vw);
    /* ~135px @390 */
    column-gap: 4.36vw;
    row-gap: 7.69vw;
    width: 87.18vw;
    /* match other product grids */
    margin: 0 auto;
    justify-content: center;
  }
}

.product-info {
  margin-top: 0.78vw;
  /* 15 / 1920 */
}

@media (min-width: 1920px) {
  .product-info {
    margin-top: 15px;
  }
}

.product-item {
  text-align: center;
  display: block;
  text-decoration: none;
  color: inherit;
}

.product-item img {
  width: 11.72vw;
  /* 225 / 1920 */
  height: 17.55vw;
  /* 337 / 1920 */
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

@media (min-width: 1920px) {
  .product-item img {
    width: 225px;
    height: 337px;
  }
}

@media (max-width: 767px) {
  .product-item img {
    width: 100%;
    height: 39.74vw;
    /* ~155px @ 390px */
    object-fit: cover;
  }
}

.product-name {
  font-size: 0.78vw;
  /* 15 / 1920 */
  letter-spacing: 0.032vw;
  line-height: 1.3vw;
  /* 25 / 1920 */
  color: #000;
  margin-bottom: 0.36vw;
  /* 7 / 1920 */
}

@media (min-width: 1920px) {
  .product-name {
    font-size: 15px;
    letter-spacing: 0.61px;
    line-height: 25px;
    margin-bottom: 7px;
  }
}

@media (max-width: 767px) {
  .product-info {
    margin-top: 2.05vw;
    /* 8 / 390 */
  }

  .product-name {
    font-size: 2.56vw;
    /* 10 / 390 */
    letter-spacing: 0.1vw;
    line-height: 3.85vw;
    /* 15 / 390 */
    margin-bottom: 1.28vw;
    /* 5 / 390 */
  }
}

.product-price {
  font-family: 'Galvji', sans-serif;
  font-size: 0.63vw;
  /* 12 / 1920 */
  letter-spacing: 0.026vw;
  line-height: 0.78vw;
  /* 15 / 1920 */
  color: #000;
  margin: 0;
}

@media (min-width: 1920px) {
  .product-price {
    font-size: 12px;
    letter-spacing: 0.49px;
    line-height: 15px;
  }
}

@media (max-width: 767px) {
  .product-price {
    font-size: 2.05vw;
    /* 8 / 390 */
    letter-spacing: 0.08vw;
    line-height: 2.56vw;
    /* 10 / 390 */
  }
}

/* =========================
   Product Detail Page
========================= */
.product-detail {
  margin-top: 3.96vw;
  /* 76 / 1920 */
  display: flex;
  justify-content: center;
  margin-bottom: 3.96vw;
}

@media (min-width: 1920px) {
  .product-detail {
    margin-top: 76px;
    margin-bottom: 76px;
  }
}

.product-detail-inner {
  display: flex;
  width: 83.18vw;
  /* 1597 / 1920 */
  align-items: stretch; /* stretch so divider can match image height */
}

@media (min-width: 1920px) {
  .product-detail-inner {
    width: 1597px;
  }
}

@media (max-width: 767px) {
  .product-detail {
    /* スマホ(390px基準)で .top-links の下部から .product-detail-inner の上部までの
     ギャップを約62pxにするため、margin-top を 62px 相当の vw に設定 */
    margin-top: 15.90vw;
    /* = 62 / 390 * 100 */
    /* スマホ基準で .product-detail の下部にも余白を確保（約84px @390） */
    padding-bottom: clamp(20px, 21.53846vw, 160px);
    margin-bottom: 0; /* disable bottom margin on mobile */
  }

  .product-detail-inner {
    /* モバイルではコンテナ幅を画像幅に合わせ、vw による可変サイズにする */
    width: 58.97vw;
    /* = 230 / 390 * 100 */
    flex-direction: column;
    margin: 0 auto;
    /* 中央寄せ */
    align-items: center;
  }
}

/* 画像エリア */
.product-detail-images {
  width: 45.63vw;
  /* 876 / 1920 */
  height: 21.25vw;
  /* 408 / 1920 */
  overflow-x: auto;
  overflow-y: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

@media (min-width: 1920px) {
  .product-detail-images {
    width: 876px;
    height: 408px;
  }
}

@media (max-width: 767px) {
  .product-detail-images {
    /* モバイルでは画像コンテナを vw による可変サイズにする */
    width: 59.97vw;
    /* = 230 / 390 * 100 */
    height: 74.36vw;
    /* = 290 / 390 * 100 */
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
     /* remove variable left margin so image container aligns with layout */
     margin-left: 0 !important;
  }
}

.product-detail-images::-webkit-scrollbar {
  display: none;
}

.detail-image-track {
  display: flex;
  gap: 1.98vw;
  /* 38 / 1920 */
}

@media (min-width: 1920px) {
  .detail-image-track {
    gap: 38px;
  }
}

@media (max-width: 767px) {
  .detail-image-track {
    gap: 2.56vw;
    /* 10 / 390 */
    /* padding は外し、コンテナ幅を画像幅に合わせて中央表示させる設計に変更 */
    padding-left: 0;
    padding-right: 0;
  }
}

/* Mobile: remove gap between images and enable smooth snap per-image */
@media (max-width: 767px) {
  .detail-image-track {
    gap: 0; /* no spacing between images on mobile */
  }

  .product-detail-images {
    scroll-behavior: smooth; /* programmatic scroll smoothness */
    -webkit-overflow-scrolling: touch; /* ensure smooth momentum scrolling */
  }

  /* Ensure picture containers also participate in scroll-snap */
  .detail-image-track picture,
  .detail-image-track img {
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }
}

.detail-image-track img {
  width: 15.05vw;
  /* 289 / 1920 */
  height: 21.2vw;
  /* 407 / 1920 */
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

@media (min-width: 1920px) {
  .detail-image-track img {
    width: 289px;
    height: 407px;
  }
}

@media (max-width: 767px) {
  .detail-image-track img {
    /* 390px を基準にした可変サイズ（vw）: 230/390*100 = 58.97vw, 290/390*100 = 74.36vw */
    width: 59.97vw;
    height: 74.36vw;
    object-fit: cover;
    flex-shrink: 0;
    scroll-snap-align: center;
    display: block;
  }
}

/* 縦線 */
.divider {
  width: 0.05vw;
  /* 1 / 1920 */
  background: #000;
  height: 21.25vw; /* match product image height on PC */
  margin: 0 2.08vw;
  /* 40 / 1920 */
}

@media (min-width: 1920px) {
  .divider {
    width: 1px;
    height: 408px;
    margin: 0 40px;
  }
}

@media (max-width: 767px) {
  .divider {
    /* PCでは縦線だが、スマホ時は90度倒して画像下に横線を表示する */
    display: block;
    /* 幅247px@390px基準 -> 247/390*100 = 63.33vw */
    /* match image width on mobile */
    width: 58.97vw;
    /* 高さ1px相当をvwで指定 -> 1/390*100 = 0.256vw */
    height: 0.26vw;
    background: #000;
    /* 画像下 46px の余白を確保 -> 46/390*100 = 11.79vw */
    margin: 11.79vw auto 0;
    box-sizing: border-box;
  }
}

/* テキストエリア */
.product-detail-info {
  width: 28.96vw;
  /* 556 / 1920 */
  height: auto; /* remove fixed height so content can grow */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

@media (min-width: 1920px) {
  .product-detail-info {
    width: 556px;
    height: auto; /* let it match image height via flex stretch */
  }
}

@media (max-width: 767px) {
  .product-detail-info {
    /* 幅を 247px@390px 基準にして中央配置、divider の下に 36px（vw換算）開ける */
    width: 63.33vw;
    /* = 247 / 390 * 100 */
    height: auto;
    margin: 9.23vw auto 0;
    /* = 36 / 390 * 100 -> 9.23vw ; center horizontally */
  }
}

/* product detail name base styles */
.product-detail-name {
  /* remove margin-left so image container aligns with layout */
  margin-left: 0;
  line-height: 1.98vw;
  /* 38 / 1920 */
  margin-bottom: 10.47vw;
  /* 201 / 1920 */
}

@media (min-width: 1920px) {
  .product-detail-name {
    font-size: 23px;
    letter-spacing: 0.94px;
    line-height: 38px;
    margin-bottom: 201px;
  }
}

@media (max-width: 767px) {
  .product-detail-name {
    font-size: 3.59vw;
    /* 14 / 390 */
    letter-spacing: 0.15vw;
    line-height: 5.13vw;
    /* 20 / 390 */
    margin-bottom: 5.13vw;
    /* 20 / 390 */
  }
}

.product-detail-price {
  font-family: 'Galvji', sans-serif;
  font-size: 0.94vw;
  /* 18 / 1920 */
  text-align: right;
  letter-spacing: 0.039vw;
  line-height: 1.09vw;
  /* 21 / 1920 */
  margin-bottom: 1.04vw;
  /* 20 / 1920 */
}

@media (min-width: 1920px) {
  .product-detail-price {
    font-size: 18px;
    letter-spacing: 0.74px;
    line-height: 21px;
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .product-detail-price {
    font-size: 2.82vw;
    /* 11 / 390 */
    letter-spacing: 0.1vw;
    line-height: 3.59vw;
    /* 14 / 390 */
    margin-bottom: 3.85vw;
    /* 15 / 390 */
    text-align: left;
  }
}

.product-detail-description {
  font-size: 0.63vw;
  /* 12 / 1920 */
  letter-spacing: 0.026vw;
  line-height: 1.04vw;
  /* 20 / 1920 */
}

@media (min-width: 1920px) {
  .product-detail-description {
    font-size: 12px;
    letter-spacing: 0.49px;
    line-height: 20px;
  }
}

@media (max-width: 767px) {
  .product-detail-description {
    font-size: 2.05vw;
    /* 8 / 390 */
    letter-spacing: 0.08vw;
    line-height: 3.33vw;
    /* 13 / 390 */
  }
}

/* テキストエリア */
.shop-text {
  position: absolute;
  /* match .about-text default position so .shop-text aligns to about-logo like about page */
  top: 22.92vw;
  /* 440 / 1920 */
  left: 9.9vw;
  /* 190 / 1920 - match .about-text left */
  /* fluid width: 362px @1920px -> 362/1920*100 = 18.854166...vw */
  width: 18.85vw;
  /* ~362px @1920 */
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (min-width: 1920px) {
  .shop-text {
    /* align with about-text desktop placement */
    top: 440px;
    left: 190px;
    /* explicit fixed width on wide desktop */
    width: 362px;
  }
}

@media (max-width: 767px) {
  .shop-text {
    /* On mobile, position .shop-text relative to the mobile H1 (.about-title-sp)
       .about-title-sp top = 29.49vw, line-height ~= 5.64vw -> h1 bottom = 35.13vw
       desired gap 42px -> 42/390*100 = 10.77vw => top = 35.13 + 10.77 = 45.9vw */
    position: absolute;
    top: 45.9vw;
    left: 50%;
    transform: translateX(-50%);
    width: 73.59vw;
    /* same as .about-text width on mobile */
    height: auto;
    display: block;
    padding: 0 0 10.26vw 0;
    /* keep bottom padding for spacing */
    box-sizing: border-box;
  }
}

.shop-text p {
  margin: 0;
}

.shop-text p:nth-of-type(1) {
  font-size: 1.04vw;
  /* 20 / 1920 */
  letter-spacing: 0.077vw;
  line-height: 1.77vw;
  /* 34 / 1920 */
}

@media (min-width: 1920px) {
  .shop-text p:nth-of-type(1) {
    font-size: 20px;
    letter-spacing: 1.48px;
    line-height: 34px;
  }
}

.shop-text p:nth-of-type(2) {
  font-size: 0.89vw;
  /* 17 / 1920 */
  letter-spacing: 0.066vw;
  line-height: 1.77vw;
  /* 34 / 1920 */
  margin-bottom: 1.88vw;
  /* 36 / 1920 */
}

@media (min-width: 1920px) {
  .shop-text p:nth-of-type(2) {
    font-size: 17px;
    letter-spacing: 1.26px;
    line-height: 34px;
    margin-bottom: 36px;
  }
}

.shop-text p:nth-of-type(3) {
  font-size: 0.89vw;
  /* 17 / 1920 */
  letter-spacing: 0.066vw;
  line-height: 1.46vw;
  /* 28 / 1920 */
  margin-bottom: 1.98vw;
  /* 38 / 1920 */
}

@media (min-width: 1920px) {
  .shop-text p:nth-of-type(3) {
    font-size: 17px;
    letter-spacing: 1.26px;
    line-height: 28px;
    margin-bottom: 38px;
  }
}

.shop-text p:nth-of-type(4) {
  font-size: 0.99vw;
  /* 19 / 1920 */
  letter-spacing: 0.049vw;
  line-height: 1.61vw;
  /* 31 / 1920 */
  margin-bottom: 0.73vw;
  /* 14 / 1920 */
}

@media (min-width: 1920px) {
  .shop-text p:nth-of-type(4) {
    font-size: 19px;
    letter-spacing: 0.95px;
    line-height: 31px;
    margin-bottom: 14px;
  }
}

.shop-text p:nth-of-type(5) {
  font-size: 0.99vw;
  /* 19 / 1920 */
  letter-spacing: 0.02vw;
  line-height: 1.61vw;
  /* 31 / 1920 */
  margin-bottom: 0.63vw;
  /* 12 / 1920 */
}

@media (min-width: 1920px) {
  .shop-text p:nth-of-type(5) {
    font-size: 19px;
    letter-spacing: 0.38px;
    line-height: 31px;
    margin-bottom: 12px;
  }
}

.accent-o {
  font-size: 0.78vw;
  /* 15 / 1920 */
}

@media (min-width: 1920px) {
  .accent-o {
    font-size: 15px;
  }
}

.open-hours {
  display: table;
}

.open-hours .row {
  display: table-row;
}

.open-hours .label,
.open-hours .value {
  display: table-cell;
  padding: 0.1vw 0.42vw 0.1vw 0;
  /* 2px 8px 2px 0 */
  vertical-align: top;
  font-size: 0.99vw;
  /* 19 / 1920 */
  letter-spacing: 0.039vw;
  line-height: 1.77vw;
  /* 34 / 1920 */
}

@media (min-width: 1920px) {

  .open-hours .label,
  .open-hours .value {
    padding: 2px 8px 2px 0;
    font-size: 19px;
    letter-spacing: 0.74px;
    line-height: 34px;
  }
}

@media (max-width: 767px) {

  .shop-text p:nth-of-type(1),
  .shop-text p:nth-of-type(2),
  .shop-text p:nth-of-type(3),
  .shop-text p:nth-of-type(4),
  .shop-text p:nth-of-type(5) {
    font-size: 2.05vw;
    /* 8 / 390 */
    letter-spacing: 0.08vw;
    line-height: 3.33vw;
    /* 13 / 390 */
    margin-bottom: 2.56vw;
    /* 10 / 390 */
  }

  .accent-o {
    font-size: 2.05vw;
    /* 8 / 390 */
  }

  .open-hours .label,
  .open-hours .value {
    padding: 0.26vw 1.03vw 0.26vw 0;
    font-size: 2.05vw;
    /* 8 / 390 */
    letter-spacing: 0.08vw;
    line-height: 3.33vw;
    /* 13 / 390 */
  }
}

.open-hours .label {
  white-space: nowrap;
}

/* Highlighted parts in shop text: match style of 4th <p> (TEL) */
.shop-text .shop-data {
  font-size: 0.99vw;
  /* match p:nth-of-type(4) */
  letter-spacing: 0.049vw;
  line-height: 1.61vw;
  display: inline;
}

@media (min-width: 1920px) {
  .shop-text .shop-data {
    font-size: 19px;
    letter-spacing: 0.95px;
    line-height: 31px;
  }
}

@media (max-width: 767px) {
  .shop-text .shop-data {
    font-size: 2.05vw;
    /* mobile same as the p rules */
    letter-spacing: 0.08vw;
    line-height: 3.33vw;
  }
}

/* ページネーションの最小スタイル */
.pagination {
  text-align: center;
  margin: 3.39vw 0;
  /* 65 / 1920 */
}

@media (min-width: 1920px) {
  .pagination {
    margin: 65px 0;
  }
}

.pagination a {
  display: inline-block;
  padding: 0.31vw 0.52vw;
  /* 6px 10px */
  margin: 0 0.31vw;
  /* 6px */
  color: #000;
  text-decoration: none;
  border-radius: 0.21vw;
  /* 4px */
  font-size: 0.78vw;
  /* 15 / 1920 */
}

@media (min-width: 1920px) {
  .pagination a {
    padding: 6px 10px;
    margin: 0 6px;
    border-radius: 4px;
    font-size: 15px;
  }
}

.pagination a.current {
  text-decoration: underline;
}

.pagination a.disabled {
  color: #999;
  pointer-events: none;
}

/* ページネーション:クリックで拡大されるのを防ぎ、選択はアンダーライン（border-bottom）で表現 */
.pagination a {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  transform: none;
  -webkit-tap-highlight-color: transparent;
}

/* 現在ページは下線（太め）で表示。text-decoration は外す */
.pagination a.current {
  text-decoration: none;
  position: relative;
  padding-bottom: 0.21vw;
  /* 4 / 1920 */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (min-width: 1920px) {
  .pagination a.current {
    padding-bottom: 4px;
  }
}

@media (max-width: 767px) {
  .pagination {
    margin: 5.13vw 0;
    /* 20 / 390 */
  }

  .pagination a {
    padding: 1.03vw 1.54vw;
    /* 4px 6px */
    margin: 0 0.77vw;
    /* 3px */
    border-radius: 0.51vw;
    /* 2px */
    font-size: 2.56vw;
    /* 10 / 390 */
  }

  .pagination a.current {
    padding-bottom: 0.77vw;
    /* 3 / 390 */
  }
}

.pagination a.current::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0.05vw;
  /* 1 / 1920 */
  background: #000;
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform;
}

@media (min-width: 1920px) {
  .pagination a.current::after {
    height: 1px;
  }
}

/* フォーカス・アクティブ時の不要な拡大やアウトラインを抑制し、同様に下線を出す */
.pagination a:focus,
.pagination a:active,
.pagination a:focus-visible {
  outline: none;
  transform: none;
}

/* 無効化状態 */
.pagination a.disabled {
  color: #999;
  pointer-events: none;
}

/* =========================
   共通：画像エリア＋バー
========================= */
.image-area,
.product-detail-images {
  overflow-x: auto;
  overflow-y: hidden;
  position: relative;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.image-area::-webkit-scrollbar,
.product-detail-images::-webkit-scrollbar {
  display: none;
}

/* 共通：トラック */
.image-track,
.detail-image-track {
  display: flex;
  position: relative;
}

/* 共通：カスタムスクロールバー（重複を削除し、上で定義済み） */

/* 共通：サム - image-area用 */
.image-area .custom-scrollbar .custom-thumb {
  pointer-events: auto;
  height: 0.63vw;
  /* 12 / 1920 */
  min-width: 2.08vw;
  /* 40 / 1920 */
  background: rgba(248, 248, 248, 0.3);
  border: 0.05vw solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 0.05vw 0.1vw rgba(0, 0, 0, 0.08);
  will-change: transform;
}

@media (min-width: 1920px) {
  .image-area .custom-scrollbar .custom-thumb {
    height: 12px;
    min-width: 40px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  }
}

.image-area .custom-scrollbar .custom-thumb:hover {
  background: rgba(253, 253, 253, 0.35);
}

/* 共通：サム - product-detail-images用 */
.product-detail-images .custom-scrollbar {
  /* move slightly below the image bottom so the bar sits just under the image */
  /* ユーザー要望により少し深めに配置（約 -1vw） */
  bottom: -1vw;
  height: 1.46vw;
  /* 28 / 1920 */
  padding: 0 0.63vw;
  /* 12 / 1920 */
}

@media (min-width: 1920px) {
  .product-detail-images .custom-scrollbar {
    /* desktop: nudge down further; increased per request */
    bottom: -24px;
    height: 28px;
    padding: 0 12px;
  }
}

@media (max-width: 767px) {
  .product-detail-images .custom-scrollbar {
    /* mobile: nudge down proportionally */
    bottom: -1.28vw;
    height: 2.05vw;
    /* 8 / 390 */
    padding: 0 1.28vw;
    /* 5 / 390 */
  }
}

.product-detail-images .custom-scrollbar .custom-thumb {
  pointer-events: auto;
  height: 0.31vw;
  /* 6 / 1920 */
  min-width: 2.08vw;
  /* 40 / 1920 */
  background: rgba(0, 0, 0, 0.3);
  border: 0.05vw solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 0.05vw 0.1vw rgba(0, 0, 0, 0.08);
  will-change: transform;
}

@media (min-width: 1920px) {
  .product-detail-images .custom-scrollbar .custom-thumb {
    height: 6px;
    min-width: 40px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  }
}

@media (max-width: 767px) {
  .product-detail-images .custom-scrollbar .custom-thumb {
    height: 0.77vw;
    /* 3 / 390 */
    min-width: 7.69vw;
    /* 30 / 390 */
    border: 0.13vw solid rgba(0, 0, 0, 0.06);
  }
}

.product-detail-images .custom-scrollbar .custom-thumb:hover {
  background: rgba(5, 5, 5, 0.35);
}

/* =========================
   トップページ用（image-area）- 重複削除、上で定義済み
========================= */

/* =========================
   商品詳細ページ用（product-detail-images）- 重複削除、上で定義済み
========================= */
.detail-image-track img:last-child {
  margin-right: 0;
}