@charset "utf-8";

.item {
  display: block;
  margin: 0 auto;
}
.store_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  margin: 30px -6px 0 -12px;
}
.android .store_list {
  display: block;
  overflow: hidden;
}
.store_list section {
  position: relative;
  width: 293px;
  height: 370px;
  padding: 33px 0 0;
  margin: 56px 0 16px;
  background: url(../img/frame.png) 0 100% no-repeat;
}
.store_list section h2 {
  position: absolute;
  bottom: 100%;
  right: -5px;
  left: -5px;
  width: 300px;
  margin: 0 auto;
  line-height: 1;
  text-align: center;
}
.android .store_list li:nth-child(odd) {
  float: left;
}
.android .store_list li:nth-child(even) {
  float: right;
}
a.pop {
  display: inline;
  border: none;
}
a.pop img {
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.store_btn {
  position: absolute;
  left: 72px;
  bottom: 32px;
  display: block;
  width: 149px;
  height: 50px;
  border: none;
  background: url(../img/btn.png) 0 0 no-repeat;
}
.store_btn img {
  display: block;
  width: 149px;
  height: 50px;
  opacity: 0;
  background: url(../img/btn.png) 0 100% no-repeat;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.store_btns {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 32px;
  display: block;
  width: 234px;
  height: 50px;
  margin: 0 auto;
  text-align: center;
}
.store_btns li {
  display: inline-block;
  margin: 0 3px;
}
.store_btns li a,
.store_btns li a img {
  display: block;
  width: 111px;
  height: 50px;
  background-repeat: no-repeat;
}
.store_btns li a {
  border: none;
  background-position: 0 0;
}
.store_btns li a img {
  opacity: 0;
  background-position: 0 100%;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.store_btns li a.set,
.store_btns li a.set img {
  background-image: url(../img/btn_01.png);
}
.store_btns li a.only,
.store_btns li a.only img {
  background-image: url(../img/btn_02.png);
}
.pc-hide {
  display: none;
}
@media screen and (max-width:670px) {
  .smart-hide {
    display: none;
  }
  .pc-hide {
    display: block;
  }
  .store_list section.pc-hide {
    background: none;
  }
}

@media screen and (min-width:671px) {
  .store_list {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 34px 10px 0 3px;
  }
  a.pop:hover img {
    opacity: 0.7;
  }
  .store_btn:hover img,
  .store_btns li a:hover img {
    opacity: 1;
  }
}