@charset "UTF-8";

/* #eventbodyまでの固定コンテンツを消す */
/* #event>h1:first-of-type, #event>div:first-of-type,
.headline, #eventbody>p:first-of-type, #eventbody li:before{
  display: none;
}
#eventbody{
  margin-top:0;
} */

/* 画面サイズによって切り替える改行やテキストの揃え */
@media screen and (min-width: 768px) {
  .pc-t-r{   /*PCの時に右揃えに*/
    text-align: right;
  }
}
.sp-d-b{  /*PC時は見えない*/
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-d-b{  /*スマホ時のみ適用*/
    display: block;
  }
}

/* メニューボタンとメニュー切り替え */
.shopinfo--button{
  margin: 30px 0;
    display: -webkit-box;
    display: -ms-flexbox;
  display: flex;
    -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.shopinfo--button div{
  max-width: 300px;
  height: 60px;
  width: calc((100% - 20px) / 2 );
  width: -webkit-calc((100% - 20px) / 2 );
  margin-right: 20px;
  border:1px solid #313B4C;
  border-radius: 3px;
  display: table;
}
.shopinfo--button div:last-of-type{
  margin-right: 0;
}
.shopinfo--button div a{
  padding: 10px 5px;
  color:#313B4C;
  text-align: center;
  width: 100%;
  height: 100%;
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  font-weight: bold;
}
.shopinfo--button div a:hover{
  text-decoration: none;
}
.active{
  background:#313B4C;
  color:#fff !important;
}
@media screen and (min-width: 768px) {
  .shopinfo--button div a{
    font-size: 120%;
  }
}


/* 店舗リストでliの下に線を引く（lastは除く） */
.shopinfo--ul>li{
  border-bottom: 1px solid #DDDDDD;
  padding: 20px 0;
  box-sizing: border-box;
  margin-bottom: 0 !important;
  padding-left: 0 !important;
}
.shopinfo--ul>li:first-of-type{
  padding-top:0;
}
.shopinfo--ul>li:last-of-type{
  border-bottom: none;
}

/* 店舗詳細とGoogleMapのリンクボタン */
.shopinfo__button{
    display: -webkit-box;
    display: -ms-flexbox;
  display: flex;
    -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.shopinfo__button>a{
  margin: auto 0;
  border:1px solid #313B4C;
  width: calc((100% - 10px) /2);
  width: -webkit-calc((100% - 10px) /2);
  border-radius: 3px;
  padding: 5px 0;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
  color:#313B4C;
}
.shopinfo__button>a:hover{
  background:#DDD;
}
.shopinfo__button>a:last-of-type{
  margin-left:10px;
}
.shopinfo__button>a.link1button{
  width: 100% !important;
  margin: auto 0 !important;
}
.shopinfo__button--br{
  display: none;
}
@media screen and (min-width: 721px) and (max-width:900px) {
  .shopinfo__button{
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
    flex-direction: column;
  }
  .shopinfo__button>a{
    width: 100%;
    margin: 0 0 5px;
  }
  .shopinfo__button>a:last-of-type{
    margin-left:0;
    margin-bottom: 0;
  }
}


/* オフィシャルショップ */
.shopinfo--official>li{
    display: -webkit-box;
    display: -ms-flexbox;
  display: flex;
    -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.shopinfo--official>li>div{
  margin: 0 1%;
    display: -webkit-box;
    display: -ms-flexbox;
  display: flex;
  align-items: center;
}

.shopinfo--official>li>div>div{
  flex: 1;
}
.shopinfo--official>li>div:first-of-type{
  width: 8%;
}
.shopinfo--official>li>div:nth-of-type(2){
  width: 26%;
}
.shopinfo--official>li>div:nth-of-type(3){
  width: 35%;
}
.shopinfo--official>li>div:nth-of-type(4){
  width: 23%;
}
.official__place{
  border:1px solid #DDD;
  padding: 3px 0;
  text-align: center;
}
.official__name{
  font-weight: bold;
}
@media screen and (min-width: 769px) and (max-width:900px) {
  .shopinfo--official>li>div:first-of-type{
    width: 8%;
  }
  .shopinfo--official>li>div:nth-of-type(2){
    width: 31%;
  }
  .shopinfo--official>li>div:nth-of-type(3){
    width: 40%;
  }
  .shopinfo--official>li>div:nth-of-type(4){
    width: 13%;
  }
}
@media screen and (max-width: 767px) {
  .shopinfo--official>li{
    display: block;
  }
  .shopinfo--official>li>div{
    margin: 10px 0 0;
  }
  .shopinfo--official>li>div:first-of-type{
    width: 60px;
    margin-top:0;
  }
  .shopinfo--official>li>div:nth-of-type(2),
  .shopinfo--official>li>div:nth-of-type(3),
  .shopinfo--official>li>div:nth-of-type(4){
    width: 100%;
  }
}


/* 地名のリスト */
.placelist__pc{
  border:1px solid #313B4C;
  border-radius: 3px;
  padding: 5px 10px;
  box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
  display: flex;
    -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.placelist__pc>a{
  padding: 10px;
  box-sizing: border-box;
  color:#313B4C;
  font-weight: bold;
}
.placelist__sp{
  display: none;
}
.placelist__sp>select{
  padding: 5px;
  box-sizing: border-box;
  color:#313B4C;
  width: 100%;
  /* font-size:16px; */
  font-size:23px;
}

@media screen and (min-width: 769px) {
  .placelist__pc>a{
    font-size: 110%;
  }
}
@media screen and (max-width: 767px) {
  .placelist__pc{
    display: none;
  }
  .placelist__sp{
    display: block;
  }
}

/* ジーゾーンのロゴ */
.gzone_logo--att{
  border:1px solid #ea601f;
  padding: 1px 3px;
  box-sizing: border-box;
}
.gzone_logo--att>img{
  height: 10px;
  width: auto;
}
.gzone_logo>img{
  width: 100%;
  height: auto;
  padding: 3px;
  border:1px solid #ea601f;
  box-sizing: border-box;
}

/* デポのロゴ */
.depot_logo--att{
  border:1px solid #03004c;
  padding: 1px 3px;
  box-sizing: border-box;
}
.depot_logo--att>img{
  height: 16px;
  width: auto;
  vertical-align: text-bottom;
}
.depot_logo>img{
  width: 100%;
  height: auto;
  padding: 3px;
  border:1px solid #03004c;
  box-sizing: border-box;
}


/* コスパ商品取扱店舗 */
.shopinfo--other>li{
    display: -webkit-box;
    display: -ms-flexbox;
  display: flex;
    -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.shopinfo--other>li>div{
  margin: 0 1%;
    display: -webkit-box;
    display: -ms-flexbox;
  display: flex;
  align-items: center;
}

.shopinfo--other>li>div>div{
  flex: 1;
}
.shopinfo--other>li>div:first-of-type{
  width: calc(((100% - 68px) - 6%) / 100 * 31.5);
  width: -webkit-calc(((100% - 68px) - 6%) / 100 * 31.5);
}
.shopinfo--other>li>div:nth-of-type(2){
  width: 68px;
}
.shopinfo--other>li>div:nth-of-type(3){
  width: calc(((100% - 68px) - 6%) / 100 * 39);
  width: -webkit-calc(((100% - 68px) - 6%) / 100 * 39);
}
.shopinfo--other>li>div:nth-of-type(4){
  width: calc(((100% - 68px) - 6%) / 100 * 27);
  width: -webkit-calc(((100% - 68px) - 6%) / 100 * 27);
}
@media screen and (min-width: 769px) and (max-width:900px) {
  .shopinfo--other>li>div:first-of-type{
    width: calc(((100% - 68px) - 6%) / 100 * 35.5);
    width: -webkit-calc(((100% - 68px) - 6%) / 100 * 35.5);
  }
  .shopinfo--other>li>div:nth-of-type(2){
    width: 68px;
  }
  .shopinfo--other>li>div:nth-of-type(3){
    width: calc(((100% - 68px) - 6%) / 100 * 45);
    width: -webkit-calc(((100% - 68px) - 6%) / 100 * 45);
  }
  .shopinfo--other>li>div:nth-of-type(4){
    width: calc(((100% - 68px) - 6%) / 100 * 16);
    width: -webkit-calc(((100% - 68px) - 6%) / 100 * 16);
  }
}
@media screen and (max-width: 720px) {
  .shopinfo--other>li{
    display: block;
      position: relative;
  }
  .shopinfo--other>li>div{
    margin: 10px 0 0;
  }
  .shopinfo--other>li>div:first-of-type{
    width: calc( 100% - 75px);
    width: -webkit-calc( 100% - 75px);
    margin-top:0;
  }
  .shopinfo--other>li>div:nth-of-type(2){
    position: absolute;
    top:20px; right:0;
    width: 68px;
    margin: 0;
  }
  .shopinfo--other>li:first-of-type>div:nth-of-type(2){
    position: absolute;
    top:0; right:0;
    width: 68px;
    margin: 0;
  }
  .shopinfo--other>li>div:nth-of-type(3),
  .shopinfo--other>li>div:nth-of-type(4){
    width: 100%;
  }
}

#eventbody li{
  border-left: none;
}
#eventbody h2 {
    clear: both;
    margin: 30px 0px 7px;
    padding: 10px 5px 10px 20px;
    background: #f0f0f0;
    border:none;
    /* border-left: 10px solid #313B4C; */
    font-size: 16px;
    position: relative;
}
#eventbody h2::before{
  content: '';
  width: 6px;
  height: calc(100% - 14px);
  height: -webkit-calc(100% - 14px);
  position: absolute;
  top:7px;
  left:7px;
  padding: 0;
  background:#313B4C;
}
