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

.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: modalOpen2 0.5s ease forwards;
}
.js_modalWrap.active2 {
  animation: modalClose2 0.5s ease forwards;
}
/*
.js_modalBG {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.15);

}
*/
.js_modalContInner {
  position: absolute;
  top: 0%;
  left: 0%;
	width: 100%;
	height: 100%;
	display: flex;
  justify-content: center;
align-items: center;
flex-wrap: wrap;

}
.js_modalContInner::-webkit-scrollbar {
 display:none;
}

.js_modalContWrap__wrap {
	position: relative;
    width: 88%;
}

.contents04-modalwrap .js_modalContWrap__wrap {
	width: 88%;
}

.contents05-modalwrap .js_modalContWrap__wrap {
	width: 88%;
}

.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: 5.25vw;
    overflow: hidden;
}

.js_modalCont > div {
    height: 100%;
	overflow-y: auto;
	scrollbar-color: rgba(228,228,228,1) rgba(255,255,255,0);
    
    padding: 7vw;
}
.modal-jobpoint01 .js_modalCont > div, .modal-jobpoint02 .js_modalCont > div {
     padding-top: 24.5vw;
}

.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;
}

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

.contents05-modalwrap .js_modalCont {
    height: 105vw;
}
.js_modalClose {
  display: block;
  position: absolute;
  top: 0px;
  right: 0px;
  width: 14vw;
  height: 14vw;
	margin-right: -6.3vw;
	margin-top: -6.3vw;
  overflow: hidden;
  cursor: pointer;
  z-index: 1001;
}

@keyframes modalOpen2 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    z-index: 1000;
  }
}
@keyframes modalClose2 {
  0% {
    opacity: 1;
    z-index: 1000;
  }
  100% {
    opacity: 0;
  }
}


