html.remodal-is-locked {
  overflow: hidden;
  touch-action: none;
}
.remodal,
[data-remodal-id] {
  display: none;
}
.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;
  display: none;
}
.remodal-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow: auto;
  text-align: center;
  -webkit-overflow-scrolling: touch;
}
.remodal-wrapper:after {
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
  content: "";
}
.remodal-overlay,
.remodal-wrapper {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.remodal {
  position: relative;
  outline: none;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
.remodal-is-initialized {
  display: inline-block;
}
.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
  filter: blur(3px);
}
.remodal-overlay {
  background: rgba(0, 0, 0, 0.8);
}
.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}
.remodal-overlay.remodal-is-opening {
  animation-name: remodal-overlay-opening-keyframes;
}
.remodal-overlay.remodal-is-closing {
  animation-name: remodal-overlay-closing-keyframes;
}
.remodal {
  box-sizing: border-box;
  width: 100%;
}
.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}
.remodal.remodal-is-opening {
  animation-name: remodal-opening-keyframes;
}
.remodal.remodal-is-closing {
  animation-name: remodal-closing-keyframes;
}
.remodal,
.remodal-wrapper:after {
  vertical-align: middle;
}
.remodal-close {
  position: sticky;
  top: 10px;
  right: 15px;
  z-index: 99;
  width: 30px;
  height: 30px;
  margin: 10px 0 0 auto;
  display: block;
  padding: 0;
  cursor: pointer;
  border: 0;
  outline: 0;
  background: url(../img/shared/close.png) no-repeat 0 0/100% auto;
}
.remodal-close:hover,
.remodal-close:focus {
  color: #2b2e38;
}
.remodal-confirm,
.remodal-cancel {
  font: inherit;
  display: inline-block;
  overflow: visible;
  min-width: 110px;
  margin: 0;
  padding: 12px 0;
  cursor: pointer;
  transition: background 0.2s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  border: 0;
  outline: 0;
}
.remodal-confirm {
  color: #fff;
  background: #81c784;
}
.remodal-confirm:hover,
.remodal-confirm:focus {
  background: #66bb6a;
}
.remodal-cancel {
  color: #fff;
  background: #e57373;
}
.remodal-cancel:hover,
.remodal-cancel:focus {
  background: #ef5350;
}
.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
  padding: 0;
  border: 0;
}
@keyframes remodal-opening-keyframes {
  from {
    transform: scale(1.05);
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
    filter: blur(0);
  }
}
@keyframes remodal-closing-keyframes {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(0.95);
    opacity: 0;
    filter: blur(0);
  }
}
@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.lt-ie9 .remodal-overlay {
  background: #2b2e38;
}
.lt-ie9 .remodal {
  width: 700px;
}
.popup-content {
  background: url(../img/shared/bg2.jpg);
  color: #fff;
}
.popup-content .container {
  padding: 10vw 5% 15vw;
}
.popup-content h2 {
  font-size: 10vw;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.popup-content .note {
  margin: 35px 0 30px;
}
.popup-content .txt-sub {
  font-size: 16px;
  text-align: left;
  margin: 5px 0 -12px;
}
.popup-content .content .col .item {
  margin-bottom: 30px;
}
.popup-content .content .col .item h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: left;
  margin-bottom: -6px;
}
.popup-content .content .col .item .list dl {
  line-height: 25px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding: 12px 0;
}
.popup-content .content .col .item .list dl dt {
  text-align: left;
}
.popup-content .content .col .item .list dl dd {
  text-align: right;
}
.popup-content .content .col3 .item .list {
  display: flex;
  justify-content: space-between;
}
.popup-content .content .col3 .item .list .left {
  text-align: left;
  width: 65%;
}
.popup-content .content .col3 .item .list .left ul {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  line-height: 25px;
}
.popup-content .content .col3 .item .list .right {
  text-align: right;
}
.popup-content .btn-close {
  border: 0;
  background: none;
  color: #fff;
  display: inline-block;
  position: relative;
  padding-right: 40px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 20px auto 0;
}
.popup-content .btn-close::after {
  content: "";
  background: url(../img/shared/btn_close.png) no-repeat 0 0/100% auto;
  width: 22px;
  height: 22px;
  position: absolute;
  top: -1px;
  right: 0;
}
@media screen and (min-width: 768px) {
  .remodal-close {
    top: 20px;
    margin: 50px 50px 0 auto;
  }
  .remodal-close:hover {
    opacity: 0.7;
  }
  .popup-content {
    max-width: 1300px;
    font-size: 15px;
  }
  .popup-content .container {
    padding: 40px 20px 100px;
    max-width: 1040px;
    margin: 0 auto;
  }
  .popup-content h2 {
    font-size: 75px;
    line-height: 80px;
    letter-spacing: 0;
  }
  .popup-content .note {
    font-size: 15px;
    line-height: 30px;
    margin: 50px 0 39px;
  }
  .popup-content .content {
    display: flex;
    justify-content: space-between;
  }
  .popup-content .content .col {
    width: 320px;
  }
  .popup-content .content .col .item {
    margin-bottom: 22px;
  }
  .popup-content .content .col .item h3 {
    font-size: 20px;
    margin-bottom: -13px;
  }
  .popup-content .content .col .item .list dl {
    font-size: 15px;
    padding: 12px 0;
  }
  .popup-content .content .col3 .item .list .left {
    width: 260px;
    letter-spacing: 0;
  }
  .popup-content .btn-close {
    padding-right: 43px;
    margin: 49px auto 0;
    cursor: pointer;
  }
  .popup-content .btn-close:hover {
    opacity: 0.7;
  }
}
