
/* ==========================
  モーダル（ポップアップ）
========================== */

.js_modalBtnCont:hover,
.js_modalBtnCont:focus {
  opacity: 0.75;
}

.js_modalWrap {
  opacity: 0;
  z-index: -1;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
    inset: 0;
}
.js_modalWrap.active {
  animation: modalOpen 0.5s ease forwards;
}
.js_modalWrap.active2 {
  animation: modalClose 0.5s ease forwards;
}
.js_modalBG {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.15);
/*
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
*/
}

.js_modalContInner {
  position: absolute;
  top: 0%;
  left: 0%;
	width: 100%;
	height: 100%;
	display: flex;
  justify-content: center;
align-items: center;
flex-wrap: wrap;
/*
	overflow-y: scroll;
	padding: 100px 0px;
*/
	/* IE, Edge 対応 */
 -ms-overflow-style: none;
 /* Firefox 対応 */
 scrollbar-width: none;
}

/* Chrome, Safari 対応 */
.js_modalContInner::-webkit-scrollbar {
 display:none;
}

.js_modalContWrap__wrap {
	position: relative;
    width: 60vw;
}

.contents04-modalwrap .js_modalContWrap__wrap {
	width: 72vw;
}

.contents05-modalwrap .js_modalContWrap__wrap {
	width: 52vw;
}

.js_modalContWrap {
  width: 100%;
	position: relative;
}

.js_modalCont {
  width: 100%;
	height: 85vh;
	background-color: #fff;
	overflow-y: auto;
		border-style : solid;
border-width : 4px;
	scrollbar-color: rgba(228,228,228,1) rgba(255,255,255,0);
    border-radius: 1.5vw;
    overflow: hidden;
}

.js_modalCont > div {
    height: 100%;
	overflow-y: auto;
	scrollbar-color: rgba(228,228,228,1) rgba(255,255,255,0);
    padding: 4.4vw;
}

.modal-jobpoint01 .js_modalCont > div, .modal-jobpoint02 .js_modalCont > div {
    padding-top: 6.2vw;
}

.modal-schedule01 .js_modalCont, .modal-schedule02 .js_modalCont {
	border-color : #C4D3E6;
}

.modal-schedule01 .js_modalCont > div, .modal-schedule02 .js_modalCont > div {
    padding: 0px;
}

.modal-jobpoint01 .js_modalCont, .modal-jobpoint02 .js_modalCont {
	border-color : #FFF;
}

.modal-jobpoint01 .js_modalCont {
    background-color: #C4D3E6;
}

.modal-jobpoint02 .js_modalCont {
    background-color: #D4E1E8;
}

.contents04-modalwrap .js_modalCont {
	border-color : #FFE791;
}

.contents05-modalwrap .js_modalCont {
	border-color : #EDE0D6;
    height: 26vw;
}

.contents07-modalwrap .js_modalCont {
	border-color : #C3CCD3;
}


.js_modalCont > div::-webkit-scrollbar {
    width: 10px;
	height: 6px;
	border-radius: 30px;
}

.js_modalCont > div::-webkit-scrollbar-track-piece {
    background-color: rgba(255,255,255,0);
	border-radius: 30px;
}

.js_modalCont > div::-webkit-scrollbar-thumb {
   border-radius: 30px;
	background-color: rgba(228,228,228,1);
}


.js_modalClose {
  display: block;
  position: absolute;
  top: 0px;
  right: 0px;
  width: 5.1vw;
  height: 5.1vw;
  overflow: hidden;
  cursor: pointer;
  z-index: 1001;
	margin-right: -2.2vw;
	margin-top: -2.2vw;
}
@keyframes modalOpen {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    z-index: 1000;
  }
}
@keyframes modalClose {
  0% {
    opacity: 1;
    z-index: 1000;
  }
  100% {
    opacity: 0;
  }
}

