

/* common ----------------------------------------------*/

.popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: .6s;
 
}
.popup.is-show {
  opacity: 1;
  visibility: visible;

}
.popup-inner {
  position: absolute;
  left: 50%;
  top: 51vh;
  transform: translate(-50%,-50%);
  width:800px;
  background-color: #fff;
  z-index: 3;
  overflow-y: scroll;
  height:91vh;
}
.popup-inner img {
  width: 100%;
}

.close-btn i {
  font-size: 20px;
  color: #333;
}
.black-background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  cursor: pointer;
  background-color: rgba(0,0,0,.6);
}

.popup-close-btn-bottom{
  background-color: #b69674;
  text-align: center;
  padding:10px 0;
  color: #fff;
}

.js-close-top-btn-wrap{
  display: block;
    position: relative;
    width: 800px;
    height: 100px;
    margin: auto;
    text-align: right;
    top:4vh;
}
.popup-close-btn-top{
    background-color: #fff;
    text-align: center;
    display: inline-block;
    padding: 5px 0;
    font-size: 23px;
    font-weight: bold;
    color: #898989;
    position: absolute;
    border: 3px solid #898989;
    z-index: 10000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    right:-15px;
}

/* layout ----------------------------------------------*/

.popup-content{
  padding:30px 50px 0;
}

.popup-heading-01,.popup-heading-02,.popup-heading-03,.popup-heading-04{
  background-color: #fcfbf9;
  padding:15px 0;
  line-height: 1.3;
  text-align: center;
  position: relative;
  margin-bottom: 20px;
  font-size: 22px;
}

.popup-heading-01 .bubble,.popup-heading-02 .bubble,.popup-heading-03 .bubble{position:absolute;}
.popup-heading-01 .bubble{width: 100px;top: -33px;left: 20%;}
.popup-heading-02 .bubble{width:100px;top: -16%;left: 9%;}
.popup-heading-03 .bubble{width:100px;top: -16%;left: 7%;}

.popup-heading-02{margin-top:50px;}
.popup-heading-02 span{color: #9d8a40;font-size: 18px;}
.popup-heading-03{margin-top:50px;}
.popup-heading-04{margin-top:50px;}

.popup .under-line{
  background: linear-gradient(transparent 60%, #f8eadf 60%);
}


.popup-recomend{
  border-top:1px solid #e0e0e0;
  border-bottom:1px solid #e0e0e0;
  width:70%;
  margin:30px auto;
  padding-bottom:10px;
}

.popup-recomend ul{margin-left: 70px}
.popup-recomend li{
  font-size: 16px;
  margin-bottom: 10px;
}
.popup-recomend li::before {
    content:'';
    background-image: url("../img/popup/check.png");
    background-size:cover;
    display: inline-block;
    width: 18px;
    height: 14px;
    vertical-align: middle;
    margin-right:5px;
}
.popup-recomend p{
  font-size: 18px;
  color: #9d8a40;
  text-align: center;
  margin: 20px 0 10px;
}

.popup-contents-list p{
  text-align: center;
  font-size: 14px;
  margin:10px 0;
}
.popup-contents-list ul{
    font-size:0;
    width: 80%;
    margin:auto;
}
.popup-contents-list li{
    display: inline-block;
    box-sizing:border-box;
    text-align: center;
    line-height: 1.2;
    font-size:18px;
    width: -webkit-calc(100% / 3);
    width: calc(100% / 3);
    width: 32%;
    vertical-align:top;
    margin-bottom: 10px;
}
.popup-contents-list li img{
  padding:10px;
  margin-bottom: 10px;
}

.popup .q-and-a dt{
  background: #fff;
  padding: 10px 15px 10px 35px;
  margin-bottom: 0;
}
.popup .q-and-a p{margin: 10px 0;}
.popup .qa_wrap{
  margin-bottom: 20px;
   border:1px solid #c4c4c4;
}

.popup .q-and-a dd{
  padding:0 30px 10px
}
