
@charset "UTF-8";
/* モーダルのオーバーレイ */
#age-check img {
  width: 100%;
  height: 100%;
}
#age-check {
  display: none; /* CookieがないときにJSで表示する */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
}
/* モーダル内部コンテナ */
#age-check .age-check-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 590px;
  width: 90%;
  box-sizing: border-box;
  text-align: center;
}
#age-check .age-check-wrap .age-check-inner {
  position: relative;
}
/* 「はい」「いいえ」ボタンの間隔 */
#age-check .age-check-inner p {
  position: absolute;
  top:80%;
  width: calc(246/590*100%);
}
#age-check .age-check-inner .btn-yes {
  right:5%;
}
#age-check .age-check-inner .btn-no {
  left:5%;
}
#age-check .age-check-inner p a img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

@media (max-height:750px) {
  #age-check .age-check-wrap {
    width: 50%;
  }
}

@media (max-height:650px) {
  #age-check .age-check-wrap {
    width: 40%;
  }
}

