/* モーダルCSS */
.modalArea {
  display: none;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.modalBg {
  width: 100%;
  height: 100%;
  background-color: rgba(30,30,30,0.9);
}
.modalWrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform:translate(-50%,-50%);
  width: 70%;
  max-width: 600px;
  padding: 25px;
  background-color: #fff;
  color: #333;
}
.modalContents{
	/* border: 1px solid #ff0000; */
	padding: 20px;
}
.modalContents h3{
	font-family: 'Noto Sans JP';
	font-size: 18px;
	text-align: center;
	padding-bottom: 8px;
}
.modalContents p{
	font-family: 'Noto Sans JP';
	font-size: 16px;
}
.modalContents p span{
	color: #ff0000;
}
.modalContents img{
	width: 100%;
}
.closeModal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 50%;
  font-size: 16px;
  font-weight: bold;
  width: 40px;
  height: 40px;
}
.closeModal span{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.openModalWrap{
	background: linear-gradient(180deg, rgba(239,203,117,1) 0%, rgba(241,208,132,1) 30%, rgba(245,222,169,1) 60%, rgba(255,255,255,1) 100%);
	box-sizing: border-box;
	width: 186px;
}
.openModal {
	color: #cc0000;
	background: none;
	cursor: pointer;
	border: 2px solid #cc0000;
	box-sizing: border-box;
	height: 60px;
	margin: 5px;
	font-family: serif;
	font-weight: bold;
	transition: all 0.1s ease;
	padding: 0;
	width: 176px;
}
.openModal:hover{
	color: #d09121;
	border: 2px solid #d09121;
}
.openModalWrap_ods{
	background: linear-gradient(180deg, rgba(239,203,117,1) 0%, rgba(241,208,132,1) 30%, rgba(245,222,169,1) 60%, rgba(255,255,255,1) 100%);
	box-sizing: border-box;
	width: 171px;
	/* position: absolute;
	top: 138px;
	right: 35px; */
	/* display: inline-block; */
	display: block;
	/* margin-bottom: 10px; */
}
.openModal_ods {
	color: #cc0000;
	background: none;
	cursor: pointer;
	border: 1px solid #cc0000;
	box-sizing: border-box;
	height: 39px;
	margin: 3px;
	font-family: serif;
	font-weight: bold;
	transition: all 0.1s ease;
	padding: 0;
	width: 165px;
	line-height: 1.2;
}
.openModal_ods:hover{
	color: #d09121;
	border: 1px solid #d09121;
}
.openModal_price{
	border: none;
	background: none;
	color: #b56d17;
	padding: 0;
	text-decoration: underline;
	cursor: pointer;
}
.openModal_price:hover{
	color: #ffcb4f;
	text-decoration: none;
}

@media screen and (max-width:767px){
	.modalWrapper {
	  width: 95%;
	  padding: 0;
	}
	.modalContents{
		padding: 60px 15px 15px;
		border: none;
	}
	.modalContents p{
		padding-bottom: 10px;
	}
	.closeModal{
	  width: 30px;
	  height: 30px;
	}
	.openModalWrap{
		width: 95%;
		padding: 5px;
		margin: 0 auto 10px;
	}
	.openModal{
		width: 100%;
		height: auto;
		margin: 0;
		padding: 10px 0;
		font-size: 16px;
	}
}
