html{
  scroll-behavior: smooth;
  font-size: 62.5%;
}
body{
  font-family:"Inter","Noto Sans JP", sans-serif, serif, "Helvetica Neue", "Helvetica", Meiryo,"游ゴシック体","Yu Gothic",YuGothic,"ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN";
  color: #333;
  font-size: 1.6rem;
  font-weight: 400;
  font-style: normal;
  line-height: 1.7;
}

*, *::before, *::after {
  box-sizing: border-box;
}

p{
  text-align: justify;
  font-size: 1.6rem;
}
img{
  width: 100%;
  height: auto;
}
.pc_case{display: block;}
.sp_case{display: none;}

a,
a:hover,
a:hover img {
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none;
}
a:hover img{opacity: 0.9;}

@media (max-width: 768px) {
  .pc_case{display: none;}
  .sp_case{display: block;}
}

.wrapper,
.content_wrap{
  box-sizing: border-box;
  position: relative;
  max-width: 640px;
  width: 100%;
  padding: 80px 3%;
  margin: 0 auto;
}
.content_wrap{
  padding: 0 10%;
  margin-bottom: 60px;
}
main{
    overflow: hidden;
  }

@media (max-width: 768px) {
  .wrapper{
    max-width: 100%;
    width: 100%;
    padding: 40px 5%;
  }
  .content_wrap{
    padding: 0 6%;
  }
  main{
    padding: 60px 0 0;
  }
}

@media (min-width: 769px) {
  .pc_bg{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url(../images/pc_bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left center;
    opacity: 0.8;
    z-index: -1;
  }
  .pc_bgArea{
    position: relative;
    height: 100vh;
  }
  .pc_bgArea_logo{
    position: absolute;
    bottom: 0;
    left: 23%;
  }
  .pc_bgArea_logo img{
    display: block;
    width: 320px;
    height: auto;
  }
  .viewer{
    box-sizing: border-box;
    position: absolute;
    top: 0;
    right: 7vw;
    max-width: 528px;
    width: 100%;
    height: 100vh;
    /* padding: 0 30px; */
    background: #fff;
    overflow-y: auto;
  }
}
@media screen and (max-width: 768px){
  .pc_bg{
    display: none;
    background-image:none;
  }
  .pc_bgArea_logo img{
    display: none;
  }
  .viewer{
    width: 100%;
    box-shadow: none;
    overflow: hidden;
  }
}

/* ==============================
    header
=============================== */
header .wrapper{
  box-sizing: border-box;
  position: relative;
  padding: 20px 30px;
}
.head_logo{
  width: 210px;
}
@media (max-width: 768px) {
  header#winter{
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
    z-index: 999;
  }
  header .wrapper{
    padding: 15px 3% 0;
  }
  .head_logo{
    margin-top: 0;
  }
}
/* ==============================
    footer
=============================== */
footer{background: #fff;}
.footer_add{
  color: #0a2d88;
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
footer .wrapper{
  padding: 30px 0 20px;
}
.footlogo_img{
  display: block;
  max-width: 260px;
  margin: 0 auto 15px;
}
.btn_pink_footer{
  position: relative;
  display: block;
  width: 280px;
  height: 50px;
  background: #b50080;
  border-radius: 3em;
  color: #fff;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 50px;
  margin: 0 auto;
}
.btn_pink_footer::before,
.btn_pink_footer::after{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.btn_pink_footer::before{
  right: 20px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #fff;
}
.btn_pink_footer::after{
  right: 25px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-right: 0 solid transparent;
  border-left: 9px solid #b50080;
  border-bottom: 6px solid transparent;
  box-sizing: border-box;
}

.foot_insta{
  position: relative;
  width: 100%;
  height: 100%;
  margin: 60px auto 20px;
}
.foot_insta img.inst_qr{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1;
}
.btn_aeon{
  box-sizing: border-box;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 80%;
  background: #333;
  border-radius: 10px;
  color: #fff;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.6;
  padding: 20px 10px;
}
.btn_aeon{
  z-index: 10;
}
footer .text_blue{
  font-size: 1.8rem;
}
.copy{
  background: #0a2d88;
  color: #fff;
  text-align: center;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  padding: 20px 0;
}
#page_top{
  position: fixed;
  right: 10px;
  bottom: 30px;
  display: block;
  width: 60px;
  height: 60px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  pointer-events: none;
  z-index: 1000;
}
#page_top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}


@media (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

/* ==============================
    共通設定
=============================== */
.mb10{margin-bottom: 10px;}
.mb20{margin-bottom: 20px!important;}
.mb30{margin-bottom: 30px;}
.mb60{margin-bottom: 60px;}
.mt20{margin-top: 20px;}
.txt_c{text-align: center!important;}
.font_s{font-size: 1.3rem!important;}
.color_red{color: #e60012;}

.containerbox,
.containerbox_r{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.containerbox_r{
  flex-direction: row-reverse;
}
.item02{width: 48%;}

/* ==============================
    title
=============================== */
.visuall_hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.img_position{
  position: relative;
}
a.img_position{
  height: 100%;
}
.slideimg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1;
}
.title_img{
  margin: 60px 0 30px;
}


/* ==============================
    ボタンArea
=============================== */
#btn_evenAreat{
  margin-bottom: 80px;
}
#top_btn a{
  display: block;
  margin-bottom: 60px;
}
.top_yajirushi{
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%)!important;
  display: block;
  width: 60px;
  height: 60px;
  z-index: 3;
}
.top_giftimg{
  position: absolute;
  bottom: 5%;
  left: 10%;
  width: 25%;
  /* width: 135px; */
  height: auto;
  z-index: 3;
}
.top_itemimg{
  position: absolute;
  bottom: 0%;
  right: 1%;
  width: 30%;
  /* width: 150px; */
  height: auto;
  z-index: 3;
}
.btn_event{
  position: relative;
  background: url(../images/btn_itembg.gif);
  border: 2px solid #e60012;
  border-radius: 15px;
  width: 100%;
  height: 120px;
  box-shadow: 5px 5px 0px 0px rgba(230, 0, 18, 1);
  display: flex;
  align-items: center;
  justify-content:center;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.btn_event::before{
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
  background: #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
}
.btn_event::after{
  content: "";
  position: absolute;
  right: 33px;
  background: #e60012;
  height: calc(15px / 2 * tan(60deg));
  width: 10px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

ul.square_list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
ul.square_list li {
  position: relative;
  font-size: 1.6rem;
  line-height: 1.6;
  padding-left: 20px;
  margin-bottom: 7px;
}
ul.square_list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 12px;
  background-color: #333;
}

@media (max-width: 768px) {
  .btn_event{height: 100px;}
}

/* ==============================
    popup 商品
=============================== */
/* 商品リスト */
.item_boxline{
  position: relative;
  display: block;
  background: #fff;
  border: 3px solid #e60012;
  border-radius: 15px;
  margin-bottom: 30px;
}
.menu_img{
  display: block;
  width: 100%;
  border-radius: 12px 12px 0 0;
  margin-bottom: 5px;
}
.red_box{
  display: block;
  width: 80%;
  border: 1px solid #e41f1b;
  border-radius: 30px;
  color: #e41f1b;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.8;
  margin:0 auto 10px;
}

/* popup */
/* popup_content */
.popup_bg{
  position:fixed;
  top:0;
  bottom:0;
  left:0;
  right:0;
  width: 100%;
  height: 100vh;
  background: rgba(64,73,82,0.8);
  transition: 0.4s;
  z-index:100;
}
.popup_content{
  position: relative;
}
.popup_box{
  box-sizing: border-box;
  display: none;
  position: fixed;
  top:50%;
  left:50%;
  transform: translateX(-50%) translateY(-50%);
  max-width: 460px;
  width: 80%;
  max-height: 90vh;
  background: #fff;
  border-radius: 10px;
  padding: 30px 5%;
  overflow-y: auto;
  z-index: 110;
}
.popup_box .tit_item{
  color: #333;
  text-align: center;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 5px;
}
.popup_box .tit_item span{font-size: 2.0rem;}

.popup_box .title_price{
  color: #333;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 10px;
}
.popup_box .title_price span{font-size: 1.4rem;}

.popup_box img.popup_img{
  display: block;
  width: 100%;
  margin:0 auto 15px;
}
.popup_box p.detail_text{
  color: #333;
  text-align: justify;
  font-size: 1.4rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.popup_box p.shop_name{
  color: #333;
  text-align: center;
  font-size: 1.4rem;
}
.period{
  display: block;
  width: 70%;
  background: #333;
  color: #fff;
  text-align: center;
  font-size: 1.3rem;
  line-height: 28px;
  margin: 0 auto 10px;
}


/*--close btn--*/
.popup_close{
  width: 30px;
  height: 30px;
  cursor: pointer;
  position:absolute;
  top:20px;
  right:20px;
  z-index:120;
}
.popup_close span {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 100%;
  width: 30px;
  height: 2px;
  background: #333;
  position: absolute;
  left: 50%;
  top: 50%;
}
.popup_close span:nth-child(1) {
  transform: translate(-50%, 50%) rotate(45deg);
}
.popup_close span:nth-child(2) {
  transform: translate(-50%, 50%) rotate(-45deg);
}

/* 矢印の共通スタイル */
.popup_prev,
.popup_next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 120;
}

/* 中の「くの字」をborderで作る */
.popup_prev::before,
.popup_next::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  margin: auto;
}

/* 左側の矢印 */
.popup_prev {
  left: 10px;
}
.popup_prev::before {
  transform: rotate(-135deg);
}

/* 右側の矢印 */
.popup_next {
  right: 10px;
}
.popup_next::before {
  transform: rotate(45deg);
}

/* ホバー時に少し拡大 */
.popup_prev:hover::before,
.popup_next:hover::before {
  transform: scale(1.3) rotate(45deg);
}
.popup_prev:hover::before {
  transform: scale(1.3) rotate(-135deg);
}

@media screen and (max-width : 768px) {
  .popup_close{
    top:3px;
    right:3px;
    background: rgba(255,255,255,0.8);
    border-radius: 50%;
  }
  .popup_close span {
    width: 20px;
    height: 2px;
    left: 50%;
    top: 45%;
  }
  .popup_close span:nth-child(1) {
    transform: translate(-50%, 50%) rotate(45deg);
  }
  .popup_close span:nth-child(2) {
    transform: translate(-50%, 50%) rotate(-45deg);
  }
  .popup_box img.popup_img{
    width: 100%;
  }
}

/* ==============================
    クリスマスギフト
=============================== */
#gift .img_position,
#item .img_position{
  margin-bottom: 60px;
}


.gift_hito01{
  position: absolute;
  bottom: -1%;
  right: 2%;
  width: 40%;
  /* width: 175px; */
  height: auto;
  z-index: 3;
}
.gift_hito02{
  position: absolute;
  bottom: 4%;
  left: 10%;
  width: 25%;
  /* width: 100px; */
  height: auto;
  z-index: 3;
}
@media (max-width: 768px) {
  .gift_hito01{width: 36%;}
  .gift_hito02{width: 25%;}
}


/* ==============================
    ハッピー福袋
=============================== */
.fuku_hito01{
  position: absolute;
  bottom: 2%;
  left: 3%;
  width: 22%;
  /* width: 125px; */
  height: auto;
  z-index: 3;
}
.fuku_hito02{
  position: absolute;
  bottom: 14%;
  left: 13%;
  width: 34%;
  /* width: 190px; */
  height: auto;
  z-index: 3;
}
.fuku_hito03{
  position: absolute;
  bottom: 3%;
  right: 32%;
  width: 20%;
  /* width: 80px; */
  height: auto;
  z-index: 3;
}
.fuku_hito04{
  position: absolute;
  bottom: 18%;
  right: 3%;
  width: 16%;
  /* width: 87px; */
  height: auto;
  z-index: 3;
}
.fuku_hito05{
  position: absolute;
  bottom: 2%;
  right: 3%;
  width: 30%;
  /* width: 125px; */
  height: auto;
  z-index: 3;
}
.uma_grn{
  position: absolute;
  top: 28%;
  left: 27%;
  width: 21%;
  /* width: 90px; */
  z-index: 3;
}
.uma_yel{
  position: absolute;
  top: 48%;
  left: 13%;
  width: 27%;
  /* width: 120px; */
  z-index: 3;
}
.uma_pink{
  position: absolute;
  top: 14%;
  left: 52%;
  width: 25%;
  /* width: 100px; */
  z-index: 3;
}
.uma_blu{
  position: absolute;
  top: 46%;
  left: 63%;
  width: 24%;
  /* width: 130px; */
  height: auto;
  z-index: 3;
}
.uma_blu02{
  position: absolute;
  top: 50%;
  left: 78%;
  width: 20%;
  /* width: 85px; */
  height: auto;
  z-index: 3;
}
.yoyaku_hito{
  position: absolute;
  top: 40%;
  left: 82%;
  width: 10%;
  /* width: 50px; */
  height: auto;
  z-index: 3;
}
.yoyaku_uma{
  position: absolute;
  top: 22%;
  left: 42%;
  width: 17%;
  /* width: 90px; */
  height: auto;
  z-index: 3;
}

@media (max-width: 768px) {
  .fuku_hito02{width: 37%;}
  .fuku_hito03{width: 15%;}
  .fuku_hito04{
    bottom: 22%;
    width: 19%;
  }
  .fuku_hito05{width: 24%;}
}

/* ==============================
    itemArea
=============================== */
.item_cup{
  position: absolute;
  bottom: -2%;
  right: 4%;
  width: 28%;
  /* width: 180px; */
  height: auto;
  z-index: 3;
}
.item_hito{
  position: absolute;
  bottom: -2%;
  left: 23%;
  width: 34%;
  /* width: 180px; */
  height: auto;
  z-index: 3;
}

@media (max-width: 768px) {
  .item_hito{}
}


/* ==============================
    VS PARK EVENT
=============================== */
#vapark .img_position{
  margin-bottom: 60px;
}
#event .img_position,
#event_collabo .img_position{
  margin-bottom: 80px;
}


.event_hito{
  position: absolute;
  bottom: -8%;
  left: 34%;
  width: 33%;
  height: auto;
  z-index: 3;
}
.event_hito02{
  position: absolute;
  bottom: -8%;
  left: 25%;
  width: 45%;
  height: auto;
  z-index: 3;
}
.event_hito03{
  position: absolute;
  bottom: -8%;
  left: 27%;
  width: 45%;
  height: auto;
  z-index: 3;
}

.vspark_logo {
  display: block;
  width: 90%;
  margin: 0 auto 40px;
}
.event_box{
  border-bottom: 3px dotted #e60012;
  padding-bottom: 40px;
  margin-bottom: 40px;
}
#event_collabo .event_box{
    border-bottom: 3px dotted #555;
}
#event_collabo .event_box:last-of-type,
.event_box:last-of-type{
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.event_imgbox{
  display: block;
  border: 3px solid #fa7041;
}


/* ボタン */
a.btn_grad_red,
a.btn_grad_red:visited,
a.btn_grad_pink,
a.btn_grad_pink:visited{
  position: relative;
  display: block;
  border-radius: 25px;
  width: 320px;
  height: 50px;
  text-align: center;
  color: #fff;
  font-size: 1.8rem;
  line-height: 50px;
  margin: 20px auto 0;
}
a.btn_grad_red,
a.btn_grad_red:visited{
  background: url(../images/btn_bg_red.gif) no-repeat center center / cover;
  border: px solid #fa7041;
}
a.btn_grad_pink,
a.btn_grad_pink:visited{
  background: url(../images/btn_bg_pink.gif) no-repeat center center / cover;
  border: 1px solid #e63c96;
}
a.btn_grad_red::before,
a.btn_grad_red::after,
a.btn_grad_pink::before,
a.btn_grad_pink::after{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
a.btn_grad_red::before,
a.btn_grad_pink::before{
  background: #fff;
  right: 20px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
}
a.btn_grad_red::after{
  right: 25px;
  width: 0;
  height: 0;
  height: calc(15px / 2 * tan(60deg));
  width: 10px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: #e60012;
}
a.btn_grad_pink::after{
  right: 25px;
  width: 0;
  height: 0;
  height: calc(15px / 2 * tan(60deg));
  width: 10px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: #e63c96;
}

/* タイトル */
.title_event{
  text-align: center;
  font-size: 3.0rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 10px;
}
.title_event span{
  font-size: 2.0rem;
}
.event_day{
  color: #e60012;
  text-align: center;
  font-size: 3.0rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}
.event_day span{
  font-size: 1.8rem;
}
.title_eventinfo{
  text-align: center;
  font-size: 3.0rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 10px;
}
.title_eventinfo span{
  font-size: 1.8rem;
}

@media (max-width: 768px) {

}

/* ==============================
    fv動きとか
=============================== */
#fv{
  position: relative;
  width: 100%;
  height: 100%;
}
.fv_title {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  opacity: 0;
  animation: fadeIn 1.8s ease-out 0.3s forwards;
  overflow: hidden;
}
@keyframes fadeIn {
  to { opacity: 1; }
}

/* 画像位置 */
.fv_hito01{
  position: absolute;
  right: 9%;
  bottom: 35%;
  width: 20%;
  /* width: 85px; */
  z-index: 3;
}
.fv_hito02{
  position: absolute;
  left: 3%;
  bottom: 27%;
  width: 35%;
  /* width: 185px; */
  z-index: 3;
}
.fv_hito03{
  position: absolute;
  left: 9%;
  bottom: 3%;
  width: 18%;
  /* width: 90px; */
  z-index: 3;
}
.fv_hito04{
  position: absolute;
  right: 5%;
  bottom: -1%;
  width: 28%;
  /* width: 135px; */
  z-index: 3;
}
.star01{
  position: absolute;
  top: 15%;
  left: 2.5%;
  width: 38px;
  height: 40px;
  z-index: 3;
}
.star02{
  position: absolute;
  top: 25%;
  left: 6%;
  width: 38px;
  height: 40px;
  z-index: 3;
}
.star03{
  position: absolute;
  top: 0.5%;
  left: 22%;
  width: 40px;
  height: 40px;
  z-index: 3;
}
.star04{
  position: absolute;
  top: 17%;
  left: 27%;
  width: 40px;
  height: 40px;
  z-index: 3;
}
.star05{
  position: absolute;
  top: 52%;
  left: 8%;
  width: 26px;
  height: 28px;
  z-index: 3;
}
.star11{
  position: absolute;
  bottom: 55%;
  left: 2.5%;
  width: 26px;
  height: 26px;
  z-index: 3;
}
/* right */
.star06{
  position: absolute;
  top: 3%;
  right: 6%;
  width: 30px;
  height: 32px;
  z-index: 3;
}
.star07{
  position: absolute;
  top: 17%;
  right: 21%;
  width: 30px;
  height: 32px;
  z-index: 3;
}
.star08{
  position: absolute;
  top: 43%;
  right: 2%;
  width: 24px;
  height: 26px;
  z-index: 3;
}
.star09{
  position: absolute;
  top: 26%;
  right: 23%;
  width: 26px;
  height: 26px;
  z-index: 3;
}
.star10{
  position: absolute;
  bottom: 43%;
  right: 2%;
  width: 26px;
  height: 26px;
  z-index: 3;
}

/* content_star */
.tit_star01{
  position: absolute;
  top: 9.5%;
  left: 3%;
  width: 40px;
  height: 42px;
  z-index: 3;
}
.tit_star02{
  position: absolute;
  top: 24%;
  left: 24%;
  width: 38px;
  height: 40px;
  z-index: 3;
}
.tit_star03{
  position: absolute;
  top: 14.5%;
  right: 3%;
  width: 40px;
  height: 42px;
  z-index: 3;
}
.tit_star04{
  position: absolute;
  top: 35%;
  right: 21%;
  width: 40px;
  height: 42px;
  z-index: 3;
}
.tit_star05{
  position: absolute;
  top: 25.5%;
  right: 3.5%;
  width: 30px;
  height: 30px;
  z-index: 3;
}
.tit_star06{
  position: absolute;
  bottom: 28%;
  left: 5%;
  width: 30px;
  height: 30px;
  z-index: 3;
}
/* タイトルの雪 */
.tit_snow01{
  position: absolute;
  top: 27%;
  left: 1%;
  width: 40px;
  height: 40px;
  z-index: 3;
}
.tit_snow02{
  position: absolute;
  top: 12%;
  right: 23%;
  width: 28px;
  height: 28px;
  z-index: 3;
}

/* vsPark event star */
.event_star01 {
  position: absolute;
  top: 5.5%;
  left: 5%;
  width: 40px;
  height: 42px;
  z-index: 3;
}
.event_star02 {
  position: absolute;
  top: 6.5%;
  right: 3%;
  width: 40px;
  height: 42px;
  z-index: 3;
}
.event_star03 {
  position: absolute;
  top: 20.5%;
  right: 3%;
  width: 30px;
  height: 30px;
  z-index: 3;
}

@media (max-width: 768px) {
}

.snow01{
  position: absolute;
  top: 3.5%;
  left: 4%;
  width: 34px;
  height: 34px;
  z-index: 3;
}
.snow02{
  position: absolute;
  top: 32%;
  left: 2.5%;
  width: 34px;
  height: 34px;
  z-index: 3;
}
.snow03{
  position: absolute;
  top: 5.5%;
  right: 22%;
  width: 28px;
  height: 28px;
  z-index: 3;
}
.snow04{
  position: absolute;
  top: 10%;
  right: 3%;
  width: 28px;
  height: 28px;
  z-index: 3;
}
/* vsPark event snow */
.event_snow01 {
  position: absolute;
  top: 26%;
  left: 4%;
  width: 40px;
  height: 40px;
  z-index: 3;
}
.event_snow02 {
  position: absolute;
  top: 6%;
  right: 23%;
  width: 28px;
  height: 28px;
  z-index: 3;
}
.event_snow03 {
  position: absolute;
  top: 7.5%;
  left: 25%;
  width: 24px;
  height: 24px;
  z-index: 3;
}

@media (max-width: 768px) {
}

.uma01{
  position: absolute;
  top: 70%;
  left: 65%;
  width: 26%;
  /* width: 120px; */
  height: auto;
  z-index: 3;
}
.uma02{
  position: absolute;
  left: 8%;
  top: 58%;
  width: 22%;
  /* width: 110px; */
  height: auto;
  z-index: 3;
}


