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

@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: 40px 6%;
}

@media (max-width: 768px) {
  .wrapper{
    max-width: 100%;
    width: 100%;
    padding: 40px 5%;
  }
  main{
    overflow: hidden;
    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: 5%;
    left: 5%;
  }
  .pc_bgArea_logo img{
    display: block;
    width: 380px;
    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;
  }
  .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#autumn{
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
    z-index: 999;
  }
  header .wrapper{
    padding: 0 3%;
  }
  .head_logo{
    margin-top: 15px;
  }
}
/* ==============================
    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: #1d2088;
  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;}
.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;}
.font_size15{font-size: 1.5rem!important;}
.color_red{color: #d7053d;}

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

.title_img{
  position: relative;
}

.title_img img{
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}
img.grm_leaf01{
  position: absolute;
  left: auto;
  right: 0;
  top: -40px;
  width: 70px;
  height: auto;
}
img.grm_leaf02{
  position: absolute;
  left: -5px;
  top: auto;
  bottom: -50px;
  width: 60px;
  height: auto;
}
img.dess_leaf01{
  width: 60px;
  left: 0;
  top: -15px;
}
img.dess_leaf02{
  width: 40px;
  right: 60px;
  bottom: -47px;
}
img.dess_leaf03{
  width: 70px;
  right: 0;
  bottom: -50px;
}

/* ==============================
    content_title
=============================== */
.titleArea{
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto 30px;
}
.slideimg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1;
}


/* ==============================
    fv Area
=============================== */
#fv .titleArea,
#fv_gourmet .titleArea{
  margin: 0 auto 5px;
}
#fv .titleArea img,
#fv_gourmet .titleArea img{
  display: block;
}
.fv_leaf{
  width: 126px;
  height: auto;
  position: absolute;
  top: -10px;
  right: -20px;
  left: auto;
}


/* SDGsボタン */
.btn_sdgsArea{
  background: url(../images/sdgs/sdgs_bg.gif) no-repeat center top /cover;
  overflow: hidden;
  margin-bottom: 5px;
}
.btn_sdgs{
  position: relative;
  display: block;
  border: 3px solid #fa7041;
  padding: 40px 30px 60px;
}
.btn_sdgs:hover{
  background: rgba(255,255,255,0.5);
}
.btn_sdgs::before{
  content: "";
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #fa7041;
  height: calc(tan(60deg) * 20px / 2);
  width: 20px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
/* イベント＆キャンペーン */
#event_btn{
  padding: 40px 0;
}
#event_btn .content_wrap{
  padding: 0 6%;
}
.title_event_cam img{
  display: block;
  width: 280px;
  height: auto;
  margin:0 auto 30px;
}
a.btn_event_nav,
a.btn_event_nav:visited{
  position: relative;
  display: block;
  width: 95%;
  background: url(../images/btn_bg_cam.gif) no-repeat center top / cover;
  border: 3px solid #0a2d88;
  border-radius: 15px;
  text-align: center;
  color: #0a2d88;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 80px;
  box-shadow: 4px 4px 0px 0px rgba(10, 45, 136, 1);
  margin-bottom: 20px;
}
a.btn_event_nav::before,
a.btn_event_nav::after{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
a.btn_event_nav::before{
  right: 20px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #0a2d88;
}
a.btn_event_nav::after{
  right: 25px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-right: 0 solid transparent;
  border-left: 9px solid #fff;
  border-bottom: 6px solid transparent;
  box-sizing: border-box;
}
.nav_btnArea{
  position: relative;
  width: 100%;
}
.nav_leaf01,
.nav_leaf02,
.nav_leaf03,
.nav_leaf04,
.nav_leaf05{
  position: absolute;
  display: block;
  height: auto;
}
.nav_leaf01{
  width: 100px;
  left: 0;
  top: -45px;
}
.nav_leaf02{
  width: 80px;
  top: 60px;
  right: 0;
}
.nav_leaf03{
  width: 60px;
  left: 35px;
  bottom: -30px;
}
.nav_leaf04{
  width: 120px;
  left: 0;
  top: 140px;
}
.nav_leaf05{
  width:100px;
  right: 0;
  bottom: -30px;
}

/* 商品リストの葉っぱ */
.item_leafpositio{
  position: absolute;
  display: block;
  height: auto;
}
.item_leaf01{
  width: 60px;
  left: -20px;
  bottom: 0;
}
.item_leaf02{
  width: 80px;
  right: -20px;
  top: -20px;
}
.item_leaf03{
  width: 80px;
  left: -40px;
  bottom: 30px;
}
.item_leaf04{
  width: 70px;
  right: -30px;
  bottom: 30px;
}
.item_leaf05{
  width: 60px;
  left: -20px;
  bottom: 55px;
}
.item_leaf06{
  width: 80px;
  right: -30px;
  bottom: 0;
}
.item_leaf07{
  width: 70px;
  right: -30px;
  top: 30px;
}
.item_leaf08{
  width: 60px;
  left: -20px;
  bottom: 100px;
}



/* ==============================
    SDGs
=============================== */
#sdgs{
  background: url(../images/sdgs/sdgs_bg.gif);
  padding: 60px 0;
}
.sdgs_box_wrap{
  background: #fff;
  border-radius: 10px;
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.35);
  padding: 60px 20px;
}
.sdgs_box{
  border-bottom: 3px dotted #22ac38;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.sdgs_box:last-of-type{
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.title_sdgs{
  color: #22ac38;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 450;
  line-height: 1.5;
  margin-bottom: 10px;
}
.title_sdgs span{
  font-size: 1.8rem;
}
#sdgs .sdgs_box img{
  display: block;
  border-radius: 15px;
  margin: 0 auto 10px;
}
.event_day{
  color: #22ac38;
  text-align: center;
  font-size: 2.8rem;
  font-weight: 400;
}
.event_day span{
  font-size: 1.8rem;
  margin-left: 10px;
}
a.btn_grad_grn,
a.btn_grad_grn:visited,
a.btn_grad_org,
a.btn_grad_org:visited,
a.btn_grad_org02,
a.btn_grad_org02:visited,
a.btn_grad_pink,
a.btn_grad_pink:visited,
a.btn_grad_pink02,
a.btn_grad_pink02:visited{
  position: relative;
  display: block;
  background: url(../images/sdgs/btn_bg.gif) no-repeat center center / cover;
  border: 1px solid #22ac38;
  border-radius: 25px;
  width: 280px;
  height: 50px;
  text-align: center;
  color: #fff;
  font-size: 1.8rem;
  line-height: 50px;
  margin: 20px auto 0;
}
a.btn_grad_org,
a.btn_grad_org:visited,
a.btn_grad_org02,
a.btn_grad_org02:visited{
  border: 1px solid #fa7041;
  background: url(../images/btn_bg_org.gif) no-repeat center center / cover;
}
a.btn_grad_pink,
a.btn_grad_pink:visited,
a.btn_grad_pink02,
a.btn_grad_pink02:visited{
  border: 1px solid #e63c96;
  background: url(../images/btn_bg_pink.gif) no-repeat center center / cover;
}
a.btn_grad_org02,
a.btn_grad_org02:visited,
a.btn_grad_pink02,
a.btn_grad_pink02:visited{
  max-width: 360px;
  width: 100%;
}


a.btn_grad_grn::before,
a.btn_grad_grn::after,
a.btn_grad_org::before,
a.btn_grad_org::after,
a.btn_grad_org02::before,
a.btn_grad_org02::after,
a.btn_grad_pink::before,
a.btn_grad_pink::after,
a.btn_grad_pink02::before,
a.btn_grad_pink02::after{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
a.btn_grad_grn::before,
a.btn_grad_org::before,
a.btn_grad_org02::before,
a.btn_grad_pink::before,
a.btn_grad_pink02::before{
  right: 20px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #fff;
}
a.btn_grad_grn::after,
a.btn_grad_org::after,
a.btn_grad_org02::after,
a.btn_grad_pink::after,
a.btn_grad_pink02::after{
  right: 25px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-right: 0 solid transparent;
  border-left: 9px solid #22ac38;
  border-bottom: 6px solid transparent;
  box-sizing: border-box;
}
a.btn_grad_org::after,
a.btn_grad_org02::after{
  border-left: 9px solid #fa7041;
}
a.btn_grad_pink::after,
a.btn_grad_pink02::after{
  border-left: 9px solid #e63c96;
}

/* ==============================
    VS Park
=============================== */
#vspark .titleArea{
  margin-bottom: 50px;
}
.vspark_box{
  border-bottom: 3px dotted #fa7041;
  padding-bottom: 40px;
  margin-bottom: 40px;
}
.vspark_box:last-of-type{
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.vspark_logo{
  display: block;
  width: 75%;
  margin: 0 auto 40px;
}
.title_vspark{
  color: #0a2d88;
  text-align: center;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 10px;
}
.title_vsparkcam{
  color: #fa7041;
  text-align: center;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 20px;
}
.title_vsparkcam span{
  font-size: 2.2rem;
}

/* ==============================
    EVENT
=============================== */
#event{
  margin-top: 60px;
}
.title_event{
  color: #0a2d88;
  text-align: center;
  font-size: 3.0rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 10px;
}
.title_event span{
  font-size: 2.4rem;
  line-height: 1.2;
}
.title_eventcam{
  color: #0a2d88;
  text-align: center;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 20px;
}
.title_eventcam span{
  font-size: 2.2rem;
}
.imgborder_org{
  border: 3px solid #fa7041;
  display: block;
  width: 100%;
  height: auto;
}

/* ==============================
    EVENT
=============================== */
#event_collabo{
  margin-top: 60px;
}
.collabo_box{
  border-bottom: 3px dotted #0a2d88;
  padding-bottom: 40px;
  margin-bottom: 40px;
}
.collabo_box:last-of-type{
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

#event_collabo .title_event{
  line-height: 1.2;
}
#event_collabo .title_event span{
  display: block;
  margin-bottom: 5px;
}
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: #0a2d88;
}



/* ==============================
    popup 商品
=============================== */
/* 商品リスト */
.item_boxline {
  box-sizing: border-box;
  position: relative;
  display: block;
  background: #fff;
  border: 3px solid #0a2d88;
  border-radius: 15px;
  margin-bottom: 30px;
}
.menu_img{
  display: block;
  width: 100%;
  border-radius: 12px 12px 0 0;
}
.item_shopname{
  display: block;
  width: 100%;
  border-radius: 0 0 12px 12px;
  margin-bottom: 5px;
}


/* 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: #0a2d88;
  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: #0a2d88;
  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: #0a2d88;
  text-align: justify;
  font-size: 1.4rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.popup_box p.shop_name{
  color: #0a2d88;
  text-align: center;
  font-size: 1.4rem;
}
.period{
  display: block;
  width: 70%;
  background: #0a2d88;
  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: #0a2d88;
  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 #0a2d88;
  border-right: 2px solid #0a2d88;
  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%;
  }
}




