
/***** 商品件数・ソート *****/
.p-item-list-head {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    border-top: 1px solid #85CEE6;
  }
  @media screen and (max-width: 767px) {
    .p-item-list-head {
      padding: 20px 0;
    }
  }
  .p-item-list-num {
    font-size: 16px;
    color: #228099;
    text-align: center;
    margin-bottom: 10px;

  }
  @media screen and (max-width: 767px) {
    .p-item-list-num {
      font-size: 14px;
    }
  }
  /*p-item-sort　順序替えボタン*/
  .p-item-sort-list {
    display: flex;
    flex-wrap: wrap;
    color: #228099;
  }
  /*
  .p-item-sort-list__item {
    margin-left: 30px;
  
  }
  @media screen and (max-width: 767px) {
    .p-item-sort-list__item {
      margin-left: 25px;
    }
  }
  .p-item-sort-list__item:first-child {
    margin-left: 0;
  }*/
  
  /*ボタンの枠・色について*/
  button{
    color: inherit;
    font: inherit;
    margin: 0;
    overflow: visible;
    text-transform: none;
  }
  
  button, html input[type="button"] {
    -webkit-appearance: button;
    cursor: pointer;
  }
  
  input[type="reset"], input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
  }
  
  button[disabled], html input[disabled] {
    cursor: default;
  }
  
  button::-moz-focus-inner {
    border: 0;
    padding: 0;
  }
  
  .button {
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
    border: none;
    display: inline-block;
  }
  
  .button--blue {
    background: #228099;
    color: #fff;
  }
  
  .button--orange {
    background: #FF7B00;
    color: #fff;
  }
  
  .button--line {
    border: 1px solid #228099;
    color: #228099;
    margin: 2px;
  }
  
  .button--more {
    width: 50%;
    display: block;
    margin: 0 auto 20px;
    padding: 5px;
    color:#228099;
  }
  
  .button--sort {
    font-size: 71.42857%;
    padding: 5px 8px;
    width: 100px;
    margin: 5px;
  }
  
  .button--disabled {
    background: #228099;
    color: white;
  }