html{
  scroll-behavior: smooth;
  font-size: 62.5%;
}
body{
  font-family: "Noto Sans JP", "Noto Serif JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Meiryo, "游ゴシック体", "Yu Gothic", YuGothic, "Inter", sans-serif, serif;
  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;}

.slideimg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1;
}

/* タイトルテキスト */
.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;
}

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

/* ==============================
    header
=============================== */
header{
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  z-index: 1010;
}
header .wrapper{
  padding: 15px 5% 5px;
}
.head_logo{
  width: 210px;
}


@media (max-width: 768px) {
  .head_logo{margin-top: 0;}

}


/* ==============================
    fv
=============================== */
#fv{
  position: relative;
  padding-top: 150px;
}
.title_fv{
  position: absolute;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 640px;
  width: 100%;
  height: auto;
  z-index: 1000;
}
.fv_txt{
  text-align: center;
  font-size: 1.8rem;
  line-height: 2.0;
}

@media (max-width: 768px) {
  #fv{padding-top: 100px;}
  .title_fv{top: 80px;}
  .fv_txt{font-size: 1.4rem;}
}

/* ==============================
    footer
=============================== */
.ft_insta{
  position: fixed;
  bottom: 0;
  right: 0;
  width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: 0.3s ease;
  cursor: pointer;
  z-index: 1000;
}
.ft_insta img{
  width: 100%;
  height: auto;
  display: block;
}
.ft_insta.show{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ft_insta:hover{
  transform: translateY(0) scale(1.1);
}

.footer_etc{
  position: relative;
  background: #fff;
  width: 100%;
  z-index: 10;
}
.footer_add{
  color: #b50080;
  text-align: center;
  font-size: 1.6rem;
  padding: 20px 0;
}
.footlogo_img{
  display: block;
  max-width: 380px;
  width: 80%;
  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: 80%;
  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: #b50080;
  color: #fff;
  text-align: center;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  padding: 20px 0;
}
#page_top{
  position: fixed;
  left: 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 (max-width: 768px) {
  #page_top{bottom: 10px;}
}

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

/* ==============================
    共通設定
=============================== */
.fullborder_outside{
  position: fixed;
  top: 38px;
  left: 0;
  width: 100vw;
  height: calc(100vh - 38px);
  border: 25px solid #fff;
  border-radius: 66px;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.2);
  pointer-events: none;
  z-index: 999;
}
.window{
  position: relative;
  width: 100%;
  height: calc(100vh - 25px);
  margin-top: 60px;
  border-radius: 66px;
  overflow: hidden;
  margin: 0 auto;
}
.inner{
  position: relative;
  height: 100%;
  padding: 25px 25px 0;
  overflow-y: auto;
}
.mainArea{
  position: relative;
  overflow: hidden;
}
.wrapper,
.ikea_inner{
  position: relative;
  max-width: 640px;
  width: 100%;
  padding: 30px 3%;
  margin: 0 auto;
}
.containerbox{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}

.mb10{margin-bottom: 10px!important;}
.mb20{margin-bottom: 20px!important;}
.mb30{margin-bottom: 30px;}
.mb60{margin-bottom: 60px;}
.txt_c{text-align: center!important;}
.font_s{font-size: 1.3rem!important;}
.color_red{color: #d7053d;}

@media (max-width: 768px) {
  .fullborder_outside{
    top: 47px;
    height: calc(100vh - 47px);
    border: 15px solid #fff;
    border-radius: 30px;
  }
  .window{
    height: calc(100vh - 10px);
    border-radius: 30px;
  }
  .inner{padding: 15px 15px 0;}
  .wrapper{
    padding: 60px 5%;
  }
  .ikea_inner{
    padding: 80px 5% 100px;
  }
}

.bg_pink{
  background: #f6c8dd;
}
.bg_pink_check{
  position: relative;
  background: #f6c8dd url(../images/bg_pattern.png) repeat top left / 20px;
  min-height: 100%;
}
.bg_yel_check{
  position: relative;
  background: #dfe780 url(../images/bg_pattern.png) repeat top left / 20px;
  min-height: 100%;
}

@media (max-width: 768px) {

}

/* ==============================
    PC版サイドイラスト
=============================== */
.fv_deco{
  position: absolute;
  bottom: 0;
  width: 704px;
  height: 730px;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: 3;
}
.fv_left{
  left: 50%;
  transform: translateX(calc(-320px - 704px));
  background-image: url(../images/fv/fv_left.png);
}
.fv_right{
  left: 50%;
  transform: translateX(calc(320px));
  background-image: url(../images/fv/fv_right.png);
}

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

/* ==============================
    コンテンツの区切り
=============================== */
/* 背景を三角にマスクする */
#item_tab .wrapper,
#springevent .wrapper{
  position: relative;
  margin-bottom: 80px;
}
#springevent .wrapper,
#collabo .wrapper{
  padding-bottom: 100px;
}
#item_tab .wrapper::after,
#springevent .wrapper::after,
#vspark .wrapper::after,
#collabo .wrapper::after,
#ikeaArea .ikea_inner::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -75px;
  width: 100%;
  height: 80px;
  clip-path: polygon(
    0 0,
    100% 0,
    60% 100%
  );
  z-index: 3;
}

#ikeaArea .ikea_inner::after{
  top: -150px;
  bottom: auto;
}
#item_tab .wrapper::after,
#vspark .wrapper::after,
#ikeaArea .ikea_inner::after{
  background: #f6c8dd url(../images/bg_pattern.png) repeat top left / 20px;
}
#springevent .wrapper::after{
  background: #00afd7;
}
#collabo .wrapper::after{
  background: #dfe780 url(../images/bg_pattern.png) repeat top left / 20px;
}

#news{
  position: relative;
  background: #00afd7;
  margin-top: -80px;
}
#vspark{
  margin-top: -80px;
}
#springevent{
  background: #00afd7;
  margin-top: -80px;
}

#fv{padding-bottom: 100px;}
#item_tab .wrapper,
#springevent .wrapper,
#fotArea .wrapper{
  padding-top: 150px;
  z-index: 1;
}
#news .wrapper,
#vspark .wrapper,
#collabo .wrapper,
#item_tab .wrapper{
  padding: 150px 3%;
  z-index: 1;
}
.new_itemArea{
  position: relative;
  padding-bottom: 60px;
  margin-bottom: 150px;
  z-index: 1;
}

#item_tab .wrapper::before,
#news .wrapper::before,
#springevent .wrapper::before,
#vspark .wrapper::before,
#collabo .wrapper::before,
#fotArea .wrapper::before,
#ikeaArea::before{
  content: "";
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 768px;
  height: auto;
  aspect-ratio: 640 / 200;
  z-index: 5;
}
#item_tab .wrapper::before,
#ikeaArea::before{
  background: url(../images/bg_tab.png) no-repeat top center / 100% auto;
}
#news .wrapper::before{
  background: url(../images/bg_news.png) no-repeat top center / 100% auto;
}
#springevent .wrapper::before{
  background: url(../images/bg_springevent.png) no-repeat top center / 100% auto;
}
#vspark .wrapper::before,
#collabo .wrapper::before,
#fotArea .wrapper::before{
  background: url(../images/bg_vspark.png) no-repeat top center / 100% auto;
}


@media (max-width: 768px) {
  #item_tab .wrapper,
  #springevent .wrapper,
  #fotArea .wrapper{
    padding-top: 100px;
  }
  #item_tab .wrapper{
    padding: 100px 5% 30px;
  }
  #news .wrapper,
  #vspark .wrapper,
  #collabo .wrapper{
    padding: 100px 5% 60px;
  }
  #item_tab .wrapper::after,
  #springevent .wrapper::after,
  #vspark .wrapper::after,
  #collabo .wrapper::after{
    bottom: -39px;
    width: 100%;
    height: 40px;
  }
  .new_itemArea {
    padding-bottom: 50px;
    margin-bottom: 120px;
  }
  .new_itemArea::after{
    bottom: -8px;
    width: 100%;
    height: 40px;
  }

  #ikeaArea .ikea_inner::after{
    top: -43px;
    bottom: auto;
    width: 100%;
    height: 40px;
  }

  #fv{padding-bottom: 50px;}


  #item_tab .wrapper::before,
  #springevent .wrapper::before,
  #vspark .wrapper::before,
  #collabo .wrapper::before,
  #fotArea .wrapper::before{
    top: -40px;
    width: 100%;
  }
  #news .wrapper::before{
    top: -40px;
    width: 100%;
  }
  #ikeaArea::before{
    top: -48px;
    width: 100%;
  }
  #item_tab .wrapper::before,
  #ikeaArea::before{
    background: url(../images/bg_tab_sp.png) no-repeat top center / 100% auto;
  }
  #news .wrapper::before{
    background: url(../images/bg_news_sp.png) no-repeat top center / 100% auto;
  }
  #springevent .wrapper::before{
    background: url(../images/bg_springevent_sp.png) no-repeat top center / 100% auto;
  }
  #vspark .wrapper::before,
  #collabo .wrapper::before,
  #fotArea .wrapper::before{
    background: url(../images/bg_vspark_sp.png) no-repeat top center / 100% auto;
  }

}


/* ==============================
    春アイテム
=============================== */
.title_picks img{
  display: block;
  max-width: 380px;
  width: 90%;
  margin: 0 auto 40px;
}

/* タブエリア */
.tab_area{
  display: block;
  width: 95%;
  margin: 0 auto;
}
.tab_btn {
  display: flex;
  gap: 5px;
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}
.tab_btn li {
  position: relative;
  flex: 1;
  text-align: center;
  background: #00afd7;
  border-radius: 15px 15px 0 0;
  cursor: pointer;
  transition: background 0.2s;
  padding: 15px 20px 20px;
  margin-bottom: 10px;
}
.tab_btn li img{
  display: block;
  width: 60%;
  height: auto;
  margin: 0 auto;
}
.tab_btn li.active {
  background: #e62e8b;
  border-top: 2px solid #333;
  border-left: 2px solid #333;
  border-right: 2px solid #333;
}
.tab_btn li.active::after{
  content: "";
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #fff;
}
.tab_content {
  display: none;
}
.tab_content.active {
  display: block;
  padding: 0 4%;
}

@media (max-width: 768px) {
  .tab_area{width: 100%;}
  .tab_btn li{padding: 10px 10px 20px;}
  .tab_btn li img{width: 100%;}
}


/* ==============================
    タブのなか
=============================== */
#item_tab h3 img{
  display: block;
  margin-bottom: 30px;
}
.itembox{
  display: block;
  width: 48%;
  background: #fff;
  border-radius: 15px;
  padding: 15px 15px 0;
  margin-bottom: 30px;
}
.itembox_inner{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.itembox_img{
  border-radius: 12px;
}

/* IKEA AREA */
#ikeaArea{
  position: relative;
  background: #fff;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  padding: 150px 0 60px;
  margin-top: -150px;
  z-index: 2;
}
.ikea_logo{
  display: block;
  width: 140px;
  height: auto;
  margin:  0 auto;
}
.ikeabox{
  display: block;
  width: 94%;
  background: #f3bcb8;
  padding: 30px 20px 20px;
  margin: 40px auto 30px;
}


@media (max-width: 768px) {
  .itembox{
    width: 100%;
  }
  .itembox_inner{
    margin-top: 0;
    padding-bottom: 15px;
  }
  #ikeaArea{
    padding: 40px 0 0;
    margin-bottom: 60px;
  }
  .ikeabox{
    width: 90%;
    margin: 30px auto 20px;
  }
}


/* ==============================
    お知らせ
=============================== */
.title_news img{
  display: block;
  width: 80%;
  margin: 0 auto 30px;
}
.btn_news{
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: 0 auto 20px;
  width: 80%;
  height: auto;
}

.harutoku img{
  border-radius: 30px;
}


#springevent h2{
  margin-bottom: 60px;
}

.eventbox{
  border-bottom: 3px solid #fff;
  padding-bottom: 100px;
  margin-bottom: 100px;
}
#vspark .eventbox{
  border-bottom: 3px dotted #333;
}
.eventbox:last-of-type,
#vspark .eventbox:last-of-type{
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
/* .event_day,
.event_day02{
  display: block;
  width: 40%;
  margin: 0 auto 20px;
} */
.event_day,
.event_day02{
  display: block;
  width: auto;
  height: 60px;
  margin: 0 auto 20px;
}
.event_day02{
  width: 45%;
}
.title_event,
.subtitle_collabo{
  color: #fff;
  text-align: center;
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 20px;
}
.title_event span,
.subtitle_collabo span{
  display: block;
  font-size: 2.4rem;
}
.subtitle_collabo{
  color: #333;
}
.img_r{
  display: block;
  border-radius: 30px;
  margin: 30px 0;
}
.btn_eventmore{
  display: block;
  width: 80%;
  height: auto;
  margin: 0 auto;
}
.event_small{
  color: #dfe780;
  text-align: center;
  font-size: 2.0rem;
}
.text_s{
  color: #fff;
  text-align: center;
  font-size: 1.3rem;
  margin-bottom: 30px;
}

@media screen and (max-width : 768px) {
  .title_news img{width: 90%;}
  .eventbox{
    padding-bottom: 50px;
    margin-bottom: 50px;
  }
  .title_event,
  .subtitle_collabo{
    font-size: 3.0rem;
  }
  .title_event span,
  .subtitle_collabo span{
    font-size: 2.0rem;
  }
  .img_r{
    border-radius: 20px;
    margin: 20px auto;
  }
  .event_day{
    height: 42px;
  }
  .event_day02{width: 60%;}
  .btn_eventmore{width: 100%;}
}

/* ==============================
    VS PARK
=============================== */
.title_vspark img{
  display: block;
  width: 60%;
  margin: 0 auto;
}
.vspark_logo {
  display: block;
  width: 85%;
  margin: 0 auto 40px;
}
.subtitle_vspark{
  text-align: center;
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 15px;
}
.cam_whet{
  color: #e62e8b;
  text-align: center;
  font-size: 2.4rem;
  line-height: 1.2;
}
.cam_day{
  color: #e62e8b;
  text-align: center;
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 30px;
}
.cam_day span{
  font-size: 3.8rem;
}
.event_txt{
  font-size: 1.8rem;
  margin-bottom: 20px;
}

@media screen and (max-width : 768px) {
  .title_vspark img{
    width: 85%;
    margin: 0 auto 20px;
  }
  .vspark_logo{
    width: 90%;
    margin: 0 auto 20px;
  }
  .event_txt{font-size: 1.6rem;}
  .cam_day{font-size: 2.4rem;}
  .cam_day span{font-size: 3.4rem;}
}

/* ==============================
    コラボキャンペーン
=============================== */
.title_collabo img{
  display: block;
  width: 90%;
  margin: 0 auto 100px;
}
.collabo_box{
  border-bottom: 3px dotted #333;
  padding-bottom: 100px;
  margin-bottom: 100px;
}
.collabo_box:last-of-type{
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.col_vspark_logo{
  display: block;
  width: 60%;
  height: auto;
  margin: 10px auto 20px;
}
ul.square_list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 30px;
}
ul.square_list li {
  position: relative;
  font-size: 1.8rem;
  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 screen and (max-width : 768px) {
  .title_collabo img{
    margin: 0 auto 60px;
  }
  ul.square_list li{font-size: 1.6rem;}
  .col_vspark_logo{width: 90%;}
  .collabo_box{
    padding-bottom: 60px;
    margin-bottom: 60px;
  }
}


/* ==============================
    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_content */
.popup_bg{
  position:fixed;
  top:38px;
  bottom:0;
  left:0;
  right:0;
  width: 100%;
  height: calc(100vh - 38px);
  background: rgba(64,73,82,0.8);
  border-radius: 66px;
  transition: 0.4s;
  z-index:100;
}
.popup_content{
  position: relative;
}
.popup_box{
  box-sizing: border-box;
  display: none;
  position: fixed;
  top:52%;
  left:50%;
  transform: translateX(-50%) translateY(-50%);
  max-width: 460px;
  width: 80%;
  max-height: 90vh;
  background: #fff;
  border-radius: 10px;
  padding: 30px 4%;
  overflow-y: auto;
  z-index: 1100;
}

.popup_shoplogo{
  min-height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin-bottom: 5px;
}
.popup_shoplogo img{
  width: 100%;
  transform: scale(1.5);
}
.popup_box img.popup_img{
  display: block;
  width: 100%;
  border-radius: 20px;
  margin:30px auto;
}
.popup_box p.shop_name{
  color: #333;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.5;
}

.popup_box .tit_item{
  color: #333;
  text-align: center;
  font-size: 2.0rem;
  line-height: 1.4;
  margin-bottom: 5px;
}
.popup_box .title_price{
  color: #333;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.5;
  margin-bottom: 10px;
}
.popup_box .title_price span{
  font-size: 1.4rem;
}
.popup_box p.detail_text{
  color: #333;
  text-align: justify;
  font-size: 1.4rem;
  line-height: 1.6;
  margin-top: 20px;
}

.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{
    top: 53%;
    max-height: 86vh;
  }
  .popup_box{padding: 30px 6%;}
  .popup_box img.popup_img{
    width: 100%;
  }
  .popup_next {right: -5px;}
  .popup_prev {left: -5px;}

}