/*---------------∞
|  ソートボックス  |
∞----------------*/
/* ∞∞ postcss ∞∞ */
* {
    position: relative;
    margin: 0;
    padding: 0;
    border-color: inherit;
  }
  
form .sortbox {
  height: 100%;
  display: flex;
  z-index: 10;
}

.sortbox .select {
  width: 190px;
  height: 30px;
  text-align: left;
  cursor: pointer;
  background-color: white;
  box-shadow: 0 2px 0 white;
  border-radius: 2px;
}

.select_expand {
    width: 0;
    height: 30px;
    position: absolute;
    top: 1%;
    right: 0;
  }

.select_expand::after {
      content: '\003E';
      position: absolute;
      top: 50%;
      right: 0;
      transform: translate(-50%, -50%) rotate(90deg) scaleY(1.75);
      color: #000000;
      font-size: 20px;
      pointer-events: none;
      z-index: 2;
      transition: all 250ms cubic-bezier(.4,.25,.3,1);
      opacity: .6;
    }

.select_expand:hover::after {opacity: 1}

.select_expand:checked::after {transform: translate(-50%, -50%) rotate(90deg) scaleX(-1) scaleY(1.75);}

.select_expandLabel {
    display: block;
    width: 100%;
    height: 30px;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
  }

.select_close {display: none}

.select_closeLabel {
	display: none;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
  }

.select_items {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border: 2px solid #d12f9b;
    border-radius: 2px;
    padding-top: 30px;
  }

.select_input {display: none}

.select_label {
    transition: all 250ms cubic-bezier(.4,.25,.3,1);
    display: block;
    height: 0;
    font-size: 1.2rem;
    line-height: 30px;
    overflow: hidden;
    color: #3e3e3e;
    background-color: #fff;
    cursor: pointer;
    padding-left: 20px;
  }

.select_label-placeholder {
      height: 30px;
      vertical-align: middle;
      position: absolute;
      top: 2px;
      left: 0;
      opacity: .6;
      background-color: transparent;
    }

.select_expand:checked + .select_closeLabel {
      display: block;
    }

.select_expand:checked + .select_closeLabel + .select_options .select_label {
          height: 30px;
          
        }

.select_expand:checked + .select_closeLabel + .select_options .select_label:hover {background-color: #ffffff}

.select_expand:checked + .select_closeLabel + .select_options + .select_expandLabel {display: none}

.select_input:checked + .select_label {
    height: 30px;
    margin-top: -30px;

  }
  
/*---------------∞
|   モーダルCSS   |
∞----------------*/
/* ∞∞ START ∞∞ */
.modalArea {
  display: none;
  position: fixed;
  z-index: 10; /*サイトによってここの数値は調整 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modalBg {
  width: 100%;
  height: 100%;
}

.modalWrapper {
  position: absolute;
  top: 80%;
  left: 50%;
  transform:translate(-50%,-50%);
  width: 100%;
  height: 500px;
  max-width: 500px;
  padding: 10px 30px;
  background-color: #ffffff;
  border-top: 2px solid #ff22ae;
  border-radius: 5px;
}

.closeModal {
  position: absolute;
  top: -15px;
  right: 10px;
  cursor: pointer;
  font-size: 40px;
}


/* 以下ボタンスタイル */
button {
	text-align: center
  display: flex;
  position:fixed;
  right: 0%;
  bottom: 0%;
  width: 100%;
  padding: 10px 10px 10px 10px;
  border-radius: 0px;
  margin: 1px 0px 0px 0px;
  background-color: #fff;
  border-top: 1px solid #ff22ae;
  cursor: pointer;
  font-weight: 900;
  z-index: 5;
  
  
}
#openModal{
	text-align: center;
}

.modalContents h1{
	font-size: 20px;
	border-bottom: 1px solid #e7e7e7;
	
}
#select-pref{
	font-size: 14px;
	padding: 5px;
		margin: 0px 0px 5px 0px;

}
#select-city{
		font-size: 14px;
	padding: 5px;
	margin: 0px 0px 5px 0px;

}
.priceRange select{
	border: 1px solid #e8e8e8;
	border-radius: 10px;
	padding: 5px 5px 5px 5px;
	font-size: 18px;
	
}
.key {
	font-size: 18px;
		border: 1px solid #e8e8e8;
	border-radius: 10px;
	width: 80%

}
.enter{
	text-align: center;
	margin: 16px 0px 0px 0px;
	font-size: 18px;
	border: 1px solid #e8e8e8;
	border-radius: 10px;
	width: 80%

}
.change{
	font-size: 18px;
	border:1px solid black;
	background: #ffffff;
	width: 80%;
	border-radius: 10px;
	padding: 1px 15px 1px 15px;
	
}
/* ∞∞ end ∞∞ */
/*---------------∞
|   pager CSS    |
∞----------------*/
/* ∞∞ START ∞∞ */
.pager{
	clear: both;
}
.pager  ul.pagination {
  text-align: center;
  margin: 0;
  padding: 0;
}

.pager .pagination li {
  display: inline;
  margin: 0 2px;
  padding: 0;
  display: inline-block;
  background:#bbbbbb;
  border-radius: 10px;
  width: 50px;
  height: 50px;
  text-align: center;
  position: relative;
}

.pager .pagination li a{
  vertical-align: middle;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display:table;
  color: #fff;
  text-decoration: none;
}

.pager .pagination li a span{
  display:table-cell;
  vertical-align:middle;
}

.pager .pagination li a:hover,
.pager .pagination li a.active{
  color: #000;
  background: #e1e1e1;
    border-radius: 10px;

}

@media only screen and (max-width: 767px){
  .pager .pagination li{
    display: none;
  }

  .pager .pagination li.pre,
  .pager .pagination li.next{
    display: inline-block;
    width: 40%;
    height: 50px;
    text-align: center;
  }

  .pager .pagination li.pre a,
  .pager .pagination li.next a{
    width: 100%;
    text-align: center;
  }

  .pager .pagination li.pre span::after{
    content: "　前へ";
  }

  .pager .pagination li.next span::before{
    content: "次へ　";
  }}
 /* ∞∞ end ∞∞ */