/* ===========================
   Abu Garcia VoltiQ LP - Styles
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600&family=Noto+Sans+JP:wght@400;500;700&display=swap');

:root {
  --abugarcia: rgba(200, 16, 46, 1);
  --abugarcia-black: rgba(45, 41, 38, 1);
  --p: rgba(51, 51, 51, 1);
  --gray-bg: #f2f2f2;
}

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

body {
  font-family: 'Noto Sans JP', Helvetica, sans-serif;
  background: #fff;
  color: var(--abugarcia-black);
  overflow-x: hidden;
}

/* ===== HEADER ===== */
header.lp-header {
  width: 100%;
  height: 100px;
  background: var(--abugarcia-black);
  position: relative;
}
header.lp-header img {
  position: absolute;
  width: 85px;
  height: 50px;
  top: 25px;
  left: 40px;
  object-fit: contain;
}

/* ===== WRAPPER ===== */
.lp-page {
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* ===== HERO BANNER ===== */
.lp-hero {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0;
  padding-bottom: 0;
  position: relative; /* catchcopyの基準 */
}

/* ── 動画ラッパー：16:9アスペクト比固定+60px、幅100% ── */
.lp-hero__video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: calc(41.9% + 60px);
  background: #000;
}

/* iframeを親いっぱいに引き伸ばし。IFrame APIが生成するiframeにも同時適用 */
.lp-hero__video,
#yt-player,
#yt-player iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  /* 動画の黒帯を消すため16:9より少し大きめに */
  width: 120%;
  height: 120%;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}

/* 暗めオーバーレイ */
.lp-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

/* PC/SP共通マスク（黒60%） */
.lp-hero__mask {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
  pointer-events: none;
}

/* PC/SP共通ロゴ */
.lp-hero__logo {
  position: absolute;
  width: 340px;
  max-width: 50%;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  z-index: 3;
  pointer-events: none;
}

/* 左下キャッチコピー */
.lp-hero__catchcopy {
  position: absolute;
  bottom: 60px;
  left: 60px;
  font-family: 'Noto Sans JP', Helvetica, sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1.4px;
  line-height: 1.5;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  z-index: 10;
  pointer-events: none;
  width: calc(100% - 120px);
}

/* ===== BACKGROUND INTRO SECTION ===== */
.lp-product-intro {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding-bottom: 21.5%; /* 43.05%の半分 */
  min-height: 300px;
}
.lp-product-intro__bg {
  display: none;
}
.lp-product-intro__content {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  padding: 5% 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: url('../images/voltiq-bg-reel.png');
  background-size: 100% 200%; /* 横幅そのまま、縦は2倍拡大して上半分を表示 */
  background-position: center top;
  transform: none;
  left: 0;
  bottom: 0;
  gap: 12px;
}
.lp-product-intro__logo {
  width: 600px;
  max-width: 80%;
  display: block;
  margin: 0 auto 8px;
}
.lp-product-intro__text-block {
  display: contents;
}
.lp-product-intro__body {
  font-family: 'Noto Sans JP', Helvetica, sans-serif;
  font-size: 15px;
  color: var(--abugarcia-black);
  letter-spacing: 0.75px;
  line-height: 28px;
  width: 100%;
  max-width: 960px;
  padding: 0 40px;
}
.lp-product-intro__body--sm {
  font-size: 13px;
  line-height: 23px;
  color: #444;
  width: 100%;
  max-width: 960px;
  padding: 0 40px;
}

/* ===== SLIDESHOW SECTION ===== */
.lp-slideshow {
  width: 100%;
  background: #fff;
  overflow: hidden;
  padding: 0;
}
.lp-slideshow__track {
  display: flex;
  width: max-content;
  gap: 36px;
  animation: marquee 36s linear infinite;
  padding: 30px 0;
}
.lp-slideshow__track:hover {
  animation-play-state: paused;
}
.lp-slideshow__track img {
  height: 210px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== FEATURES & FUNCTIONS ===== */
.lp-features {
  width: 100%;
  min-height: 2905px;
  padding: 104px 0 110px; /* 下110px = 余白70px + h2の半分40px */
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background-color: #211b1b;
}
.lp-features .bg-mask {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top; /* 上端から配置して下端の色変化を画面外へ */
  z-index: 0;
}
.lp-features__inner {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 960px;
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin: 0 auto;
}
.lp-features__header {
  width: 100%;
  max-width: 704px;
  position: relative;
  margin: 0 auto;
}
.lp-features__header h2 {
  font-family: 'Oswald', Helvetica, sans-serif;
  font-weight: 400;
  font-size: clamp(40px, 5vw, 72px);
  color: #fff;
  letter-spacing: 3.6px;
  white-space: nowrap;
  text-shadow: 0 0 23.88px rgba(0,0,0,0.08);
  margin-bottom: 16px;
}
/* features hero video（旧hero-img） */
.lp-features__hero-video {
  width: 100%;
  max-width: 700px;
  aspect-ratio: 16 / 9;
  position: relative;
  background: #000;
}
.lp-features__hero-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
/* サムネイルリンク */
.lp-features__video-link {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}
.lp-features__video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lp-features__video-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  background: rgba(0,0,0,0.65);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lp-features__video-play::after {
  content: '';
  display: block;
  width: 0; height: 0;
  border-style: solid;
  border-width: 14px 0 14px 24px;
  border-color: transparent transparent transparent #fff;
  margin-left: 5px;
}
.lp-features__video-link:hover .lp-features__video-play {
  background: rgba(200,16,46,0.85);
}
.lp-features__intro-text {
  font-size: 15px;
  color: #fff;
  letter-spacing: 0.75px;
  line-height: 27px;
  margin-top: 16px;
}
@media (max-width: 1000px) {
  .lp-features { min-height: unset; padding: 60px 0; }
  .lp-features__inner { gap: 50px; }
}
@media (max-width: 700px) {
  .lp-features { padding: 40px 0; }
  .lp-features__inner { gap: 36px; }
  .lp-features__number { font-size: 48px; min-width: 54px; }
}

/* Feature Article */
.lp-features__article {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}
.lp-features__title-row {
  display: flex;
  align-items: center;
  gap: 32px;
  width: 100%;
}
.lp-features__number {
  font-family: 'Oswald', Helvetica, sans-serif;
  font-size: 72px;
  color: #fff;
  letter-spacing: 3.6px;
  min-width: 81px;
  text-shadow: 0 0 23.88px rgba(0,0,0,0.08);
}
.lp-features__divider {
  width: 1px;
  height: 67.59px;
  object-fit: cover;
}
.lp-features__title-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.lp-features__subtitle {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.8px;
  line-height: 1.5;
  text-shadow: 0 0 16px rgba(0,0,0,0.08);
}
.feature-subtitle { /* 旧クラス名 互換 */
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.8px;
  line-height: 1.5;
  text-shadow: 0 0 16px rgba(0,0,0,0.08);
}
.lp-features__title {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1.6px;
  line-height: 1.4;
  text-shadow: 0 0 16px rgba(0,0,0,0.08);
}
.lp-features__desc {
  font-size: 15px;
  color: #fff;
  letter-spacing: 0.75px;
  line-height: 27px;
  text-shadow: 0 0 16px rgba(0,0,0,0.08);
}
.lp-features__images,
.feature-images {
  display: flex;
  gap: 16px;
  width: 959px;
}
.lp-features__img-card,
.feature-img-card {
  display: flex;
  flex-direction: column;
  width: 309px;
  gap: 24px;
}
/* 02用：横長ボックス */
.lp-features__images--02 {
  width: 959px;
  flex-wrap: nowrap;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
}
.lp-features__img-card--wide {
  width: 472px;
}
.lp-features__img-box {
  width: 309px;
  height: 307px;
  background: #f2f2f2;
  position: relative;
  overflow: hidden;
}
.lp-features__img-box img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* 02用：横長、全体表示 */
.lp-features__img-box--wide {
  width: 472px;
  height: 332px;
}
.lp-features__img-box--wide img {
  object-fit: contain;
  background: #f2f2f2;
}
figcaption {
  font-family: 'Oswald', Helvetica, sans-serif;
  font-size: 13px;
  color: #fff;
  letter-spacing: 0.65px;
  line-height: 23.4px;
}
.lp-features__diagram {
  width: 959px;
  height: 309px;
}
.lp-features__large-images {
  display: flex;
  gap: 16px;
  width: 959px;
  height: 332px;
}
.lp-features__large-img {
  width: 472px;
  height: 332px;
  background-size: cover;
  background-position: center;
}

/* ===== VOLTIQ SECTION ===== */
.lp-voltiq {
  width: 100%;
  position: relative;
  padding: 80px 0 60px;
  background: #fff;
}
.lp-voltiq__inner {
  width: 800px;
  max-width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.lp-voltiq__heading {
  font-family: 'Noto Sans JP', Helvetica, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--p);
  letter-spacing: 1px;
  text-align: center;
  padding: 20px 32px;
  border: 1px solid var(--p);
  margin-bottom: 24px;
}
.lp-voltiq__heading sup {
  font-size: 13px;
  vertical-align: super;
}
/* PC時: heading-mainはinline（見た目変えない） */
.lp-voltiq__heading-main {
  display: inline;
  font-size: inherit;
  font-family: inherit;
  letter-spacing: inherit;
}
.lp-voltiq__desc {
  font-size: 14px;
  color: var(--p);
  letter-spacing: 0.5px;
  line-height: 26px;
}
.lp-voltiq__desc--sm {
  font-size: 13px;
  color: #666;
}
/* 2枚横並び：同じ高さ、トリミングなし、幅をアスペクト比で調整 */
.lp-voltiq__img-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin: 8px 0;
}
.lp-voltiq__img-figure {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
/* img1: 526:452比率 */
.lp-voltiq__img-figure:nth-child(1) {
  flex: 526;
}
/* img2: 420:453比率 → 高さ452基準でwidth = 420*(452/453) ≈ 419 */
.lp-voltiq__img-figure:nth-child(2) {
  flex: 419;
}
.lp-voltiq__img-row .lp-voltiq__img-figure img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid #ddd;
}
.lp-voltiq__img-figure img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid #ddd;
}
/* 旧img-box不要 */
.lp-voltiq__img-box {
  display: contents;
}
/* 1枚全幅（PC/SP共通wrapper） */
.lp-voltiq__img-figure--wide {
  flex: none;
  width: 100%;
  margin: 8px 0;
}
/* PC: img3-pc表示、img3-sp非表示 */
.lp-voltiq__img3-pc {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid #ddd;
}
.lp-voltiq__img3-sp {
  display: none;
}
.lp-voltiq__caption {
  font-size: 12px;
  color: #666;
  letter-spacing: 0.3px;
}
.lp-voltiq__line {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 1px;
  object-fit: cover;
}
/* 旧クラス互換（非表示） */
.lp-voltiq__box,
.lp-voltiq__title,
.lp-voltiq__subtitle {
  display: none;
}

/* ===== SPECIAL MOVIE SECTION ===== */
/* h2をlp-featuresとlp-movie__subにまたがって配置する */
.lp-movie__title-bridge {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* h2高さ約80px → 上に40px引き上げて上下半分ずつかかる */
  margin-top: -40px;
  position: relative;
  z-index: 10;
  pointer-events: none;
}
.lp-movie__title-bridge h2 {
  font-family: 'Oswald', Helvetica, sans-serif;
  font-weight: 600;
  font-size: 80px;
  color: var(--abugarcia);
  text-align: center;
  letter-spacing: 0;
  white-space: nowrap;
  line-height: 1;
  text-shadow: 0 0 23.88px rgba(0,0,0,0.08);
  pointer-events: auto;
}
.lp-movie__sub {
  width: 100%;
  background: #fff;
  padding-top: 48px; /* h2の下半分(40px) + 余白 */
  margin-top: 0;
}
.lp-movie__line-bar {
  width: 60%;
  min-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.lp-movie__line-bar img { width: 100%; height: 1px; object-fit: cover; }
.lp-movie__line-bar .lp-movie__sub-label {
  font-family: 'Noto Sans JP', Helvetica, sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--abugarcia);
  letter-spacing: 1.2px;
  text-align: center;
}

/* ===== SLICK SLIDER ===== */
.slick-slider-section {
  width: 100%;
  background: #fff;
  padding: 40px 0 60px;
  overflow: hidden;
}
.slick-slider-section .slider {
  width: 100%;
}
.slick-slide-item {
  padding: 10px 16px 30px;
  outline: none;
  cursor: pointer;
  transition: transform 0.3s ease;
  display: flex !important;
  flex-direction: column;
  gap: 16px;
}
.slick-slide-item .slide-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.slick-slide-item .slide-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slick-slide-item .slide-thumb .slide-dummy-box {
  width: 100%;
  height: 100%;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}
.slick-slide-item .slide-text {
  font-family: 'Noto Sans JP', Helvetica, sans-serif;
  font-size: 14px;
  color: var(--abugarcia-black);
  line-height: 24px;
  letter-spacing: 0.5px;
}
/* 矢印非表示（全体） */
.slick-prev, .slick-next { display: none !important; }

/* ===== FEATURES OVERVIEW（Slick center mode） ===== */
.lp-gallery {
  width: 100%;
  background: #fff;
  padding: 60px 0;
}
.lp-gallery__container {
  margin: 0 auto;
  width: 100%;
}
/* 中央以外のスライド：縮小＋透過 */
.slick-img img {
  height: auto;
  opacity: 0.3;
  transform: scale(0.8);
  transition: opacity 0.5s, transform 0.5s;
  width: 100%;
  display: block;
}
/* サムネイルリンクラッパー：16:9固定 */
.lp-gallery__thumb-link {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: transparent;
}
.lp-gallery__thumb-link img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  transform: scale(0.8);
  transition: opacity 0.5s, transform 0.5s;
}
/* 再生ボタン */
.lp-gallery__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  background: rgba(0,0,0,0.65);
  border-radius: 50%;
  pointer-events: none;
  transition: background 0.2s;
}
.lp-gallery__play::after {
  content: '';
  position: absolute;
  top: 50%; left: 54%;
  transform: translate(-50%, -50%);
  width: 0; height: 0;
  border-style: solid;
  border-width: 11px 0 11px 20px;
  border-color: transparent transparent transparent #fff;
}
.lp-gallery__thumb-link:hover .lp-gallery__play {
  background: rgba(200,16,46,0.85);
}
/* スライド間のgap */
.lp-gallery__slider .slick-slide {
  padding: 0 20px;
}
.slick-img .lp-gallery__text {
  opacity: 0.3;
  transition: opacity 0.5s;
  font-size: 14px;
  line-height: 24px;
  color: var(--abugarcia-black);
  padding: 12px 8px 0;
}
/* 中央スライド：通常表示 */
.lp-gallery__slider .slick-center .lp-gallery__thumb-link img {
  opacity: 1;
  transform: scale(1);
}
.lp-gallery__slider .slick-center .lp-gallery__text {
  opacity: 1;
}
/* 矢印ボタン：中央スライドの画像高さ中央に配置 */
/* slidesToShow:3 → 矢印は中央スライドの内側左端・右端に重なる */
.lp-gallery__container {
  position: relative;
}
.lp-gallery__slider .slick-prev,
.lp-gallery__slider .slick-next {
  display: block !important;
  width: 44px;
  height: 44px;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0;
  background: none;
  border-radius: 0;
}
.lp-gallery__slider .slick-prev {
  left: calc(33.33% + 12px);
}
.lp-gallery__slider .slick-next {
  right: calc(33.33% + 12px);
}
.lp-gallery__slider .slick-prev:before {
  content: '';
  display: block;
  width: 44px;
  height: 44px;
  background: url('../images/slider-arrow-prev.png') center / contain no-repeat;
  font-size: 0;
}
.lp-gallery__slider .slick-next:before {
  content: '';
  display: block;
  width: 44px;
  height: 44px;
  background: url('../images/slider-arrow-next.png') center / contain no-repeat;
  font-size: 0;
}

/* ===== PRODUCT CTA ===== */
.lp-movie-cta {
  width: 100%;
  min-height: 393px;
  background: var(--gray-bg);
  padding: 48px 40px 64px;
}
.lp-movie-cta--2 {
  padding-top: 0;
  min-height: unset;
}
.lp-movie-cta__heading {
  margin-bottom: 40px;
}
.lp-movie-cta__inner {
  display: flex;
  gap: 35px;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: nowrap; /* 常に横並び */
}
.lp-movie-cta__card {
  flex: 1 1 0;        /* 均等に伸縮 */
  min-width: 0;       /* flexでの縮小を許可 */
  max-width: 430px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lp-movie-cta__img {
  width: 100%;
  aspect-ratio: 2/1;
  background-size: 100% 100%;
  position: relative;
}
.lp-movie-cta__img .play-icon {
  position: absolute;
  width: 50px;
  height: 36px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* iframe版 */
.lp-movie-cta__video {
  width: 100%;
  aspect-ratio: 2 / 1;
  position: relative;
  background: #000;
}
.lp-movie-cta__video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.lp-movie-cta__desc {
  font-size: 13px;
  color: var(--abugarcia-black);
  letter-spacing: 0.65px;
  line-height: 23.4px;
}
@media (max-width: 900px) {
  .lp-movie-cta { padding: 40px 20px; }
  .lp-movie-cta__inner { gap: 20px; }
}

/* ===== FOOTER PRODUCTS ===== */
.lp-footer-products {
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 80px 241px 80px;
}
/* 装飾画像 */
.lp-footer-products__deco {
  position: absolute;
  pointer-events: none;
  opacity: 0.55;
}
.lp-footer-products__deco--left {
  left: -20px;
  bottom: 20px;
  width: 280px;
}
.lp-footer-products__deco--right {
  right: -10px;
  bottom: 40px;
  width: 240px;
}
.lp-footer-products__card { width: 462px; display: flex; flex-direction: column; gap: 24px; }
.lp-lp-footer-products__img {
  width: 462px;
  height: 309px;
  position: relative;
  background: var(--gray-bg);
}
.lp-lp-footer-products__img img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 309px;
  height: 309px;
  object-fit: cover;
}
.lp-footer-products__btn {
  width: 462px;
  height: 72px;
  background: var(--abugarcia);
  border: none;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}
.lp-footer-products__btn:hover { opacity: 0.85; }
.lp-footer-products__btn span {
  font-family: 'Noto Sans JP', Helvetica, sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  letter-spacing: 2.7px;
}
.lp-footer-products__btn .lp-footer-products__arrow {
  position: absolute;
  right: 20px;
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* 赤い > 矢印 */
.lp-footer-products__btn .lp-footer-products__arrow::after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2.5px solid rgba(200, 16, 46, 1);
  border-right: 2.5px solid rgba(200, 16, 46, 1);
  transform: rotate(45deg) translateX(-1px);
}

/* ===== FOOTER DECO ===== */
.lp-footer-deco {
  width: 100%;
  height: 80px;           /* フッター程度の高さに抑制 */
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.lp-footer-deco img {
  width: 95.14%;
  margin-left: 4.86%;
  display: block;
  object-fit: cover;
  object-position: top;
}

/* ===== DECORATIVE BG ===== */
.bg-group-top-right {
  position: absolute;
  width: 40.9%;
  top: 0;
  left: 59.1%;
  z-index: 0;
  pointer-events: none;
}

/* ===== FADE-IN ANIMATION ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* 遅延バリエーション */
.fade-in--delay-1 { transition-delay: 0.15s; }
.fade-in--delay-2 { transition-delay: 0.30s; }
.fade-in--delay-3 { transition-delay: 0.45s; }
.fade-in--delay-4 { transition-delay: 0.60s; }

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

  /* ── HEADER ── */
  .lp-header {
    height: 30px;
    padding: 0 16px;
  }
  .lp-header img {
    height: 20px;
    width: auto;
    position: absolute;
  }

  /* ── HERO ── */
  .lp-hero {
    height: 85svh;
    min-height: 480px;
    position: relative;
  }

  /* ── HERO VIDEO ── */
  .lp-hero__video-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding-bottom: 0;
    overflow: hidden;
  }

  /* iframeは中央から拡大して縦長画面を埋める */
  #yt-player,
  .lp-hero__video,
  #yt-player iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: 160%; /* 1.6倍 */
    min-width: 284.44%; /* 177.78% × 1.6 */
    transform: translate(-50%, -50%);
  }

  .lp-hero__catchcopy {
    font-size: 20px;
    bottom: 48px;
    left: 20px;
    letter-spacing: 1px;
    width: calc(100% - 40px);
    color: #fff;
    z-index: 10;
  }

  /* SP: ロゴサイズ上書き */
  .lp-hero__logo {
    width: 55%;
    max-width: 240px;
  }

  /* ── PRODUCT INTRO ── */
  .lp-product-intro {
    padding-bottom: 0;
    min-height: unset;
    height: auto;
    display: flex;
    flex-direction: column;
  }
  .lp-product-intro__bg {
    position: relative;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
  }
  .lp-product-intro__content {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    width: 100%;
    max-width: 100%;
    padding: 40px 20px;
    background: #fff;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
  }
  .lp-product-intro__logo {
    width: 240px;
    margin: 0 0 8px;
  }
  .lp-product-intro__body {
    font-size: 15px;
    line-height: 27px;
    color: var(--abugarcia-black);
  }
  .lp-product-intro__body--sm {
    font-size: 13px;
    line-height: 23.4px;
    color: #444;
  }

  /* ── SLIDESHOW ── */
  .lp-slideshow {
    padding: 0;
  }
  .lp-slideshow__track img {
    height: 142px;
  }

  /* ── FEATURES ── */
  .lp-features {
    min-height: unset;
    padding: 48px 0 80px;
  }
  .lp-features__inner {
    width: 100%;
    padding: 0 20px;
    gap: 56px;
  }
  .lp-features__header {
    max-width: 100%;
  }
  .lp-features__header h2 {
    font-size: 32px;
    letter-spacing: 1.6px;
    margin-bottom: 20px;
    white-space: normal;
  }
  .lp-features__hero-img {
    width: 100%;
    height: auto;
  }
  .lp-features__intro-text {
    font-size: 15px;
    line-height: 27px;
    margin-top: 20px;
  }

  /* 01〜04 article：番号を中央寄せ縦積みに */
  .lp-features__title-row {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
  }
  .lp-features__divider {
    display: none; /* SP では縦線不要 */
  }
  .lp-features__number {
    font-size: 48px;
    min-width: unset;
  }
  /* 番号の下に赤いアンダーライン */
  .lp-features__number::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--abugarcia);
    margin: 4px auto 0;
  }
  .lp-features__title-text {
    align-items: center;
    gap: 8px;
    text-align: center;
  }
  .lp-features__subtitle {
    font-size: 18px;
  }
  .lp-features__title {
    font-size: 24px;
    letter-spacing: 1.2px;
    line-height: 1.4;
  }
  .lp-features__desc {
    font-size: 15px;
    line-height: 27px;
  }

  /* 01 product images：横スクロール → 縦積みスライダー風に */
  .lp-features__images {
    flex-direction: column;
    width: 100%;
    gap: 16px;
    overflow-x: auto;
    flex-wrap: nowrap;
    flex-direction: row; /* 横スクロール */
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }
  .lp-features__img-card {
    min-width: 310px;
    width: 310px;
    scroll-snap-align: center;
    flex-shrink: 0;
  }
  .lp-features__img-box {
    width: 310px;
    height: 307px;
    overflow: hidden;
  }
  .lp-features__img-box img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  /* 02用：横長、SP時は横幅fixで全体表示 */
  .lp-features__img-card--wide {
    min-width: 310px;
    width: 310px;
  }
  .lp-features__img-box--wide {
    width: 310px;
    height: 218px; /* 310 × (332/472) ≒ 218 */
    overflow: hidden;
  }
  .lp-features__img-box--wide img {
    object-fit: contain;
  }

  /* Brake pause diagram */
  .lp-features__diagram {
    width: 100%;
    height: auto;
  }

  /* 03 large images */
  .lp-features__large-images {
    flex-direction: column;
    gap: 16px;
  }
  .lp-features__large-img {
    width: 100%;
    height: 200px;
  }

  /* spec charts */
  .lp-features__spec-charts {
    flex-direction: column;
    gap: 16px;
  }
  .lp-features__spec-chart {
    width: 100%;
    height: auto;
  }

  /* ── SPECIAL MOVIE TITLE ── */
  .lp-movie__title-bridge {
    margin-top: -28px; /* SP font-size縮小に合わせて調整 */
  }
  .lp-movie__title-bridge h2 {
    font-size: 44px;
    white-space: normal;
    text-align: center;
    padding: 0 16px;
    line-height: 1.1;
  }
  .lp-features {
    padding-bottom: 50px; /* margin-topとの兼ね合い */
  }
  .lp-movie__sub {
    padding-top: 36px;
  }
  .lp-movie__line-bar {
    width: 90%;
    min-width: unset;
  }
  .lp-movie__sub-label {
    font-size: 18px;
  }

  /* ── GALLERY SLIDER ── */
  .lp-gallery {
    padding: 24px 0 40px;
  }
  .lp-gallery__slider .slick-prev,
  .lp-gallery__slider .slick-next {
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0;
  }
  .lp-gallery__slider .slick-prev {
    left: 48px;
  }
  .lp-gallery__slider .slick-next {
    right: 48px;
  }
  /* SP：center modeで1枚大きく */
  .slick-img img {
    opacity: 0.5;
    transform: scale(0.85);
  }

  /* ── MOVIE CTA（Impression） ── */
  .lp-movie-cta {
    padding: 0 20px 48px;
  }
  .lp-movie-cta__heading {
    margin-bottom: 24px;
    padding-top: 32px;
  }
  .lp-movie-cta__inner {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }
  .lp-movie-cta__card {
    max-width: 100%;
    width: 100%;
  }
  .lp-movie-cta__desc {
    font-size: 20px;
    font-family: 'Oswald', Helvetica, sans-serif;
    letter-spacing: 1px;
    font-weight: 400;
  }

  /* ── VOLTIQ 説明（SP：flexbox縦積みに） ── */
  .lp-voltiq {
    padding: 48px 20px 40px;
  }
  .lp-voltiq__inner {
    width: 100%;
    max-width: 100%;
    gap: 16px;
  }
  .lp-voltiq__heading {
    font-size: 13px;
    font-weight: 400;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
  }
  .lp-voltiq__heading-main {
    display: block;
    font-size: 26px;
    font-family: 'Oswald', Helvetica, sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
  }
  .lp-voltiq__desc {
    font-size: 14px;
    line-height: 26px;
  }
  .lp-voltiq__img-row {
    flex-direction: column;
    gap: 16px;
  }
  .lp-voltiq__img-figure {
    flex: none;
    width: 100%;
  }
  .lp-voltiq__line {
    display: none;
  }
  /* SP: PC用img非表示、SP用2枚表示 */
  .lp-voltiq__img3-pc {
    display: none !important;
  }
  .lp-voltiq__img3-sp {
    display: flex;
    flex-direction: column;
    border: 1px solid #ddd;
  }
  .lp-voltiq__img3-sp img {
    width: 100%;
    height: auto;
    display: block;
  }
  /* figureのborderは無効化（SP用はimg3-spに枠） */
  .lp-voltiq__img-figure--wide .lp-voltiq__img3-sp + .lp-voltiq__caption {
    margin-top: 6px;
  }

  /* ── FOOTER PRODUCTS ── */
  .lp-footer-products {
    flex-direction: column;
    align-items: center;
    padding: 48px 20px 64px;
    gap: 40px;
    overflow: visible;
  }
  .lp-footer-products__card {
    width: 100%;
    max-width: 350px;
  }
  .lp-lp-footer-products__img {
    width: 100%;
    height: 233px;
  }
  .lp-lp-footer-products__img img {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 233px;
    height: 233px;
  }
  .lp-footer-products__btn {
    width: 100%;
    height: 54px;
  }
  .lp-footer-products__btn span {
    font-size: 12px;
    letter-spacing: 1.5px;
  }
  .lp-footer-products__deco--left {
    width: 160px;
    left: -20px;
    bottom: 10px;
  }
  .lp-footer-products__deco--right {
    width: 140px;
    right: -10px;
    bottom: 20px;
  }

  /* ── DECORATIVE ── */
  .bg-group-top-right {
    display: none;
  }

  /* ── product-intro：SP時bgを背景画像に ── */
  .lp-product-intro {
    padding-bottom: 0;
    min-height: unset;
    height: auto;
  }
  .lp-product-intro__content {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: unset;
    height: auto;
    max-width: 100%;
    padding: 40px 20px;
    background-image: url('../images/voltiq-bg-reel.png');
    background-size: cover;
    background-position: center top;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px;
  }
  .lp-product-intro__text-block {
    display: contents;
  }
  .lp-product-intro__logo {
    width: 220px;
    max-width: 65%;
    margin: 0 auto 8px;
    padding: 0;
  }
  .lp-product-intro__logo--center {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .lp-product-intro__body {
    font-size: 15px;
    line-height: 27px;
    color: var(--abugarcia-black);
    max-width: 100%;
    padding: 0;
  }
  .lp-product-intro__body--sm {
    font-size: 13px;
    line-height: 23.4px;
    color: #444;
    max-width: 100%;
    padding: 0;
  }

  /* ── Features h2 中央寄せ ── */
  .lp-features__header h2 {
    font-size: 32px;
    letter-spacing: 1.6px;
    margin-bottom: 20px;
    white-space: normal;
    text-align: center;
  }

  /* ── アコーディオン（01〜04 desc） ── */
  /* desc-wrap：overflowなし、ボタンを常時表示するコンテナ */
  .lp-features__desc-wrap {
    position: relative;
  }
  /* desc-clip：テキスト＋フェードのみをmax-heightでclip */
  .lp-features__desc-clip {
    position: relative;
    overflow: hidden;
    max-height: 162px; /* 27px × 6行 */
    transition: max-height 0.5s ease;
  }
  .lp-features__desc-wrap.is-open .lp-features__desc-clip {
    max-height: 5000px;
  }
  /* グラデーション：clip内末尾にかかる */
  .lp-features__desc-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, transparent, #1a1212 85%);
    pointer-events: none;
    transition: opacity 0.3s;
  }
  .lp-features__desc-wrap.is-open .lp-features__desc-fade {
    opacity: 0;
  }
  /* ボタン：desc-clipの外・常時表示 */
  .lp-features__desc-toggle {
    display: block;
    width: 100%;
    margin-top: 8px;
    padding: 8px 0;
    background: none;
    border: none;
    color: #f2f2f2;
    font-size: 15px;
    font-family: 'Noto Sans JP', Helvetica, sans-serif;
    letter-spacing: 0.75px;
    text-align: center;
    text-decoration: underline;
    cursor: pointer;
  }
  .lp-features__desc-toggle-icon {
    display: inline-block;
    transition: transform 0.3s;
  }
  .lp-features__desc-wrap.is-open .lp-features__desc-toggle-icon {
    transform: rotate(180deg);
  }

  /* ── diagram（02）：幅100%でしっかり表示 ── */
  .lp-features__diagram {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 16px;
  }

  /* ── VoltiQ Special Movie h2：1行強制 ── */
  .lp-movie__title-bridge h2 {
    font-size: 36px;
    white-space: nowrap;
    overflow: visible;
    padding: 0 8px;
    text-align: center;
    line-height: 1.1;
  }
  .lp-movie__title-bridge {
    margin-top: -22px;
  }
  .lp-features {
    padding-bottom: 44px;
  }
  .lp-movie__sub {
    padding-top: 32px;
  }

  /* ── 画像インジケーター ── */
  .lp-features__img-indicators {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 10px;
  }
  .lp-features__img-indicators .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    transition: background 0.2s;
    flex-shrink: 0;
  }
  .lp-features__img-indicators .dot.is-active {
    background: #fff;
  }

} /* end @media 768px */

/* ── アコーディオン：PC時は無効（デスクトップはそのまま全文表示） ── */
@media (min-width: 769px) {
  .lp-features__desc-clip {
    max-height: none !important;
    overflow: visible;
  }
  .lp-features__desc-fade,
  .lp-features__desc-toggle {
    display: none;
  }
}
