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

/*modal
==================*/
.cts-mdl-open{
  cursor: pointer;
}
.mdl-contents{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow-y: scroll;
  background: rgba(26,26,26,.2);
  backdrop-filter: blur(6px);
  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{
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
  width: min(50px,10vw);
  aspect-ratio:1/1;
  border-radius: 50%;
  background: var(--base-navy);
  transform: translate(50%,-50%);
  z-index: 1;
}
.js-mdl-close::before
,.js-mdl-close::after{
  content: "";
  width: 1.5px;
  height: 50%;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%) rotate(45deg);
}
.js-mdl-close::after{
  transform: translate(-50%,-50%) rotate(-45deg);
}

/*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: min(900px,100%);
  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;
}
/*
.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: min(30px,5vw);
}
.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(45px,15%);
  aspect-ratio:1/0.7009;
  background: url( "../../image/lesfreres/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(260px,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: 'Libre Baskerville', sans-serif;
  font-size: 1.125em;
}