@charset "UTF-8";
.site-main {
  /*モーダル本体の指定 + モーダル外側の背景の指定*/
  /*モーダル本体の擬似要素の指定*/
  /*モーダル本体に「active」クラス付与した時のスタイル*/
  /*モーダル枠の指定*/
  /*モーダルを閉じるボタンの指定*/
  /*モーダル内のコンテンツの指定*/
}
.site-main #postbody #breathalyzerli li {
  /*モーダルを開くボタン*/
}
.site-main #postbody #breathalyzerli li .modal-open {
  font-size: 10px;
  line-height: 1.5em;
}
.site-main .modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  box-sizing: border-box;
  z-index: 999;
}
.site-main .modal-container:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
.site-main .modal-container.active {
  opacity: 1;
  visibility: visible;
}
.site-main .modal-body {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 900px;
  width: 80%;
}
.site-main .modal-close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -40px;
  right: -40px;
  width: 40px;
  height: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}
.site-main .modal-content {
  background: #fff;
  text-align: left;
  padding: 15px;
}
.site-main .modal-content br {
  display: none;
}
.site-main .modal-content img {
  width: 100% !important;
  margin: 0 !important;
}
.site-main .modal-content p {
  margin: 0;
  padding: 0;
  list-style: 0;
}

@media only screen and (max-width:768px) {
  .site-main #postbody #breathalyzerli li .modal-open {
    font-size: 2.5vw;
  }
  .site-main .modal-content {
    padding: 5px;
    margin: 15px 0 0;
  }
}/*# sourceMappingURL=popup.css.map */