.button-jump {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 85%;
  height: 42px;
  margin: 15px auto;
  background: #FFCD1F;
  border-radius: 8px;
  box-shadow:0 5px 0 #C98600;
  color: #222;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
}
.button-detail {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  height: 42px;
  margin: 15px auto;
  background: #999;
  border-radius: 8px;
  box-shadow:0 5px 0 rgba(81,81,81,1);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
}

.category-list {
  width: 100%;
  margin-top: 8px;
}
  .category-list_head {
    width: 100%;
    padding: 5px 10px;
    background: #BD95B8;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
  }
    .category-list_head.list-full {
      width: 100%;
      margin-top: 10px;
      margin-bottom: 5px;
      padding: 6px 12px;
      background: #BD95B8;
      border-radius: 0;
      color: #fff;
      font-size: 24px;
      font-weight: bold;
    }
    .category-list_head.list-sp {
      text-align: center;
      background: #BD95B8;
    } 
  .category-list_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    padding: 3px 0 0;
    border: solid 1px #BD95B8;
  }
    .category-list_sub {
      display: block;
      max-width: 100%;
      max-height: 40px;
      margin: 5px 0; 
    }
    .category-list_list.list-full {
      justify-content: start;
      border: none;
    }
    .category-list_list.list-sp {
      border-color: #BD95B8;
    }
    .category-list_list a {
      width: 95%;
      max-width: 45vw;
    }
    .category-list_list.list-full a {
      width: 48%;
      max-width: 180px;
      margin-left: 1%;
    }
      .category-list_list img {
        width: 100%;
        object-fit: contain;
      }

    .category-list_item {
      display: flex;
      width: 90%;
      height: 50px;
      margin: 5px auto;
      background: #BD95B8;
      border-radius: 8px;
      color: #fff;
    }
@media screen and (max-width: 765px) {
  .category-list {
    border-width: 2px;
    border-radius: 8px;
  }
    .category-list_head {
      display: flex;
      align-items: center;
      height: 32px;
      padding: 0 10px;
      border-top-left-radius: 8px;
      border-top-right-radius: 8px;
      font-size: 16px;
    }
    .category-list_list a {
      width: 32%;
    }
}
.article-list {
  width: 100%;
  margin: 5px 0;
}
  .article-list_head {
    width: 100%;
    padding: 5px 10px;
    background: #BD95B8;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
  }
  .article-list_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
    border: solid 2px #BD95B8;
  }
    .article-list_list_item {
      display: block;
      width: 50%;
      padding: 5px;
    }
      .article-list_list_item_upper {
        display: flex;
        align-items: center;
        height: 100px;
      }
      @media screen and (min-width: 768px) {
        .article-list_list_item_upper {
          height: 120px;
        }
      }
        .article-list_list_item_upper_img {
          display: block;
          width: 100%;
          max-height: 100%;
          margin: auto;
        }
      .article-list_list_item_title {
        overflow: hidden;
        height: 3em;
      }
        .article-list_list_item_title span {
          display: -webkit-box;
          -webkit-box-orient: vertical;
          -webkit-line-clamp: 2;
        }
      .article-list_list_item_desc {
        overflow: hidden;
        height: 4.5em;
        font-size: 14px;
        color: #000;
      }
        .article-list_list_item_desc span {
          display: -webkit-box;
          -webkit-box-orient: vertical;
          -webkit-line-clamp: 3;
        }

/* bottom-content */
.bottom-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  width: 100%;
  margin: 5px 0;
  border: solid 2px #BD95B8;
}
  .bottom-content-nobdr {
    border: none;
  }
  .bottom-content-title{
    width: 100%;
    margin-top: 10px;
    margin-bottom: 5px;
    padding: 6px 12px; 
    background: #BD95B8;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
  } 
  .bottom-content-block {
    width: 95%;
  }
    .bottom-content-block-head {
      padding: 5px;
      border-bottom: dotted 2px #BD95B8;
      font-size: 16px;
      font-weight: bold;
    }
    .bottom-content-block-text {
      padding: 3px;
      font-size: 14px;
    }
  .bottom-content-arrow {
    margin: auto 0;
    border: solid 20px transparent;
    border-top-color: #BD95B8;
  }

.recommend {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: flex-start;
  width: 100%;
  font-size: 14px;
}
  .recommend__title {
    width: 100%;
    padding: 5px 10px;
    background: #BD95B8;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
  }
  .recommend__item {
    width: 32%;
    min-height: 350px;
    margin: 8px 0;
    text-align: center;
    border: solid 2px #BD95B8;
  }
    @media screen and (max-width: 767px) {
      .recommend__item {
        width: 95%;
      }
    }
    .recommend__frame {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      width: 100%;
      height: 80px;
    }
      .recommend__logo {
        width: 85%;
        height: 130px;
        object-fit: contain;
      }
    .recommend__head {
      padding: 5px;
      color: #BD95B8;
      font-weight: bold;
    }
    .recommend__name {
      font-weight: bold;
    }
    .recommend__text {
      padding: 10px;
      text-align: left;
    }


  .bottom_article-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
    width: 100%;
  }
    .bottom_article-list_head {
      width: 100%;
      padding: 8px 5px;
      background: #BD95B8;
      color: #fff;
      font-size: 20px;
      font-weight: bold;
    }
    .bottom_article-list_item {
      width: 48%;
      margin-top: 8px;
    }
      .bottom_article-list_item img {
        width: 100%;
        height: 100%;
        object-fit: fill;
        border: solid 1px #999;
      }

.check-nav {
  width: 100%;
  min-width: 250px;
  margin: 15px auto;
  padding: 8px;
  border: solid 2px #BD95B8;
  border-radius: 20px;
  color: #BD95B8;
  text-align: center;
  font-weight: bold;
}
  .check-nav_button {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 95%;
    height: 60px;
    margin: 5px auto;
    padding-left: 1.5em;
    background: #BD95B8;
    border-radius: 30px;
    box-shadow: 2px 2px 4px #888;
    color: #fff;
    text-decoration: none;
  }
    .check-nav_button::before {
      content: "簡単";
      position: absolute;
      top: -30px;
      left: -10px;
      display: flex;
      justify-content: center;
      align-items: center;
      width: 50px;
      height: 50px;
      background: #ffbb00;
      border-radius: 50%;
      box-shadow: 2px 2px 4px #555;
      transform: rotate(-9deg);
    }
    .check-nav_button::after {
      content: "";
      position: absolute;
      top: 4px;
      left: 23px;
      border: solid 9px transparent;
      border-top: solid 20px #ffbb00;
      transform: rotate(-30deg);
    }

.compare-table__wrapper {
  overflow-x: auto;
  max-width: 98%;
  margin: 0 auto;
  border: solid 2px #BD95B8;
}

.compare-table {
  width: max-content;
  border: solid 1px #BD95B8;
}
  .compare-table th,
  .compare-table td {
    border: solid 1px #BD95B8;
  }
  .compare-table__item {
    width: 30vw;
  }
    .compare-table__img {
      display: block;
      max-width: 90%;
      max-height: 150px;
      object-fit: contain;
      margin: 0 auto;
    }
    .compare-table__name {
      text-align: center;
      font-weight: bold;
    }
  .compare-table__head {
    background: #FFE699;
    color: #111;
  }
  .compare-table__data {
    max-width: 30vw;
    padding: 5px;
  }
    .compare-table__data>.compare-img {
      width: 30%;
    }
  .compare-table__text {
    max-width: 30vw;
    text-align: center;
  }
  .compare-table__button-jump {
    height: 36px;
    margin: 10px auto;
    font-size: 16px;
  }
  @media screen and (min-width: 765px) {
    .compare-table__item {
      width: 220px;
    }
    .compare-table__data {
      padding: 8px;
    }
      .compare-table__data>.compare-img {
        width: 15%;
      }
  }



@media screen and (min-width: 765px) {
  .bottom-content-block {
    width: 29%;
  }
  .bottom-content-arrow {
    border-top-color: transparent;
    border-left-color: #BD95B8;
    border-right: none;
  }
  .recommend-list-item {
    width: 31%;
  }
  .recommend-list {
    flex-wrap: nowrap;
  }
  .recommend-list-item {
    width: 33%;
  }
  .bottom-content-article-list-item {
    width: 46%;
  }
}
