@charset "utf-8";

/* ------------------------------
 First_view
------------------------------ */
#first-view {
  margin: auto;
  width: 100%;
  position: relative;
  z-index: 1;
}




/*-------------------------------
  firstview(splide)上書き設定
-------------------------------*/


/* --- 表示範囲 --- */
.splide.fv {
  margin: auto;
  width: 100%;
  height: 100svh;
  position: relative;
  overflow: hidden;
}

.splide.fv .splide__track {
  position: relative;
  height: 100svh;
}

.splide.fv .splide__list {
  position: relative;
  height: 100svh;
}

/* #first-view,
.splide.fv,
.splide__track,
.splide__list {
  height: 100svh;
}

/* --- スライダー静止画・位置 --- */
 
.splide.fv .splide__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 0;
  pointer-events: none;  /* none */
  transition: opacity 5s ease-in-out;
  will-change: opacity, transform;
}

/* グラデーション */
.splide.fv .splide__slide {
  position: relative;
}
.splide.fv .splide__slide::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 50%, #000);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}




/* 表示中のスライド */
.splide.fv .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}




/* 画像表示の基準値 */
.splide.fv .splide__slide > picture img {
  object-fit: cover;
  width: 100%;
  height: 100svh;
  object-position: 100% 50%;
}

.splide.fv .splide__slide > picture img.two {
  object-position: 50% 100%;
}


/* --- ページネーション非表示 --- */
.splide.fv .splide__pagination {
  display: none;
  transform: translateX(100%);
}



/* ----------------------------------------------------
  G_DEALS(お役立ち情報:GREAT_DEALS)上書き設定
---------------------------------------------------- */
/* --- スライダー --- */
.G_DEALS_slider {
  width: min(100vw,750px);
}

#G_DEALS {
  margin: auto;
}

#G_DEALS .adj {
  margin: 12% auto auto;
  padding: 15% 0;
  width: 100%;
  background-color: #777;
}

#G_DEALS .adj .splide__slide {
  transition-property: transform;
  transition-duration: 1.4s;
  transition-timing-function: ease-in-out;
}

#G_DEALS .adj .splide__slide img {
  height: auto;
  width: 100%;
}

/* ページネーション */
#G_DEALS .splide__pagination {
  position: absolute;
  top: 107%;
  right: 0;
}  

#G_DEALS .splide__pagination__page {
  background: #bbb;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: min(15px, max(2vw, 10px));
  margin: min(1vw,12px);
  opacity: 1; /* 0.7 */
  padding: 0;
  position: relative;
  transition: transform .2s linear;
  width: min(15px, max(2vw, 10px));
  transform: scale(0.8);
}

#G_DEALS .splide__pagination__page.is-active {
  background: #333;
  transform: scale(0.8);
  z-index: 1;
}


/* --- link対策(PC・SP)@media制御 --- */
/* for PC */
@media (hover: hover) {
  #G_DEALS .splide__slide a:hover {
    opacity: 0.6;
  }

}

/* for SP */
@media (hover: none) {
  #G_DEALS .splide__slide a:active {
    opacity: 0.6;
  }

}






