@charset "UTF-8";
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #666;
}
#exHeader {
  background-color: #000;
  width: 100%;
  height: 45px;
}
#exHeader .ABlogo {
  text-align: center;
}
#exHeader .ABlogo img {
  height: 23px;
  margin-top: 11px;
}

#popcoupon {
  width: 100%;
  background-color: #eaedf3;
  height: calc(100vh - 75px);
}
#popcoupon .inner {
  width: 375px;
  margin: 0 auto;
  padding-top: 50px;
}
#popcoupon .inner img {
  display: block;
  width: 70%;
  margin: 0 auto 0 auto;
}
#popcoupon .inner .ttl01 {
  font-size: 33px;
  font-weight: 550;
  color: #555;
  width: 80%;
  margin: 10px auto;
  white-space: nowrap;
}

#exFooter {
  background-color: #666;
  width: 100%;
  height: 30px;
}
#exFooter .copyR {
  color: #fff;
  font-size: 11px;
  text-align: center;
  line-height: 30px;
}

/* ---------------------------- スマホ --------------------------- */
@media screen and (max-width: 767px) {
  #exHeader {
    background-color: #000;
    width: 100%;
    height: 12vw;
  }
  #exHeader .ABlogo img {
    height: 6.3vw;
    margin-top: 3vw;
  }
  #popcoupon {
    height: calc(100vh - 20vw);
  }
  #popcoupon .inner {
    padding-top: 5vw;
  }
  #popcoupon .inner img {
    display: block;
    width: 50vw;
    margin: 0 auto 0 auto;
  }
  #popcoupon .inner .ttl01 {
    font-size: 7.7vw;
    width: 70vw;
    margin: 2vw auto;
  }
  #exFooter {
    height: 8vw;
  }
  #exFooter .copyR {
    font-size: 3vw;
    line-height: 8vw;
  }
} /* スマホ */



