@charset "utf-8";
/*各コンテンツの共通CSS
---------------------------------------------------*/
/*----------------------------------
  ボタン
------------------------------------*/
/* 白背景 */
.btn01 {
  width: 90%;
  max-width: 300px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  font-weight: bold;
  border: 1px solid #CCC;
  line-height: 1.4;
  padding: 14px 30px;
  text-align: center;
  border-radius: 30px;
  background-color: #FFF;
  text-decoration: none;
}
/* 背景透過 白枠 */
.btn02 {
  width: 90%;
  max-width: 300px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #FFF;
  color: #FFF;
  font-weight: bold;
  line-height: 1;
  text-decoration: none;
  border-radius: 30px;
}
/* 白背景(小) */
.btn03 {
  width: 100%;
  height: 32px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  border: 1px solid #CCC;
  line-height: 1;
  padding: 0;
  text-align: center;
  border-radius: 30px;
  background-color: #FFF;
}

/* 左側　緑縦ボーダー */
.border-l {
    font-size: 1.8rem;
	font-weight:bold;
	line-height: 1.6;
	border-left:4px solid #00a73c;
	padding-left:10px;
	margin-bottom:15px;
}

/*----------------------------------
  矢印
------------------------------------*/
/*赤背景 白矢印右（背景表示）*/
.bg_ar_red {
  background: #FFF url("../img/icon/arrow01-red.svg") no-repeat right 10px center;
  background-size: 16px auto;
}
/*白背景 緑矢印右（背景表示）*/
.bg_ar_green {
  background: url("../img/icon/arrow01-green.svg") no-repeat right 10px center;
  background-size: 16px auto;
}
/*透過 赤矢印右（背景表示）*/
.bg_ar_red2 {
  background: url("../img/icon/arrow02-red.svg") no-repeat right 12px center;
  background-size: 14px auto;
}
/*透過 緑矢印右（背景表示）*/
.bg_ar_green2 {
  background: #FFF url("../img/ar_green2.svg") no-repeat right 12px center;
  background-size: 14px auto;
}
/*透過 緑矢印下（背景表示）*/
.bg_ar_green2_btm {
  background: #FFF url("../img/ar_green2-btm.svg") no-repeat right 10px center;
  background-size: 10px auto;
}
/*透過 白矢印右（背景表示）*/
.bg_ar_white {
  background: url("../img/ar_white.svg") no-repeat right 12px center;
  background-size: 14px auto;
}
/*赤背景 白矢印右（疑似要素）*/
.ar_red:after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: url("../img/ar_red.svg") no-repeat center;
  background-size: 14px auto;
}
/*白背景 緑矢印右（疑似要素）*/
.ar_green:after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: url("../img/ar_green.svg") no-repeat center;
  background-size: 14px auto;
}
/*透過 緑矢印右（疑似要素）*/
.ar_green2:after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background: url("../img/ar_green2.svg") no-repeat center;
  background-size: 12px auto;
}
/*透過 緑矢印下（疑似要素）*/
.ar_green2_btm:after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background: url("../img/ar_green2-btm.svg") no-repeat center;
  background-size: 12px auto;
}
/*----------------------------------
  陰影
------------------------------------*/
/* 黒 */
.d-shadow {
  display: inline-block;
  box-shadow: 0 3px 8px rgb(0 0 0 / 15%);
}
/* 緑 */
.d-shadow-green {
  display: inline-block;
  box-shadow: 4px 4px 4px rgb(174 244 177 / 100%);
}
@media print, screen and (min-width: 768px) {
  /*----------------------------------
  ボタン
------------------------------------*/
  /* 白背景 */
  .btn01 {
    max-width: 460px;
  }
  /* 白背景(小) */
  .btn03 {
    /*    height: 40px !important;*/
  }
    /*白背景 緑矢印右（背景表示）*/
  .bg_ar_green {
    background-position: right 15px center;
    background-size: 12px auto;
  }
    
}
/* PC用1024px～（NPC）
---------------------------------------------------------------------*/
@media print, screen and (min-width: 1024px) {
  /*----------------------------------
  ボタン
------------------------------------*/
  /* 白背景 */
  .btn01 {
    max-width: 560px;
    padding: 18px 30px;
    border-radius: 40px;
    transition: .2s all ease;
  }
  /* Hover */
  .btn01:hover {
    background-color: #FFF565;
    background-size: 20px auto;
    border: #FFF565 1px solid;
    text-decoration: none;
  }
  /* 背景透過 白枠 */
  .btn02 {
    border: 3px solid #FFF;
    transition: .2s all ease;
  }
  /* Hover */
  .btn02:hover {
    background-color: #008B11;
    border: 3px solid #008B11;
    text-decoration: none;
  }
  /* 白背景（小） */
  .btn03 {
    transition: .2s all ease;
  }
  /* Hover */
  .btn03:hover {
    background-color: #FFF565;
    border: #FFF565 1px solid;
    text-decoration: none;
  }
  /* 要素透過 */
  .bt_cl {
    opacity: 1;
    transition: .2s all ease;
  }
  .bt_cl:hover {
    opacity: .7;
  }
  /*----------------------------------
  矢印
------------------------------------*/
  /*赤背景 白矢印右（背景表示）*/
  .bg_ar_red {
    background-position: right 15px center;
    background-size: 12px auto;
  }
  /*白背景 緑矢印右（背景表示）*/
  .bg_ar_green {
    background-position: right 15px center;
    background-size: 12px auto;
  }
  /*透過 緑矢印右（背景表示）*/
  .bg_ar_green2 {
    background-position: right 15px center;
    background-size: 14px auto;
  }
  /*透過 緑矢印下（背景表示）*/
  .bg_ar_green2_btm {
    background-position: right 15px center;
    background-size: 12px auto;
  }
  /*透過 白矢印右（背景表示）*/
  .bg_ar_white {
    background-position: right 15px center;
    background-size: 20px auto;
  }
  /*赤背景 白矢印右（疑似要素）*/
  .ar_red:after {
    width: 20px;
    height: 20px;
    background-size: 20px auto;
  }
  /*白背景 緑矢印右（疑似要素）*/
  .ar_green:after {
    width: 20px;
    height: 20px;
    background-size: 20px auto;
  }
  /*透過 緑矢印下（疑似要素）*/
  .ar_green2_btm:after {
    width: 14px;
    height: 14px;
    background-size: 14px auto;
  }
  /*----------------------------------
  陰影
------------------------------------*/
  /* 黒 */
  .d-shadow {
    display: inline-block;
    box-shadow: 0 3px 12px rgb(0 0 0 / 15%);
  }
  /* 緑 */
  .d-shadow-green {
    display: inline-block;
    box-shadow: 16px 16px 2px rgb(174 244 177 / 100%);
    transition: .2s all ease;
  }
  .d-shadow-green:hover {
    box-shadow: 16px 16px 2px rgb(255 245 101 / 100%);
  }
}
/*----------------------------------
  SNSシェアボタン
------------------------------------*/
.sns_share_btn {
  border-top: #CCCCCC 1px solid;
  padding-top: 20px;
  margin-top: 27px;
}
.sns_share_btn * {
  font-size: initial !important;
}
.sns_share_btn h3 {
  font-size: 1.8rem !important;
  font-weight: bold !important;
  text-align: center;
}
.sns_share_btn ul {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.sns_share_btn li + li {
  margin-left: 10px;
}
/* TAB用768px～（TAB）
---------------------------------------------------------------------*/
@media print, screen and (min-width: 768px) {
  .sns_share_btn {
    padding-top: 40px !important;
    margin-top: 50px !important;
  }
  .sns_share_btn ul {
    margin-top: 5px;
  }
}
/* PC用1024px～（NPC）
---------------------------------------------------------------------*/
@media print, screen and (min-width: 1024px) {
  .sns_share_btn h3 {
    font-size: 2.4rem !important;
  }
  .sns_share_btn ul {
    margin-top: 10px;
  }
  .sns_share_btn li + li {
    margin-left: 15px;
  }
}
/*募集要項*/
/* 下線 2色ボーダー（緑・グレー） */
.border-bt_twotone span {
  font-size: 1.6rem;
  color: #333333;
  display: block;
  position: relative;
  font-weight: bold;
  border-bottom: 3px solid #d6d6d6;
  padding-bottom: 10px;
}
.border-bt_twotone span::after {
  position: absolute;
  bottom: -3px;
  left: 0;
  z-index: 2;
  content: '';
  width: 15%;
  height: 3px;
  background-color: #00a73c;
}
body[id^=mv] .border-bt_twotone span::after {
  background-color: #c70057;
}

/*----------------------------------
  店舗業態ロゴ
------------------------------------*/

/* フジグラン */
.cat-grand:before {
	background: url("/common_v14/img/store/shop/logo/page/icon_fujigrand.svg")no-repeat center;
}
/* フジSM */
.cat-sm:before {
    background: url("/common_v14/img/store/shop/logo/page/icon_sm.svg")no-repeat center;
}
/* パルティ・フジ */
.cat-palty:before {
    background: url("/common_v14/img/store/shop/logo/page/icon_palty.svg")no-repeat center;
}
/* エミフル */
.cat-emifull:before {
	background: url("/common_v14/img/store/shop/logo/page/icon_emifull.svg")no-repeat center;
}
/* エフ・マルシェ01 */
.cat-fmarche:before {
    background: url("/common_v14/img/store/shop/logo/page/icon_fmarche.svg")no-repeat center;
}
/* エフ・マルシェ02 */
.cat-fmarche02:before {
	background: url("/common_v14/img/store/shop/logo/page/icon_fmarche02.svg")no-repeat center;
}
/* カジュアル */
.cat-casual:before {
	background: url("/common_v14/img/store/shop/logo/page/icon_casual.svg")no-repeat center;
}
/* ラクア緑井 */
.cat-wraqua:before {
	background: url("/common_v14/img/store/shop/logo/page/icon_wraqua.svg")no-repeat center;
}

/*----------------------------------
  店舗リスト
------------------------------------*/
.shop-list {}
.shop-list h3.border-bt_twotone {
  margin-bottom: 25px;
}
.shop-list h3.border-bt_twotone span {}
/* 地区単位 */
.shop-list .inner-box {}
.shop-list .inner-box + .inner-box {
  margin-top: 60px;
}
.shop-list .inner-box h4.border-l {
  font-size: 1.6rem;
  line-height: 2 !important;
  margin-bottom: 10px;
}
/* 地域単位 */
.shop-list .inner-box > div + div {
  margin-top: 55px;
}
/* 店舗単位 */
.shop-list .inner-box .item {}
.shop-list .inner-box .item + .item {
  margin-top: 30px;
}
.shop-list .inner-box .item a {
  display: block;
  background: #FFF;
  border: 1px solid #CCC;
  border-radius: 10px;
  overflow: hidden;
}
.shop-list .inner-box .item a > div {
  border-bottom: #F5F5F5 1px solid;
  padding: 20px 25px 15px;
}
.shop-list .inner-box .item h5 {
  font-size: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}
.shop-list .inner-box .item h5:before {
  content: "";
  display: block;
  width: 0;
  height: 40px;
  margin: 0;
  background-size: 40px auto;
  margin-right: 8px;
  padding-left: 40px;
}
.shop-list .inner-box .item h5.cat-grand:before {
  background-size: 30px auto;
}
.shop-list .inner-box .item h5 + span {
  max-width: 180px;
  height: 40px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  text-decoration: none;
  background-position: right 15px center;
  background-color: #DAFCD7;
  border-radius: 50px;
}
.shop-list .inner-box .item h5 + span:after {
  margin-left: 8px;
}
.shop-list .inner-box .item a ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding: 20px 25px 25px;
}
.shop-list .inner-box .item a ul li {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.shop-list .inner-box .item a ul li + li {
  margin-top: 10px;
}
.shop-list .inner-box .item a ul li h6 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 26px;
  font-weight: bold;
  border: 1px solid #CCC;
  border-radius: 20px;
  padding: 0px 20px;
  line-height: 1;
  margin-right: 10px;
  margin-bottom: 4px;
}
.shop-list .inner-box .item a ul li p span {
  display: none;
}
/* TAB用768px～（TAB）
---------------------------------------------------------------------*/
@media print, screen and (min-width: 768px) {
  .shop-list {}
  .shop-list .inner-box .item a > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .shop-list .inner-box .item h5 {
    justify-content: flex-start;
    margin-bottom: 0;
  }
  .shop-list .inner-box .item h5 + span {
    width: 180px;
    margin: 0;
  }
}
/* PC用1024px～（NPC）
---------------------------------------------------------------------*/
@media print, screen and (min-width: 1024px) {
  /*----------------------------------
  店舗リスト
------------------------------------*/
  .shop-list {}
  .shop-list .inner-box + .inner-box {
    margin-top: 120px;
  }
  .shop-list h3 {
    margin-bottom: 50px;
  }
  .shop-list h3.border-bt_twotone span {
      font-size: 2.4rem;
      
    }
  .shop-list .inner-box > div + div {
    margin-top: 110px;
    
  }
  .shop-list .inner-box h4.border-l {
    font-size: 2.4rem;
    margin-bottom: 40px !important;
    line-height: 1.6 !important;
  }
  .shop-list .inner-box .item + .item {
    margin-top: 40px;
  }
  .shop-list .inner-box .item a {
    transition: all 0.2s ease;
    border: 2px solid #F5F5F5;
  }
  .shop-list .inner-box .item a:hover {
    text-decoration: none;
    border: 2px solid #008B11;
  }
  .shop-list .inner-box .item a > div {
    padding: 24px 35px 20px;
  }
  .shop-list .inner-box .item h5 {
    font-size: 2.7rem;
  }
  .shop-list .inner-box .item h5:before {
    width: 0;
    height: 54px;
    background-size: 54px auto;
    margin-right: 12px;
    padding-left: 54px;
  }
  .shop-list .inner-box .item h5.cat-grand:before {
    background-size: 44px auto;
  }
  .shop-list .inner-box .item h5 + span {
    font-size: 1.4rem;
    max-width: none;
    transition: all 0.2s ease;
  }
  .shop-list .inner-box .item a:hover h5 + span {
    background-color: #FFF565;
  }
  .shop-list .inner-box .item h5 + span:after {
    margin-left: 10px;
  }
  .shop-list .inner-box .item a ul {
    padding: 5px 35px 30px;
  }
  .shop-list .inner-box .item a ul li {
    width: auto;
    margin-top: 20px !important;
    margin-right: 25px;
  }
  .shop-list .inner-box .item a ul li + li {
    margin-top: 0;
  }
  .shop-list .inner-box .item a ul li h6 {
    height: 35px;
    margin-bottom: 0;
    margin-right: 15px;
    border-radius: 30px;
    padding: 0px 28px;
  }
}