@charset "UTF-8";
/* モーダルCSS */
.modal_wrap{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 10px;
}
.modalArea {
	display: none;
	position: fixed;
	z-index: 1020; /*サイトによってここの数値は調整 */
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	}
  
  .modalBg {
	width: 100%;
	height: 100%;
	background-color: rgba(30,30,30,0.4);
  }
  
  .modalWrapper {
	position: absolute;
	top: 50%;
	left: 50%;
	transform:
	translate(-50%,-50%);
	width: 95%;
	max-width: 860px;
	background-color: #fff;
	padding: 0 0 40px;
	border-radius: 15px;
	overflow: hidden;
	border-bottom: 3px solid #234128;
	}

.closeModal {
	position: absolute;
	top: 2px;
	right: 0.7rem;
	cursor: pointer;
	font-size: 40px;
	font-weight: bold;
	color: #FFF;
}
	  
  
  
  /* 以下ボタンスタイル */
  #openModal_out,#openModal_in {
	padding: 10px;
	background-color: #fff;
	border: none;
	border-radius: 2px;
	cursor: pointer;
	width: 49%;
	color: #FFF;
	font-size: 18px;
	border-radius: 0;
	transition: 0.7s;
	}
	#openModal_out{
		background: #57A230;
	}
	#openModal_in{
		background: #B92C33;
	}
	#openModal_out:hover,#openModal_in:hover {
		opacity: 0.8;
	}
	#openModal_out span,#openModal_in span{
		display: block;
		text-align: center;
		margin: 0 0 5px;
	}

  #openModal_out,#openModal_in {
	/* position: absolute; */
	/* top: 50%;
	left: 50%;
	transform:translate(-50%,-50%); */
  }


  #modalArea_in h2{
    font-size: 32px;
    text-align: center;
    font-weight: bold;
    background: #22ac38;
    padding: 22px 0;
    color: #FFF;
  }
  .present_toptxt{
    text-align: center;
    margin-top: 9px;
  }
  .present_toptxt span{
    position:relative;
    font-size: 30px;
  }
  .present_toptxt span:after{
    content:'';
    position:absolute;
    left: -7px;
    bottom: 2px;
    width: 104%;
    height: 14px;
    background-color: #ffff02;
    z-index:2;
  }
  .present_toptxt span b{
    z-index: 3;
    position: relative;
    font-size: 30px;
    font-weight: 900;
  }


  .present_txt{
    text-align: center;
    font-weight: 900;
    font-size: 22px;
    margin-top: 20px;
    line-height: 1.5;
  }
  .present_txt span{
    background-color: #ff0202;
    display: inline-block;
    color: #FFF;
    padding: 0 3px;
    font-size: 1.1em;
  }
  
  .pdf_openBt{
    background: #EEDD00;
    display: inline-block;
    border-radius: 10px;
    color: #000;
    font-size: 21px;
    font-weight: bold;
    height: 70px;
    line-height: 70px;
    text-align: center;
    box-shadow: 2px 2px 3px #000;
    padding: 0 75px;
    margin: 21px 0 0 0;
}
.pdf_openBt:hover{
  color: #000;
  opacity: 0.8;
}
.present_br_sp{ display: none;}


.present_btmtxt{
  text-align: center;
  width: 90%;
  margin: 13px auto 0;
  /* border: 1px solid #a8a8a8; */
  font-weight: bold;
  background: #f1f1f1;
  padding: 9px 0;
  font-size: 16px;
}
@media (max-width: 768px) {

  #modalArea_in h2{
    font-size: 28px;
  }
  .present_toptxt span b {
    font-size: 28px;
  }

  .present_txt{
    font-size: 18px;
    margin-top: 20px;
  }

}


@media (max-width: 480px) {
	.modalWrapper {
	    padding: 0 0 30px;
	    overflow: inherit;
	}

  #modalArea_in h2{
    font-size: 18px;
    padding: 20px 0;
    border-radius: 15px 15px  0 0;
  }
  .present_toptxt span b {
    font-size: 20px;
    letter-spacing: -0.5px;
  }

  .present_txt{
    font-size: 16px;
    margin-top: 10px;
    padding: 0 5px;
  }

  .pdf_openBt{
    font-size: 18px;
    height: 60px;
    line-height: 60px;
    margin: 20px 0 0 0;
    width: 90%;
}

	.closeModal {
	top: -39px;
	right: 0.7rem;
	font-size: 31px;
}
.present_br_sp{ display: block;}

.present_btmtxt {
    padding: 5px 0;
    font-size: 14px;
}
}

@media (max-width: 320px) {
	.modalWrapper {
    zoom: 0.9;
  }


}