@charset "utf-8";

/* ============== BASE============== */

.sp { display: none !important; }

body { 
  margin: 0;
  overflow-x: hidden;
 }


/*  ============== 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);
  }
}



/*  ============== 940px ============== */

.mainContentMT {
  width: 100%!important;
  }

.rootMT ul {
    overflow  : hidden;
    width     : 940px!important;
    margin    : 0 auto;
    }

tr, th, td, div, span, a,p {
    color: inherit;
}


/*  ============== 雪 ============== */

#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: 13vw;
  height: 13vw;
  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: 5vw;
  box-sizing: border-box;
  background-image: url(../../fuyupre/img/bg.jpg);
  color: #000;
  font-size: 15px;
  font-family: 'Noto Sans JP', sans-serif!important;
}



#coa2021winter_fuyupure .flag {
    position: absolute;
    top: 0;
    left: 20%;
    z-index: 100;
}



/*  ============== HEAD ============== */
.head {
  position: relative;
  background: #fff;
}


.head img {
  width: 100%;
}


.flag img {
   width: 9vw;
   height: auto;
}



#coa2021winter_fuyupure h1 img {
   width: 50%;
   margin: 6vw auto 3vw auto;
}



/*==================================================
スライダーのためのcss
===================================*/
.main_slider {
  width: 940px;
  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;/*絶対配置にする*/
  top: 50%;
  cursor: pointer;/*マウスカーソルを指マークに*/
  outline: none;/*クリックをしたら出てくる枠線を消す*/
  background: url(../img/left.png) no-repeat;
  background-size: contain;
  height: 2.5em;
  width: 2.5em;
  z-index: 9999;
}

.slick-prev {/*戻る矢印の位置と形状*/
  left: -10%;
}

.slick-next {/*次へ矢印の位置と形状*/
  right: -10%;
  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 {
    margin: 1.5vw auto;
}




/*  ==============　FOOT ============== */
.foot {
  width: 700px;
  margin: 5vw auto;
}


.foot ul {
  display: flex;
  flex-direction: column;
  text-align: left;
}


.foot ul li {
  line-height: 2;
}


.foot li:before {
    content: "▪ ";
    font-size: 18px;
    color: #085363;
}



/*  ============== ボタン ============== */

.container {
  text-align : center;
  margin : 5vw auto;
  }



.btn-border {
  display: inline-block;
  width: 940px;
  background: #000;
  font-size: 2.2vw;
  font-weight: bold;
  color: #fff;
  padding: 20px;
  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;
  }



