﻿@charset "utf-8";

/* ============== BASE============== */

.pc { display: none !important; }

body { 
  margin: 0;
  overflow-x: hidden;
 }


article h1 {
  background: none!important;
  height: auto!important;
  margin: 0!important;
  padding: 0!important;
}


#fftop_recomDetail section {
  padding: 0;
}


/*  ============== Fadein============== */


.fadein {
  opacity : 0;
  transition:all 0.9s;
}

.fadein.active {
  animation: zoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}

@keyframes zoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}





/*  ============== 雪 ============== */

#flurry-cont {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  z-index: 1000;
}



#flurry-cont-in {
  margin-left: -100%;
}


/*  ============== 応募ボタン ============== */

#oubo {
  position: fixed;
  right: 1vw;
  bottom: 1vw;
  z-index: 999999999999999999999999999;
}




#oubo a {
  display: block;
  width: 30vw;
  height: 30vw;
  background: url(../img/oubo.png) no-repeat;
  background-size: contain;
  transition: all 0.8s ease;
}

 

#oubo a:hover {
  text-decoration: none;
  opacity: 0.4;
}




/*  ============== MAIN ============== */

#coa2021winter_fuyupure {
  position: relative;
  width: 100%;
  text-align: center;
  padding: 3vw;
  box-sizing: border-box;
  background-image: url(../../fuyupre/img/bg.jpg);
  color: #000;
  font-size: 14px;
  font-family: 'Noto Sans JP', sans-serif!important;
}



#coa2021winter_fuyupure .flag {
    position: absolute;
    top: 0;
    left: 2%;
    z-index: 100;
}



/*  ============== HEAD ============== */
.head {
  position: relative;
  background: #fff;
}


.head img {
  width: 100%;
}


.flag img {
   width: 18vw;
   height: auto;
}



#coa2021winter_fuyupure h1 img {
   width: 90%;
   margin: 8vw auto 5vw auto;
}



/*==================================================
スライダーのためのcss
===================================*/
.main_slider {
  max-width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.main_slider .slider img {
  max-width: 100%;
}

.fs-life-detail .slick-list {
  width: inherit;
}

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
  position: absolute;/*絶対配置にする*/
  bottom: 0%;
  cursor: pointer;/*マウスカーソルを指マークに*/
  outline: none;/*クリックをしたら出てくる枠線を消す*/
  background: url(../img/left.png) no-repeat;
  background-size: contain;
  height: 2em;
  width: 2em;
  z-index: 9999;
}

.slick-prev {/*戻る矢印の位置と形状*/
  left: 0%;
}

.slick-next {/*次へ矢印の位置と形状*/
  right: 0%;
  transform: rotate(180deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
  text-align: center;
  margin: 1em auto 0;
  padding: 0;
  position: relative;
  bottom: inherit;
}

.slick-dots li {
  display:inline-block;
  margin:0 5px;
}

.slick-dots button {
  color: transparent;
  outline: none;
  width: 0.8em;
  height: 0.8em;
  display: block;
  border-radius: 50%;
  background: #ccc;
  padding: 0;
  border: none;
  font-size:inherit;
}

.slick-dots .slick-active button{
  background:#000f;/*ドットボタンの現在地表示の色*/
}

.fs-life-detail .slick-dots li button:before {
  display: none;
}


/*  ==============　他の商品 ============== */
.other_inner img {
    width: 100%;
    margin: 1.5vw auto;
}




/*  ==============　FOOT ============== */
.foot {
  width: 95%;
  margin: 5vw auto;
}


.foot ul {
  display: flex;
  flex-direction: column;
  text-align: left;
}


.foot ul li {
  color: #000;
  font-size: 3.5vw;
  line-height: 1.7;
}


.foot li:before {
    content: "▪ ";
    font-size: 18px;
    color: #085363;
}



/*  ============== ボタン ============== */

.container {
  text-align : center;
  margin : 5vw auto;
  }



.btn-border {
  display: inline-block;
  width: 80%;
  background: #000;
  font-size: 5vw;
  font-weight: bold;
  color: #fff;
  padding: 2vw 3vw;
  box-sizing: border-box;
  letter-spacing: .1rem;
  border: 3px solid #000;
  }

a.btn-border {
  text-decoration: none!important;
}


.btn-border:hover {
  background: #fff;
  color    : #000;
  transition: .4s;
  border: 3px solid #000;
  }



