@charset "UTF-8";
.popUpClose {
  cursor: pointer;
  display: block;
  height: 40px;
  width: 40px;
  right: 50px;
  top: 50px;
  position: absolute;
  z-index: 101;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transform: scale(1.1) translate(0);
          transform: scale(1.1) translate(0);
  text-align: center;
  font-size: 0;
  overflow: hidden;
  background: white;
  text-decoration: none;
  transition: background-color .2s; }
  @media screen and (max-width: 990px) {
    .popUpClose {
      width: 25px;
      height: 25px;
      top: 25px;
      right: 25px; } }
  .popUpClose:hover {
    background-color: #d9d9d9; }
  .popUpClose::before {
    content: '×';
    font-size: 32px;
    color: #888;
    font-family: 'Arial';
    line-height: 40px; }
    @media screen and (max-width: 990px) {
      .popUpClose::before {
        line-height: 26px;
        font-size: 25px; } }
