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

/*modal
==================*/
.cts-mdl-open{
  cursor: pointer;
}
.mdl-contents{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow-y: scroll;
  background: rgba(16,16,16,.6);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 101;
}
.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(.btn){
  position: absolute;
  top: min(50px,10vw);
  right: min(50px,5vw);
  width: min(8vw,50px);
  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:not(.btn) button{
  width: 100%;
  height: 4px;
  background: var(--clr-ppl);
  position: absolute;
  top: 50%;
  left: 0;
  transform: rotate(45deg);
}
.js-mdl-close:not(.btn) button::after{
  content: "";
  width: 100%;
  height: 4px;
  background: var(--clr-ppl);
  position: absolute;
  transform: rotate(90deg);
  top: 0;
  left: 0;
}
.js-mdl-close.btn{
  margin-top: min(70px,10vw);
  margin-left: auto;
  margin-right: auto;
}

/*modal movie
==============================*/
.modal {
  background: rgba(255,255,255,.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: 90%;
  max-width: 900px;
  overflow: hidden;
  aspect-ratio:1/.5625;
/*
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
*/
}
.video-thumb{
  overflow: hidden;
  width: 100%;
  aspect-ratio:1/.5625;
  border-radius: 10px;
}
/*
.vdo-body::before
,.video-thumb::before{
  content: "";
  display: block;
  padding-top: 56.25%;
}
*/
.vdo-base{
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  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;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  gap:min(50px,10vw);
  overflow-y: scroll;
  padding: 30px;
}
.vdo-body iframe
,.video-thumb figure{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.video-thumb figure::after{
  content: "";
  width: min(80px,20%);
  aspect-ratio:1/0.7009;
  background: url("../../image/hongjinyoung/icn_play.svg") no-repeat center/100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.video-thumb figure img{
  object-fit: cover;
  height: 100%;
  object-position: center;
}

/*youtube close*/
.modal a.close-modal{
  width: min(285px,90vw);
  height: 3.5em;
  background: var(--clr-nvy);
  border-radius: 28px;
}
.modal a.close-modal::after{
  content: "Close";
  width: 100%;
  height: 100%;
  text-align: center;
  color: #fff;
  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-family: bucketlist-210, sans-serif;
  font-size: 2.2727em;
}