/* ------------------------------------------------
  remodal base style
------------------------------------------------ */
html.remodal-is-locked {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
}
.remodal, [data-remodal-id] {
  display: none;
}
.remodal-overlay, .remodal-wrapper {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.remodal-overlay {
  position: fixed;
  z-index: 1;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;
  display: none;
  max-height: inherit;
}
.remodal-wrapper {
  position: fixed;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow: auto;
  text-align: center;
  -webkit-overflow-scrolling: touch;
}
.remodal-wrapper::after {
  content: "";
  margin-left: -.05em;
  height: 100%;
  display: inline-block;
}
.remodal {
  position: relative;
  outline: 0;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
.remodal button.close {
  border-width: 0;
  background-color: transparent;
  padding: 0;
  width: 25px;
  height: 25px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  position: absolute;
  left: 100%;
  top: -35px;
  cursor: pointer;
  -webkit-transition: opacity .2s linear;
  -o-transition: opacity .2s linear;
  transition: opacity .2s linear;
  outline: none;
}
.remodal-is-initialized {
  display: inline-block;
}
/* ------------------------------------------------
  custom
------------------------------------------------ */
.remodal-overlay {
  background: rgba(255, 255, 255, 0.8);
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-out;
  -o-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
}
.remodal-overlay.remodal-is-opened {
  opacity: 1;
}
.remodal-wrapper {
  padding: 1rem 0;
  cursor: pointer;
  z-index: 103;
}
@media screen and (max-width: 668px) {
  .remodal-wrapper {
    padding: 2.66667% 2.66667%;
  }
}
.remodal {
  cursor: default;
  opacity: 0;
  position: static;
  -webkit-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}
@media screen and (max-width: 668px) {
  .remodal button.close {
    width: 2rem;
    height: 2rem;
    left: initial;
    right: 0;
    top: -3rem;
  }
  .remodal button.close::before, .remodal button.close::after {
    width: 2.2rem;
    height: .2rem;
  }
}
.remodal-is-opened .remodal {
  opacity: 1;
  -webkit-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}
.remodal, .remodal-wrapper:after {
  vertical-align: middle;
}
/* ------------------------------------------------
  .remodal.otameshi 共通スタイル
------------------------------------------------ */
.remodal.otameshi {
  position: relative;
  text-align: left;
  font-size: clamp(11px, calc((11 / 750) * 100vw), 15px);
}
.remodal.otameshi > .inner {
  background-color: #fff;
  padding: 4.22535% 10.22535% 6%;
  max-width: 710px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.remodal.otameshi button.close {
  background: url(../images/btn_close.svg) no-repeat;
  background-size: contain;
  margin-left: auto;
  width: 2.8rem;
  height: 2.8rem;
  display: block;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  position: static;
}
.remodal.otameshi .item {
  position: relative;
}
.remodal.otameshi .item + .item {
  margin-top: 5%;
}

.remodal.otameshi .item .btn {
  position: absolute;
  left: 3.5%;
  bottom: 3%;
  max-width: 47.846%;
}
.remodal.otameshi .body .note {
  font-feature-settings: "palt";
  letter-spacing: .05em;
}
.remodal.otameshi .body .note li {
  text-indent: -1em;
  padding-left: 1em;
}
.remodal.otameshi .body ul.note + ul.note {
  margin-top: .8em;
}
.remodal.otameshi .btn_modal {
  max-width: 66.769%;
  margin: 5% auto 4%;
}
@media screen and (max-width: 668px) {
   .remodal.otameshi > .inner {
    padding: 4.22535% 4.22535% 6%;
  }
}

/* ------------------------------------------------
  .remodal.kv_video
------------------------------------------------ */
.remodal.kv_video button.close {
  background: url(../images/btn_close_wh.svg) no-repeat;
  background-size: contain;
  margin-left: auto;
  width: 2.8rem;
  height: 2.8rem;
  display: block;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  position: static;
}
.remodal.kv_video .body {
  margin-top: 3%;
}
.youtube_box {
  width: 90vw;
  max-width: 880px;
  height: auto;
  aspect-ratio: 16 / 9;
  display: block;
  margin: auto;
}
.youtube_box iframe,
#mop_movie01 {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 16 / 9;
  display: block;
}
/* スマホが横になったら */
@media (orientation: landscape) {
  .youtube_box {
    width: 65vw;
  }
}