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: 15px 5px 0 auto;
  display: block;
  padding: 0;
  cursor: pointer;
  border: 0;
  outline: 0;
  background: url(../img/shared/close.png) no-repeat 0 0/100% auto;
  mix-blend-mode: difference;
}
.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 .container {
  background: url(../img/shared/bg1.jpg);
  padding: 55px 5%;
  margin: 25px 10px 10px;
}
.popup-content h2 {
  font-size: 7vw;
  letter-spacing: 0.05em;
}
.popup-content .note {
  letter-spacing: 0.1em;
  line-height: 24px;
  margin: 25px 0 30px;
}
.popup-content .content .col .item {
  margin-bottom: 40px;
}
.popup-content .content .col .item h3 {
  font-family: "Shippori Mincho";
  font-size: 17px;
  letter-spacing: 0.1em;
  padding-bottom: 5px;
  margin-bottom: 10px;
  border-bottom: 2px solid #060911;
}
.popup-content .content .col .item .list dl {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  line-height: 24px;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #aba9a6;
}
.popup-content .content .col .item .list dl dt {
  text-align: left;
}
.popup-content .content .col .item .list dl dd {
  text-align: right;
}
.popup-content .btn-close {
  width: 85px;
  margin: 0 auto;
  font-size: 0;
  border: 0;
  background: none;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .popup-content {
    max-width: 1200px;
  }
  .popup-content .remodal-close {
    width: 50px;
    height: 50px;
  }
  .popup-content .remodal-close:hover {
    opacity: 0.7;
  }
  .popup-content .container {
    padding: 82px 20px 60px;
    margin: 60px 0 0;
  }
  .popup-content .inner {
    max-width: 1000px;
    margin: 0 auto;
  }
  .popup-content h2 {
    font-size: 30px;
  }
  .popup-content .note {
    font-size: 14px;
    margin: 29px 0 33px;
  }
  .popup-content .content {
    display: flex;
    justify-content: space-between;
  }
  .popup-content .content .col {
    width: 310px;
  }
  .popup-content .content .col .item {
    margin-bottom: 43px;
  }
  .popup-content .content .col .item h3 {
    font-size: 18px;
    margin-bottom: 16px;
  }
  .popup-content .content .col .item .list dl {
    padding: 11px 0;
    font-size: 14px;
    display: block;
    position: relative;
  }
  .popup-content .content .col .item .list dl:after {
        content: "." !important;
    clear: both !important;
    display: block !important;
    height: 0 !important;
    visibility: hidden !important;
  }
  .popup-content .content .col .item .list dl dt {
    text-align: left;
    float: left;
  }
  .popup-content .content .col .item .list dl dd {
    text-align: right;
    float: right;
  }
  
  .popup-content .content .col .item .list dl.ext dd {
    
    position: absolute;
    top: 0px;
    right: 0;
  }
  .popup-content .btn-close {
    width: 103px;
    margin: 66px auto 0;
  }
  .popup-content .btn-close img {
    width: 100%;
    height: auto;
  }
  .popup-content .btn-close:hover {
    opacity: 0.7;
  }
}
