/* サイドバー */
#wrapper {
  width: 100%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  }
  /* 左カラム */
  .left-column {
    width: 17%;
    margin-right: 1em;
  }
  /* 右カラム */
  .right-column {
    width: 58%;
  }

  /* 検索ボックス */
  .search_container{
    margin: 1em;
    box-sizing: border-box;
    position: relative;
    border: 2px solid #225439;
    padding: 0px 10px;
    height: 2.3em;
    width: 90%;
    overflow: hidden;
  }
  .search_container input[type="text"]{
    border: none;
    height: 2em;
  }
  .search_container input[type="text"]:focus {
    outline: 0;
  }
  .search_container input[type="submit"]{
    cursor: pointer;
    font-family: FontAwesome;
    font-size: 1.3em;
    border: none;
    background: none;
    color: #333;
    position: absolute;
    width: 2.5em;
    height: 2em;
    right: 0;
    top: -5px;
    outline : none;
  }
/* カテゴリーリスト */
* {margin: 0; padding: 0;}

.header-style{
  background-color: #225439;
  padding: 10px;
  color: #FFF;
}

.sidebar-list {
  margin: 10px;
}
 
.sidebar-list ul {
  list-style-type: none;
  width: auto;
}
 
.sidebar-list h3 {
  font-weight: bold;
  margin: 6px;
  color: #225439;
}
 
.sidebar-list li img {
  float: left;
  margin: 8px;
  width: 100px;
  height: 100px;
  object-fit: cover;
}
 
.sidebar-list li p{
    font-size: 13px;
}
 
.sidebar-list li {
  overflow: auto;
}
 
.sidebar-list li:hover {
  background: #eee;
  cursor: pointer;
}

.p-sub-category {
    margin: 30px 10px;
    padding: 0;
    list-style-type: none;
  }
  
  .p-sub-category::after {
    display: block;
    clear: both;
    content: '';
  }
  .txt--not-applicable {
    font-size: 1em;
    margin: 3em 0 4em;
    text-align: center;
    color: #999;
  }
  .p-sub-category__item {
    float: left;
    box-sizing: border-box;
    width: 50%;
    padding: 10px 5px;
  }
  
  .p-sub-category__image {
    display: block;
    margin-bottom: 10px;
  }
  
  .p-sub-category__link {
    display: block;
    transition: opacity .2s;
    text-decoration: none;
    color: #333;
  }
  
  .p-sub-category__link:hover {
    opacity: .66;
  }
  
  .p-sub-category__link:active {
    opacity: 1;
  }
  
  .p-sub-category__name {
    line-height: 1.3;
    position: relative;
    display: block;
    padding-left: .8em;
  }
  
  .p-sub-category__name::before {
    position: absolute;
    top: 0;
    left: 0;
    content: '-';
  }
  
  @media screen and (min-width: 600px) {
    .p-sub-category {
      margin-right: 0;
      margin-left: 0;
    }
  
    .p-sub-category__item {
      width: 25%;
      padding: 15px 10px;
    }
  
    .p-sub-category__item:nth-child(4n + 1) {
      clear: both;
    }
  }
  
  @media screen and (max-width: 599px) {
    .p-sub-category__item:nth-child(2n + 1) {
      clear: both;
    }
  }
  
  @media screen and (max-width: 768px){
/* 左カラム */
.left-column {
  display: none;
}
/* 右カラム */
.right-column {
  width: 95%;
}

  }