@charset "UTF-8";

.popupBlock {
  border-radius: 4px;
  position: fixed;
  top: 50%;
  left: 20px;
  right: 20px;
  z-index: 1000;
  overflow: hidden;
  text-align: center;
  transform: translateY(-50%);
}

.popupBlock__inner {
  width: 708px;
  height: 100%;
  overflow: auto;
  background: #fff;
  border-radius: 4px;
  margin: 0 auto;
  padding: 25px;
  -webkit-overflow-scrolling: touch;
}

.popupBlock__inner > :last-child {
  margin-bottom: 0;
}

.popupBlock__inner__block {
  background: #fff;
  padding: 30px 20px;
}

.popupBlock__title {
  margin: 0 0 10px;
  padding: 10px 0 0;
  text-align: center;
  background: transparent;
  color: #000;
  font-size: 20px;
  font-weight: bold;
}

.popupBlock__subTitle {
  text-align: center;
  font-size: 14px;
  margin: 0;
  padding: 10px 0 20px;
}

.popupBlock__btns > :last-child {
  margin-left: 2%;
}

.popupBlock__btn {
  font-size: 16px;
  margin: 10px 0;
  padding: 6px;
  background: #2492cc;
  border-radius: 10px;
  height: 90px;
  box-shadow: 0 2px 0 #046da4;
  color: #fff;
  width: 49%;
  float: left;
  font-weight: bold;
  cursor: pointer;
  border: 0;
}

.popupBlock__btn:focus {
  outline: none;
}

.popupBlock__btn:hover {
  opacity: 0.8;
}

.popupBlock__btn__smallText {
  font-size: 12px;
}

.popupBlock__text--small > :last-child,
.popupBlock__text > :last-child {
  margin-bottom: 0;
}

.op-popupBlock__btn__no {
  display: none;
}

.exOverlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 999;
}

/* contents */

.top_main10 {
  background: url(/satei/common/images/kv.jpg) no-repeat center top / 100% auto;
}

.js-enquetePop {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
  transition: opacity .75s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s ease 1s;
}

.js-enquetePop.js-enquetePop--hide {
  opacity: 0;
  visibility: hidden;
}

