/* カテゴリーボタン */
 .btt1{margin: 10px; float: left;}
 .btt1 a {
  color: #333;
  font-size: 16px;
  font-weight: bold;
  background: transparent;
  width: 100%;
  height: 40px;
  text-align: left;
  line-height: 40px;
  border: 1px solid #333;
  position: relative;
  z-index: 1;
  display: block;
  overflow: hidden;
  transition: .3s;
  padding: 0px 20px 0px 20px;
}
.btt1 a::before {
  content: "";
  width: 120%;
  height: 200%;
  position: absolute;
  top: -50%;
  right: 0;
  z-index: -1;
  background: #e4e4e4;
  border-radius: 0 100% 100% 0;
  transform: translateX(-100%);
  transition: transform ease .3s;
}
.btt1 a:hover {
  color: #000;
}
.btt1 a:hover::before {
  transform: translateX(10%);
}
/********* カテ詳細枠******/
.wa_s1{
    font-size: 0.9em;
    border: solid 1px #cccccc;
    border-top-left-radius: 30px 30px;
    border-top-right-radius: 30px 30px;
    margin: 0px 0px 10px 0px;
}
.wa_s2{
    font-size: 0.9em;
    margin-left:40px;
    margin-bottom: 10px;
    padding-left:10px;
    border-left: solid 1px #333;
}