/* モーダルCSS */
.modalArea {
  display: none;
  position: fixed;
  z-index: 80; /*サイトによってここの数値は調整 */
  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: 95%;
  max-width: 500px;
  padding: 0;
  overflow: auto;
  background-color: #fff;
}

.closeModal {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  cursor: pointer;
}


/* 以下ボタンスタイル */
button {
  padding: 10px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  cursor: pointer;
	font-size: 14px;
	font-weight: bold;
	color: #000;
}
button span{
  position: relative;
  display: inline-block;
	width: 260px;
}
button span::before,button span::after{
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 27px;
  width: 6px;
  height: 6px;
  margin: auto;
  border-top: 1px solid #aaa;
  border-right: 1px solid #bbb;
  transform: rotate(45deg);
  box-sizing: border-box;
}


#openModal {
	margin: 10px 0 40px 0;
}







/* ----------------------------------
ラインナップテスト
---------------------------------- */

#size_list{
	margin: 0 0 50px 0;
}
#size_list h2{
	border-top: none;
	padding: 0 0 15px 0
}
#size_list .bed_size,
#size_list .matte_size{
	display: flex;
	flex-wrap: wrap;
	margin: 0 0 40px 0;
	gap: 15px;
}
#size_list .bed_size li,
#size_list .matte_size li{
	width: calc((100% - 45px) / 4);
}
#size_list .bed_size li a,
#size_list .matte_size li a{
	display: block;
	padding: 20px 10px;
	text-align: center;
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 8px;
	height: calc(100% - 40px);
}
#size_list .bed_size li a.current,
#size_list .matte_size li a.current{
	/*background-color: #f2f0ed;*/
	background-color: #e9e1d5;
}





@media screen and (max-width:768px){
	
	#size_list .bed_size,
	#size_list .matte_size{
		gap: 10px;
	}
	#size_list .bed_size li,
	#size_list .matte_size li{
		width: calc((100% - 20px) / 3);
	}


}






