@charset "UTF-8";

/* company
-----------------------------------------------*/

/* modal */
.modal {
  display: none;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  box-sizing: border-box;
  background: rgba(0, 135, 108, 0.8);
}
.modal .inner {
  max-width: 1280px;
  width: 100%;
  height: 100vh;
  margin: auto;
  overflow: auto !important;
  -webkit-overflow-scrolling: touch !important;
  box-sizing: border-box;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.modal iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
}
.modal .close {
  position: absolute;
  z-index: 101;
  top: 0;
  right: 60px;
  cursor: pointer;
  width: 60px;
  height: 60px;
}
.modal .close::before,
.modal .close::after {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 40px;
  height: 2px;
  margin: auto;
  background: #fff;
  content: "";
}
.modal .close::before {
  transform: rotate(45deg);
}
.modal .close::after {
  transform: rotate(-45deg);
}
.modal .chart {
  max-width: 100%;
  height: auto;
  display: block;
  margin: auto;
  padding: 40px;
  background-color: #fff;
}
.modal img {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .modal .inner {
    padding: 40px;
  }
  .modal .close {
    right: 40px;
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 750px) {
  .modal .inner {
    padding: 0;
  }
  .modal .close {
    top: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
  }
  .modal .close::before,
  .modal .close::after {
    width: 25px;
    height: 3px;
    background: #333;
  }
  .modal .close span::before {
    bottom: 5px;
    font-size: 8px;
  }
  .modal .chart {
    padding: 20px;
  }
}
