@charset "utf-8";
/* CSS Document */

.main{
	position: relative;
}

/* モーダルウィンドウのスタイル */
.modal {
  position:absolute;
  width:100%;
  height:100vh;
  top:0;
  left:0;
  display:none;
}
 
/* オーバーレイのスタイル */
.overLay {
  position:absolute;
  top:0;
  left:0;
  background:rgba(0,0,0,0.7);
  width:100%;
  height:9999vh;
  z-index:10;
}
 
/* モーダルウィンドウの中身のスタイル */
.modal .inner {
  position:absolute;
  z-index: 11;
  /*top: 340vh;*/
  left:50%;
  transform:translate(-50%,-50%);
  background-color: #FFF;
  width: 600px;
  height: 420px;
}

.modal .inner iframe{
	display: block;
	width: 560px;
	height: 315px;
	margin: 20px auto;
}

.modal .inner .t_close{
	font-size: 20px;
	font-weight: bold;
	margin-right: 20px;
	float: right;
}

.modal .inner .t_close a{
	color: #999;
}

.modal .inner h2{
	clear: both;
	border-bottom: #ccc dotted 2px;
	padding: 0 0 21px 16px;
	margin: 0 auto 20px;
	width: 780px;
}

.modal .content{
	width: 780px;
	margin: 0 auto 47px;
}

.modal .inner .inner_l{
	width: 350px;
	float: left;
}

.modal .inner .inner_r{
	width: 400px;
	float: right;
}

.modal .inner .inner_r ul{
	height: 480px;
}

.modal .inner .inner_r li{
	line-height: 42px;
	border-bottom: #ccc dotted 1px;
}

.modal .inner p{
	font-weight: bold;
}

.modal .inner .inner_r li.nam span{
	font-size: 1.4rem;
}

.modal .inner .inner_r li.s_price{
	font-weight: bold;
	color: #dd1c1c;
}

.modal .inner p a{
	display: block;
	padding: 10px 0;
}

.modal .inner p.favorite{
	float: left;
	width: 298px;
	height: 48px;
	text-align: center;
	border: #000 solid 1px;
	margin: 0 0 35px 115px;	
}

.modal .inner p.contact{
	float: right;
	width: 298px;
	height: 48px;
	text-align: center;
	border: #000 solid 1px;
	margin: 0 115px 35px 0;
}

.modal .inner p.close{
	clear: both;
	width: 300px;
	margin: 0 auto;
	text-align: center;
	background: #cf8f25;
}

.modal .inner p.close a{
	color: #FFF;
}

.modal .inner .repletion{
	font-size: 1.2rem;
	margin-top: 20px;
	font-weight: normal;
}