/* Hide scroll bar */

html.remodal-is-locked {
  overflow: hidden;
  touch-action: none;
}

/* Anti FOUC */

.remodal,
[data-remodal-id] {
  display: none;
  position: relative;
}

/* Necessary styles of the overlay */

.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;
  display: none;
}

/* Necessary styles of the wrapper */

.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: "";
}

/* Fix iPad, iPhone glitches */

.remodal-overlay,
.remodal-wrapper {
  backface-visibility: hidden;
}

/* Necessary styles of the modal dialog */

.remodal {
  position: relative;
  outline: none;
  text-size-adjust: 100%;
}

.remodal-is-initialized {
  /* Disable Anti-FOUC */
  display: inline-block;
}

/* Default theme styles for the background */

.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
  filter: blur(0);
}

/* Default theme styles of the overlay */

.remodal-overlay {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.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;
}

/* Default theme styles of the wrapper */

.remodal-wrapper {
  padding: 10px 5% 0;
}

/* Default theme styles of the modal dialog */

.remodal {
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 10px;
  padding: 0;
  transform: translate3d(0, 0, 0);
  color: #2b2e38;
}

.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;
}

/* Vertical align of the modal dialog */

.remodal,
.remodal-wrapper:after {
  vertical-align: middle;
}

/* Close button */

.remodal-close {
  position: absolute;
  bottom: 100%;
  right: 0;
  display: block;
  overflow: visible;
  width: 35px;
  height: 55px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.5);
  border: 0;
  outline: 0;
  background: transparent;
}

.remodal-close:hover,
.remodal-close:focus {
  color: #fff;
}

.remodal-close:before,
.remodal-close:after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background-color: #fff;
  position: absolute;
}
.remodal-close:before{
  transform: rotate(45deg);
}
.remodal-close:after {
  transform: rotate(-45deg);
}
/* Close button */

.remodal-closing {
  position: absolute;
  bottom: 100%;
  right: 10px;
  top: -55px;
  display: block;
  overflow: visible;
  width: 35px;
  height: 55px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s;
  text-decoration: none;
  border: 0;
  outline: 0;
  background: transparent;
}

.remodal-closing:hover,
.remodal-closing:focus {
  color: #000;
}

.remodal-closing:before,
.remodal-closing:after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background-color: #fff;
  position: absolute;
}
.remodal-closing:before{
  transform: rotate(45deg);
}
.remodal-closing:after {
  transform: rotate(-45deg);
}



/* Dialog buttons */

.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;
}

/* Remove inner padding and border in Firefox 4+ for the button tag. */

.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* Keyframes========================================================================== */

@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;
  }
}

/* Media queries========================================================================== */

@media only screen and (min-width: 641px) {
  .remodal {
    max-width: 1024px;
  }
}

@media screen and (max-width:834px) {
  .remodal {
    max-width: 1024px;
    padding: 0;
    margin-top: 40px;
  }
}

/* IE8========================================================================== */

.lt-ie9 .remodal-overlay {
  background: #2b2e38;
}

.lt-ie9 .remodal {
  width: 834px;
}



/************
modalAd
************/

.modalAd {
  display: flex;
  justify-content: center;
}
.modalAd-item{
  flex: 1;
  max-width: 480px;
  margin: 0 10px;
  padding: 10px;
  background: #fff;
}

.modalAd-img {
}
.modalAd-img a {
}
.modalAd-img img {
  transition: 0.3s;
}
.modalAd-inner {
  background: #fff;
  padding-top: 10px;
}
.modalAd-link {
}
.modalAd-link + .modalAd-link{
  padding-top: 5px;
}
.modalAd-link a {
  display: block;
  color: #fff;
  background: #000;
  font-feature-settings: "palt";
  font-family: '游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic', sans-serif;
  font-weight: 600;
  font-size: 124%;
  padding: 0.6em 2em;
  text-decoration: none;
  position: relative;
}
.modalAd-link a::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  right: 15px;
  top: 45%;
  transform: rotate(45deg) translateY(-50%);
}
.modalAd-link a:hover {
  background-color: #333;
}
.modalAd-img a img:hover {
  opacity: 0.8;
}

@media screen and (max-width:834px) {

  .modalAd {
  }
  .modalAd-item{
    margin: 0 8px;
  }

  .modalAd-link + .modalAd-link{
    padding-top: 5px;
  }
  .modalAd-link a {
    font-size: 100%;
  }

}

@media screen and (max-width:520px) {

  .modalAd {
    display: block;
  }
  .modalAd-item{
    max-width: 260px;
    margin: 0 auto 15px;
    padding: 8px;
  }

  .modalAd-inner {
    background: #fff;
    padding-top: 8px;
  }
  .modalAd-link + .modalAd-link{
    padding-top: 5px;
  }
  .modalAd-link a {
    font-size: 93%;
    line-height: 1.3;
  }
  .modalAd-link a::after {
    width: 5px;
    height: 5px;
    right: 10px;
    top: 50%;
  }
  .modalAd-link a:hover {
    background-color: #000;
  }
  .modalAd-img a img:hover {
    opacity: 1;
  }

}











