@charset "UTF-8";

@-webkit-keyframes noticeModalShow {
    0% {
      top: 100px;
      visibility: visible;
      opacity: 0;
      pointer-events: none;
    }
  
    100% {
      top: 0;
      opacity: 1;
      pointer-events: default;
    }
}
  
@keyframes noticeModalShow {
    0% {
      top: 100px;
      visibility: visible;
      opacity: 0;
      pointer-events: none;
    }
  
    100% {
      top: 0;
      opacity: 1;
      pointer-events: default;
    }
}
  
@-webkit-keyframes noticeModalHide {
    0% {
      top: 0;
      visibility: visible;
      opacity: 1;
      pointer-events: none;
    }
  
    100% {
      top: 100px;
      visibility: hidden;
      opacity: 0;
      pointer-events: none;
    }
}
  
@keyframes noticeModalHide {
    0% {
      top: 0;
      visibility: visible;
      opacity: 1;
      pointer-events: none;
    }
  
    100% {
      top: 100px;
      visibility: hidden;
      opacity: 0;
      pointer-events: none;
    }
}

.noticeModal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000000;
    display: -webkit-box;
    display: -webkit-flex;
    display:         flex;
    visibility: hidden;
    -webkit-box-align: center;
    -webkit-align-items: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
            justify-content: center;
    width: 100%;
    /* height: 100vh; */
    min-height: 100vh; /* Fallback */
    min-height: calc(var(--vh, 1vh) * 100);
}
.noticeModal.is-noticeModal-show {
    position: fixed;
    visibility: visible;
}
.noticeModal.is-noticeModal-show .noticeModal-inner {
-webkit-animation: noticeModalShow 0.5s both;
        animation: noticeModalShow 0.5s both;
}
.noticeModal.is-noticeModal-hide {
    position: fixed;
    visibility: hidden;
    pointer-events: none;
}
.noticeModal.is-noticeModal-hide .noticeModal-inner {
-webkit-animation: noticeModalHide 0.5s both;
        animation: noticeModalHide 0.5s both;
}
.noticeModal .noticeModal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
}
.noticeModal .noticeModal-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    z-index: 1;
    width: 80vw;
    max-width: 1100px;
    margin: 0 32px;
}
.noticeModal .noticeModal-inner a {
    display: inline-block;
}
.noticeModal .noticeModal-inner a img {
    max-width: 100%;
    height: auto;
}
body.is-noticeModal-show .wrap {
    position: fixed;
    width: 100%;
}
.noticeModal .noticeModal-btn-close {
    z-index: 100;
    position: absolute;
    top: -15px;
    right: -15px;
    width: 30px;
    height: 30px;
    background-size: 12px;
    border-color: white;
    border-radius: 21px;
    background-color: #0D0D0D;
}
.noticeModal-btn-close {
    width: 60px;
    height: 60px;
    background: #2d2f33 url(../images/icon/btn-close-white.svg) no-repeat center center/20px;
}
@media screen and (max-width: 1400px) {
  .noticeModal .noticeModal-inner {
      max-width: 1000px;
  }
}

@media screen and (max-width: 767px) {
    .noticeModal .noticeModal-inner {
        max-width: 500px;
        width: auto;
        margin: 0 24px;
    }
}

.cart_seisan .l-nav,
.cart_confirm .l-nav {
  display: none;
}
