.input_wrap{
  display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    width: 100%;
}
input:not([type="submit"]), select {
    height: 36px;
}
input:not([type="checkbox"]), select, textarea {
    font: 400 12px/1.5em 'noto sans japanese';
    padding: 4px 8px;
    background: #f2f3f9;
    border: 1px solid transparent;
    border-radius: 3px;
    -webkit-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 100%;
}
.main {
  padding: 10px;
  position: relative;
  width: 100%;
}
[class*="btnclas"] {
    color: #fff;
    font: 400 12px/1em 'noto sans japanese';
    display: inline-block;
    padding: .4em 1em;
    background: #000;
    border: 1px solid #000;
    border-radius: 3px;
    cursor: pointer;
    -webkit-transition: all 0.1s ease;
    transition: all 0.1s ease;
    user-select: none;
}
h2 {
    margin: 10px 0;
    font-size: 30px;
    color: black;
    font-weight: bold;}

/* ! ページング ================================================== */
.paging .count{
  text-align: right;
}
.paging ul {
  display: -webkit-flex; display: flex;
  -webkit-flex-wrap: wrap; flex-wrap: wrap;
  -webkit-align-items: center; align-items: center;
  -webkit-justify-content: center; justify-content: center;
}
.paging li {
  padding: 3px;
}
.paging a {
  text-align: center;
  font: 300 12px/1em 'DIN Alternate';
  display: block;
  border: 1px solid #222;
  border-radius: 2px;
  padding: 6px 10px;
  display: -webkit-flex; display: flex;
  -webkit-align-items: center; align-items: center;
  -webkit-justify-content: center; justify-content: center;
  background: #000;
  color: #FFF;
}
.paging a:hover{
  color: #fff;
  background: #222;
}
.paging .current a,
.paging .active a{
  color: #fff;
  background: #fa6600;
  pointer-events: none;
}
.paging .off a {
  pointer-events: none;
  color: #ddd;
  border-color: #ddd;
}

@media screen and (max-width: 480px){
  .paging a{
    font: 300 12px/1em 'DIN Alternate';
    padding: 3px 7px;
  }
}
