/* =====================================================
   PRODUCT DETAIL COMMON (FULL BLEED + NO H-SCROLL)
===================================================== */

/* ---------- emanon 制約の完全解除 ---------- */
.l-content,
.l-content__inner,
.section-inner,
.section-wrapper,
main,
#content,
#main {
  max-width: none !important;
  padding: 0 !important;
  transform: none !important;
  filter: none !important;
}

/* 横スクロール完全遮断 */
html, body {
  overflow-x: hidden !important;
}

/* =====================================================
   BASE
===================================================== */
.product-detail {
  width: 100%;
  margin: 0;
  padding: 0;
  background: #fff;
  overflow-x: hidden;
}

/* =====================================================
   FV
===================================================== */
.product-fv {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.product-fv__image {
  width: 100%;
  height: 70vh;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.product-fv__title {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: clamp(38px, 6vw, 56px);
  font-weight: 700;
  letter-spacing: .1em;
  text-shadow: 0 4px 20px rgba(0,0,0,.6);
}

/* =====================================================
   PRODUCT SLIDE
===================================================== */
.product-slide {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  background: #000;
}

.product-slide__track {
  display: flex;
  width: max-content;
  animation: product-slide-loop 40s linear infinite;
}

.product-slide__list {
  display: flex;
  gap: 5px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-slide__item {
  width: 300px;
}

.product-slide__item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

@keyframes product-slide-loop {
  to { transform: translateX(-50%); }
}

/* =====================================================
   STRENGTHS
===================================================== */
.strength-wrap {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 90px 0;
  overflow: hidden;
}

.strength-wrap::before,
.strength-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 50%;
  z-index: 0;
}

.strength-wrap::before { left: 0; background: #fff; }
.strength-wrap::after  { right: 0; background: #fff2eb; }

.strength-list {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.strength-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 80px;
}

.strength-item.reverse { direction: rtl; }
.strength-item.reverse > * { direction: ltr; }

.strength-image img {
  width: 53vw;
  border-radius: 28px;
  max-width: none;
}

.strength-item:not(.reverse) img { margin-left: -6vw; }
.strength-item.reverse img       { margin-right: -6vw; }

.strength-text {
  max-width: 640px;
}

.strength-text h3 {
  font-size: 36px;
  font-weight: 800;
}

.strength-text .hl { color: #f47a20; }

/* CTA */
.product-matterport__cta {
  margin-top: 32px;
  text-align: center;
}

.product-matterport__button {
  display: inline-block;
  padding: 16px 36px;
  background: #f05a24;
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
}

/* =====================================================
   COMMON CTA（PRODUCT DETAIL 用）
===================================================== */

.product-detail .common-cta {
  margin-top: 80px;
  padding-bottom: 20px;
  text-align: center;
  position: relative;
  z-index: 3;
}

/* ボタン本体 */
.product-detail .common-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 42px;
  border-radius: 999px;
  background: #f05a24;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
  box-shadow: 0 12px 30px rgba(240, 90, 36, 0.35);
}

/* hover */
.product-detail .common-button:hover {
  opacity: 0.95;
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(240, 90, 36, 0.45);
}



/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 768px) {

  .strength-item {
    grid-template-columns: 1fr;
  }

  .strength-image img {
    width: 100%;
    margin: 0 !important;
  }

  .product-detail .common-cta {
    margin-top: 60px;
    padding: 0 20px 10px;
  }

  .product-detail .common-button {
    width: 100%;
    max-width: 360px;
    padding: 16px 24px;
    font-size: 15px;
  }
}