@charset "utf-8";
/*-popup-*/
.popup {
  position: fixed;
  right: 0;
  bottom: 0;
  width: 250px;
  height: 300px;
  z-index: 9999;
  opacity: 0;
  transform: translateY(200px);
  transition:  ease .5s;
  visibility: hidden;
  transition: .5s;
  background-color: #222;
    box-shadow: 0 2px 20px 0 rgb(0 0 0 / 14%), 0 3px 1px -2px rgb(0 0 0 / 20%), 0 1px 5px 0 rgb(0 0 0 / 12%);
}
.popup.is-show {
  opacity: 1;
  transform: translateY(0);
  transition:  ease .5s;
  visibility: visible;
}
.popup-inner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
  height: 100%;
  max-width: 600px;
  padding: 0;
  padding-top: 12px;
  background-color: #50C8A7;
  z-index: 2;
}
.popup-inner img {
  width: 100%;
}
.close-btn {
  position: absolute;
  right: 0;
  top: -16px;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  cursor: pointer;
}
.close-btn i {
  font-size: 20px;
  color: #333;
}


/* popup2 */

#js-popup2.popup{
    width: auto; 
    height: auto;
    right: 20px;
    bottom: 20px;
    box-shadow: none;
}


#js-popup2 .close-btn,
#js-popup2 .btn-document .doc__close {
    position: absolute;
    top: -1.5rem;
    right: -1.5rem;
    z-index: 0;
    width: 35px;
    height: 35px;
    padding: 0.5rem;
    border: 2px solid #fff;
    border-radius: 50%;
    background: url(/src/images/icon/icon-close_white.png) center center no-repeat,#252525;
    background-size: 15px, 100%;
    -webkit-box-shadow: 0 3px 5px rgb(37 37 37 / 40%);
    box-shadow: 0 3px 5px rgb(37 37 37 / 40%);
    cursor: pointer;
}

#js-popup2 .btn-document .doc__item {
    width: 280px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 3px solid #fff;
    background: #ffdb49;
    border-radius: 3px;
    -webkit-box-shadow: 0 5px 10px rgb(37 37 37 / 40%);
    box-shadow: 0 5px 10px rgb(37 37 37 / 40%);
}

#js-popup2 .btn-document .doc__item a {
    width: 100%;
    height: 100%;
    padding: 0.8rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    color: #252525;
    font-size: 22px;
    font-size: 2.2rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
    font-family: "メイリオ",sans-serif;
}
#js-popup2 .btn-document .doc__item a>div {
    width: 100%;
}

#js-popup2 .btn-document .doc__text {
    width: 100%;
    position: relative;
    margin: 0 0 0.5rem;
    padding: 0 0.5rem;
    border-radius: 3px;
}
#js-popup2 .btn-document .doc__item .arrow {
    width: 100%;
    position: relative;
    margin: 1rem 0 0;
    padding: 0.8rem 0.5rem;
    color: #fff;
    font-size: 14px;
    font-size: 1.4rem;
    text-align: center;
    background: #252525;
    border-radius: 50px;
}
#js-popup2 .btn-document .doc__item .arrow::after {
    content: '';
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    right: 1rem;
    bottom: 0;
    margin: auto 0;
    border-left: 7px solid #fff;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
}