/* ==========================
  モーダル（ポップアップ）
========================== */
.js_modalBtnWrap {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}
.js_modalBtnCont {
  display: block;
}
.js_modalBtnCont {
	transition: .3s;
}
.js_modalBtnCont:hover {
	transform: scale(1.05);
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}


.js_modalWrap {
  opacity: 0;
  z-index: -1;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.js_modalWrap.active {
  animation: modalOpen 0.3s ease forwards;
  display: block;
}
.js_modalWrap.active2 {
  animation: modalClose 0.3s ease forwards;
  display: none;
}
.js_modalBG {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  
}
.js_modalContInner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 80%;
  max-width: 100%;
  background-color: #fff;
  padding: 40px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  border-radius: 20px;
}

.js_modalCont {
/*  max-height: 520px;*/
}
.js_modalCont > * + * {
  margin-top: 10px;
}


.js_modalContInner > .js_modalClose + * {
  margin-top: 0;
}
.js_modalClose {
  display: block;
  position: absolute;
  top: -35.5px;
  right: 0;
  width: 20px;
  height: 20px;
  overflow: hidden;
  cursor: pointer;
  z-index: 1001;
}
.js_modalClose::before,
.js_modalClose::after {
  content: "";
  background-color: #FFF;
  position: absolute;
  top: -5px;
  right: 10px;
  width: 2px;
  height: 30px;
}
.js_modalClose::before {
  transform: rotate(45deg);
}
.js_modalClose::after {
  transform: rotate(-45deg);
}
@keyframes modalOpen {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    z-index: 1000;
  }
}
@keyframes modalClose {
  0% {
    opacity: 1;
    z-index: 1000;
  }
  100% {
    opacity: 0;
  }
}





/* ==========================
  コンテンツの中身
========================== */
.js_modalCont{
	display: flex;
}
.js_modalCont .window_l{
	width: 55%;
	max-width: 800px;
}
.js_modalCont .window_site{
	max-height: 530px;
	overflow-y: scroll;
	box-sizing: border-box;
}
.js_modalCont .window_site img{
}
.js_modalCont .window_r{
	width: 45%;
	box-sizing: border-box;
	padding-left: 30px;
}
.js_modalCont .window_r dl{
	margin-bottom: 25px;
}
.js_modalCont .window_r dt{
	font-weight: 400;
}
.js_modalCont .window_r dd{
	font-size: 90%;
}
.js_modalCont .window_r dd.color li{
	display: inline-block;
	color: #FFF;
	padding: 2px 20px;
	line-height: 1;
	font-size: 70%;
}

.js_modalCont .dlbutton{
	background-color: #FDD23C;
    border-radius: 50px;
	text-align: center;
	background-image: url("../i/template/ico_dl.svg");
	background-position:right+4px center;
	background-repeat: no-repeat;
}
.js_modalCont .dlbutton a{
	display: block;
	line-height: 1;
	padding: 15px 50px;
	font-weight:700;
	text-decoration: none;
}

.js_modalCont .window_r p{
	font-size: 80%;
}

@media screen and (max-width: 750px){
.js_modalContInner {
  width: 80%;
  max-width: 80%;
  background-color: #fff;
  padding: 5%;
}

.js_modalCont{
	display: block;
	/*
	overflow-y: scroll;
	box-sizing: border-box;
	*/
}
.js_modalCont .window_l{
	width: 100%;
}
.js_modalCont .window_site{
	max-height: 300px;
}
.js_modalCont .window_site img{
}
.js_modalCont .window_r{
	width: 100%;
	padding-left: 0;
}
.js_modalCont .window_r dl{
	display: none;
}

.js_modalCont .dlbutton{
	margin-top: 20px;
	font-size: 3vw;
}
}




