@charset "UTF-8";
/* CSS Document */
/*-----通常（PC向け）の記述-----*/
body {
  margin: 0;
  padding: 0;
}

main.global-contents {
    padding-bottom: 14rem;
}

.wrapper {
  max-width: 850px;
  text-align: center;
  margin: 0 auto;
  font-family: 'Shippori Antique', sans-serif;
}






img {
  max-width: 100%;
}

.fv-img {
    position: relative;
    /* iOSSafari対策：独立したGPUレイヤーを強制 */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    isolation: isolate;
}

.anime_updown_container {
    position: absolute;
    width: 96%;
    bottom: 1%;
    left: 2%;
    z-index: 10;
    animation: updown 2s infinite ease-in-out;
    -webkit-animation: updown 2s infinite ease-in-out;
}

.anime_updown_container2 {
    position: absolute;
    width: 96%;
    bottom: 28%;
    left: 2%;
    z-index: 10;
    animation: updown 2s infinite ease-in-out;
    -webkit-animation: updown 2s infinite ease-in-out;
}

@keyframes updown {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

@-webkit-keyframes updown {
  0%   { -webkit-transform: translateY(0); }
  50%  { -webkit-transform: translateY(-10px); }
  100% { -webkit-transform: translateY(0); }
}

/* ボタンラッパー */
.buy-button1-wrapper {
  position: relative;
  width: 100%;
  line-height: 0;
  cursor: pointer;
}

.buy-button1, .buy-button2 {
  display: block;
  width: 100% !important;
  height: auto;
  margin: 0 !important;
  padding: 0 !important;
  animation: shine-filter 3s ease-in-out infinite;
  -webkit-animation: shine-filter 3s ease-in-out infinite;
}

/* filterで光らせる */
@keyframes shine-filter {
  0%   { filter: brightness(1) drop-shadow(0 0 0px rgba(255,255,255,0)); }
  50%  { filter: brightness(1.3) drop-shadow(0 0 6px rgba(255,255,255,0.7)); }
  100% { filter: brightness(1) drop-shadow(0 0 0px rgba(255,255,255,0)); }
}

@-webkit-keyframes shine-filter {
  0%   { -webkit-filter: brightness(1); }
  50%  { -webkit-filter: brightness(1.3) drop-shadow(0 0 6px rgba(255,255,255,0.7)); }
  100% { -webkit-filter: brightness(1); }
}

/* btn-wrap：フワフワ上下アニメーション */
.btn-wrap {
    width: 96%;
    margin: -10% auto 0;
    position: relative;
    z-index: 10;
    animation: updown 2s ease-in-out infinite;
    -webkit-animation: updown 2s ease-in-out infinite;
}

.btn-wrap2 {
    margin-top: -10%;
}

/* .anime_updownの上下アニメーションはmain.jsで制御 */




.price-img{
    position: relative;
}
.kakaku{
        position: absolute;
   width: 33%;
    bottom: 1%;
    left: 6%;
}

.copy-symbol{
    font-size: 1.5em; 
  vertical-align: middle; 
  margin-right: 2px; 
    
}




/* スライダー部分 */
.slider-contents{
    background-image:url("https://www.fine-kagaku.co.jp/Landing/formlp/Images/bluelock/img_13.webp");
    background-repeat: no-repeat;
    background-size: cover;      
    background-position: center; 
    
    
    width: 100%;
    padding:32% 0 15%;         
    
}



.slick-slide {
    padding: 0 !important;
    margin: 0 !important;
}

/* 画像の設定 */
.slide img {
    text-align: center;
    margin: 0 auto;
   
    width: 96% !important; 
    height: auto;
   
    max-width: 410px; 
}


.slider {
    max-width: 750px; 
    margin: 0 auto !important;
}






.slick-prev::before,
.slick-next::before {
    content: "" !important; 
}

/*  ボタン共通のスタイル */
.slick-prev,
.slick-next {
    width: 30px;
    height: 30px;
    z-index: 10;
}


.slick-prev::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 20px 15px 0;
    border-color: transparent #ffffff transparent transparent; 
}


.slick-next::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0 15px 20px; 
    border-color: transparent transparent transparent #ffffff; 
}

/* 5. ホバー時に少し光らせる*/
.slick-prev:hover::after,
.slick-next:hover::after {
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
    opacity: 0.8;
}
    
    
.kakaku {
  animation: kakaku 1.5s ease-in-out infinite;
}

@keyframes kakaku {
  0%, 100% { 
    transform: scale(1);
  }
  50% { 
    transform: scale(1.1);
  }
}


.slider-wrap {
  position: relative;
  width: 100%;
  overflow: hidden; /* ← これが超重要 */
}

.slider-container {
  overflow: hidden;
  width: 100%;
    padding: 0 5%;        /* 外側の余白はここで設定 */
  box-sizing: border-box;
    
}

.slider-track {
  display: flex;
  gap: 0px;  /* ← 画像間の隙間をここだけで制御 */
  transition: transform 0.4s ease;
  will-change: transform;
     width: 100%;  
}

.slide-group {
  display: flex;
  min-width: 50%;
  padding: 0;
  box-sizing: border-box;
  
}

.slide-group img {
  width: 96%;          
  height: auto;
  object-fit: cover;
  margin: 0;
}


element.style {
}
.slick-prev {
    left: -25px;
}


/* 矢印ボタン共通 */
.arrow {
  font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}

/* 左矢印 */
.prev {
  left: 8px;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-right: 22px solid white;
}

/* 右矢印 */
.next {
  right: 8px;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 22px solid white;
}

/* タップ時の見た目 */
.arrow:active {
  filter: drop-shadow(0px 1px 2px rgba(0,0,0,0.3)) brightness(0.8);
}

/* ドット */
.dots {
  text-align: center;
  padding: 10px 0;
    display: none;
}
.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  margin: 0 4px;
  cursor: pointer;
}
.dot.active {
  background: #333;
}














/* =======================================

floating-banner

========================================== */
.floating-banner {
  position: fixed; /* 追従 */
  z-index: 99999; /* 他の要素の下に隠れないように */
  bottom: 0; /* バナーの上下の位置 */
  text-align: center;
  width: 100%;
}

.pc-f {
  width: 250px;
  margin: 12px;
  position: fixed;
  bottom: 0%;
  right: 10px;
}
.sp-f {
    display: none;
}
.floating-banner:hover {
  opacity: .9; /* ホバーで少し透過 */
}





/*-----スマホ向けの記述-----*/

@media screen and (max-width: 990px) { /* タブレット用のブレイクポイントを指定 */

	.pc-f{
    display: none;
}
	
  .sp-f {
    display: inline-block; /* 消していたスマホ用のバナーを表示させる */
    width: 100%;
    margin-bottom: 0px;
  }
  .header_top_area {
    padding-left: 10px;
    padding-right: 14px;
  }
}
@media screen and (max-width: 560px) { /* スマホ用のブレイクポイントを指定 */
  .sp-f {
    display: inline-block; /* 消していたスマホ用のバナーを表示させる */
    width: 100%;
    margin-bottom: 0px;
  }
	
	p.copy {
    margin-bottom: 29%;
    font-size: 0.8rem;
    line-height: 1rem;
}


  .pc {
    display: none;
  }
/* 左矢印 */
.prev {
  display: none;
}

/* 右矢印 */
.next {
  display: none;
}
    
  
	}