@charset "UTF-8";
/* CSS Document */

/*modal
==================*/
.mdl-contents-open
,.cts-mdl-open{
  cursor: pointer;
}
.mdl-contents{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100svh;
  overflow-y: scroll;
  background: rgba(16,16,16,.6);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 101;
}
.modal-window {
  position: fixed;
  width: 100vw;
  height: 100svh;
  top: 0;
  left: 0;
  z-index: 100;
  background: rgba(16,16,16,.6);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}
.modal-contents-wrap{
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  padding-top: 130px;
  padding-bottom: 130px;
  min-height: 100%;
}
.js-mdl-close:not(.button){
  position: absolute;
  top: min(50px,10vw);
  right: min(50px,5vw);
  width: min(10vw,30px);
  aspect-ratio:1/1;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.js-mdl-close button{
  width: 100%;
  height: 4px;
  background: var(--clr-pink);
  position: absolute;
  top: 50%;
  left: 0;
  transform: rotate(45deg);
  border-radius: 2px;
}
.js-mdl-close button::after{
  content: "";
  width: 100%;
  height: 4px;
  background:var(--clr-pink);
  position: absolute;
  transform: rotate(90deg);
  top: 0;
  left: 0;
  border-radius: 2px;
}

/*modal movie
==============================*/
.modal {
  background: rgba(0,0,0,.69);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: fixed;
  z-index: 99999;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
}
.vdo-body {
  width:100%;
  max-width: 900px;
  overflow: hidden;
}
.video-thumb{
  overflow: hidden;
  width: 100%;
}
.vdo-body
,.video-thumb{;
  display: block;
  aspect-ratio:1/0.5626;
}
.vdo-base{
  width: 100%;
  height: 100%;
  position: relative;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  gap:min(30px,10vw);
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.vdo-body iframe
,.video-thumb figure{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.video-thumb figure img{
  object-fit: cover;
  height: 100%;
  object-position: center;
}
.modal a.close-modal{
  width: min(180px,90vw);
  font-family: var(--fnt-quick);
  height: 3em;
  background: var(--clr-grn);
  color: #fff;
  border-radius: 28px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
.mdl-button-close{
  cursor: pointer;
}


