@charset "UTF-8";
.conts{
  max-width: 1600px;
  width: 90%;
  box-sizing: border-box;
  margin: 50px auto;
}
.conts .box{
  background: url(../img/cmn/limited-bg.png) repeat center center / 150px #ecd9cf;
  border: solid 40px #c8b2a7;
  padding: 0 0 80px;
}
.conts .box .tit{
  width: 40%;
  margin: 0 0 50px auto;
}
.conts .box .txt{
  text-align: center;
  color: #866659;
  font-size: clamp(16px, 3vw, 40px);
  line-height: 1.4;
  margin: 0 0 50px;
  position: relative;
}
.conts .box .txt:before{
  content: '';
  position: absolute;
  background: url(../img/limited/ill.svg) no-repeat center center / contain;
  width: 12%;
  padding-top: 12%;
  height: 0;
  left: 2%;
  bottom: -30px;
}
.conts .box .planlist{
  max-width: 1280px;
  width: 90%;
  margin: 0 auto 50px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.conts .box .planlist li{
  width: 48%;
}
.conts .box .planlist li span{
  display: block;
  color: #b85d5d;
  font-size: clamp(16px, 2.4vw, 40px);
}
.conts .box .planlist li a{
  transition: .3s;
}
.conts .box .planlist li a:hover{
  opacity: .7;
}
.conts .box .notes{
  max-width: 1280px;
  width: 90%;
  margin: 0 auto;
}
.conts .box .notes p{
  font-size: clamp(10px, 1.2vw, 14px);
  line-height: 1.4;
  text-indent: -1rem;
  margin: 0 0 5px 1rem;
}
@media screen and (max-width: 767px) {
  .conts{
    margin: 30px auto;
  }
  .conts .box{
    background: url(../img/cmn/limited-bg.png) repeat center center / 70px #ecd9cf;
    border: solid 10px #c8b2a7;
    padding: 0 0 40px;
  }
  .conts .box .tit{
    width: 80%;
    margin: 0 auto 5%;
  }
  .conts .box .txt{
    margin: 0 0 5%;
  }
  .conts .box .txt:before{
    width: 18%;
    padding-top: 18%;
    height: 0;
    left: 0%;
    bottom: inherit;
    top: -12%;
  }
  .conts .box .planlist{
    margin: 0 auto 5%;
    display: block;
  }
  .conts .box .planlist li{
    width: 100%;
    margin: 0 0 3%;
  }
  .conts .box .planlist li a{
    transition: .3s;
  }
  .conts .box .planlist li a:hover{
    opacity: .7;
  }
  .conts .box .notes p{
    text-indent: -.5rem;
    margin: 0 0 5px .5rem;
  }
}

#plan-detail{
  background: #F5F3F0;
  padding-bottom: 80px;
}
#plan-detail .inner{
  max-width: 1450px;
  width: 90%;
  margin: 0 auto;
  padding: 80px 0;
}
#plan-detail .back a{
  background-color: #b75d5c;
  color: #fff;
  border: solid 1px #b75d5c;
  box-sizing: border-box;
  max-width: 600px;
  font-size: 24px;
  line-height: 1;
  margin: 0 auto;
  text-align: center;
  text-decoration: none;
  display: block;
  padding: 15px 5px;
  transition: .3s;
}
#plan-detail .back a:hover{
  background-color: #fff;
  color: #b75d5c;
}
#plan-detail .inner.data{
}
#plan-detail .captionArea__txt{
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}
#plan-detail .zu{
  position: relative;
}
#plan-detail .zu .js-modal-open{
  position: absolute;
  width: 6%;
  top: 38.5%;
  left: 54.5%;
  transition: .3s;
  overflow: hidden;
  border-radius: 100px;
}
#plan-detail .zu .js-modal-open:hover{
  opacity: .7;
}
@media screen and (max-width: 767px) {
  #plan-detail{
    padding-bottom: 8%;
  }
  #plan-detail .inner{
    padding: 8% 0 1%;
  }
  #plan-detail .back a{
    max-width: 300px;
    width: 90%;
    font-size: 16px;
  }
}


/* モーダルと背景の指定 */
.modal{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0,0,0,75%);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  box-sizing: border-box;
  z-index: 10000;
}
/* モーダルの擬似要素の指定 */
.modal:before{
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  margin-left: -0.2em;
}
/* クラスが追加された時の指定 */
.modal.is-active{
  opacity: 1;
  visibility: visible;
}
/* モーダル内側の指定 */
.modal-container{
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 90%;
}
/* モーダルを閉じるボタンの指定 */
.modal-close{
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -20px;
  right: -20px;
  width: 40px;
  height: 40px;
  color: #fff;
  background: #000;
  border-radius: 50%;
  cursor: pointer;
  z-index: 100;
}
/* モーダルのコンテンツ部分の指定 */
.modal-content{
  text-align: left;
  line-height: 1.8;
}
.modal-content .movie{
  width: 80%;
  aspect-ratio: 16 / 9;
  margin: auto;
}
.modal-content .movie iframe,
.modal-content .movie video {
  width: 100%;
  height: 100%;
}
.bc-iframe, .bc-iframe body, .bc-player-default_default, .bc-player-default_default .vjs-poster {
    background-color: initial;
}
@media screen and (max-width: 767px) {
  video-js.video-js.vjs-fluid:not(.vjs-audio-only-mode) {
      height: 480px;
  }
}
