.button-container {
  grid-column: 1/-1;
  display: flex;
  justify-content: space-around;
  width: 100%;
  margin: 0;
}

.button-jump {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 98%;
  height: 42px;
  margin: 5px auto 15px;
  background: linear-gradient(to bottom, #FF1E00, #FF7400);
  border-radius: 8px;
  box-shadow:0 5px 0 #BF1600;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  text-decoration: none;
}
  .button-jump--twin {
    width: 70%;
  }
.button-detail {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25%;
  height: 42px;
  margin: 5px auto 15px;
  background: #999;
  border-radius: 8px;
  box-shadow:0 5px 0 rgba(81,81,81,1);
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .button-jump {
    font-size: 2.0rem;
  }
}

.category-list {
  width: 100%;
  margin-top: 8px;
}
  .category-list__title {
    width: 100%;
    padding: 5px 0 5px 10px;
    background: #2774cc;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    color: #fff;
    font-weight: bold;
  }
  .category-list__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    margin: 0 auto 8px;
    padding: 3px 0 0;
    border: solid 1px #2774cc;
  }
    .category-list__list a {
      width: 95%;
      max-width: 48%;
    }
      .category-list__list img {
        width: 100%;
        object-fit: contain;
      }

@media screen and (min-width: 768px) {
  .category-list {
    border-width: 2px;
    border-radius: 8px;
  }
    .category-list__list a {
      width: 32%;
      min-width: 230px;
    }
}

.article-list {
  width: 100%;
  margin: 5px 0;
}
  .article-list_head {
    width: 100%;
    padding: 5px 0;
    background: #2774CC;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    text-align: center;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
  }
  .article-list_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 100%;
    border: solid 1px #2774CC;
  }
    .article-list_list_item {
      display: block;
      width: 100%;
      border: dotted 1px #aaa;
      text-decoration: none;
    }
      .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 #2774CC;
}
  .bottom-content-nobdr {
    border: none;
  }
  .bottom-content-title{
    width: 100%;
    margin-top: 10px;
    margin-bottom: 5px;
    padding: 6px 12px; 
    background: #2774CC;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
  } 
  .bottom-content-block {
    width: 95%;
  }
    .bottom-content-block-head {
      padding: 5px;
      border-bottom: dotted 2px #2774CC;
      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: #2774CC;
  }

.recommend {
  width: 100%;
  font-size: 14px;
}
  .recommend__title {
    width: 100%;
    padding: 5px 0 5px 10px;
    background: #2774cc;
    color: #fff;
    font-size: 1.6rem;
    font-weight: bold;
  }
  .recommend__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
    width: 100%;
  }
    .recommend__item {
      width: 32%;
      min-height: 350px;
      margin: 8px 0;
      text-align: center;
      border: solid 2px #2774cc; 
    }
      @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: #2774CC;
        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: #2774CC;
      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 #50b432;
  border-radius: 20px;
  color: #50b432;
  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: #50b432;
    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 #666;
      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);
    }


@media screen and (min-width: 765px) {
  .bottom-content-block {
    width: 29%;
  }
  .bottom-content-arrow {
    border-top-color: transparent;
    border-left-color: #2774CC;
    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%;
  }
}

.typelist_table {
  width: 95%;
  margin-top: 8px;
}
  .typelist_table th {
    width: 20%;
    background: #d6dce5;
    border: solid 1px #555;
    color: #111;
  }
  .typelist_table td {
    width: 20%;
    padding: 3px;
    border: solid 1px #555;
  }
  .typelist_table img {
    height: 66%;
    object-fit: contain;
  }
@media screen and (max-width: 765px) {
  .typelist_table th {
    font-size: 14px;
  }
  .typelist_table_w {
    font-size: 12px !important;
  }
}

.ranking-pop {
  width: 100%;
  margin-top: 8px;
  background: #f85931;
  border: solid 2px #f85931;
  border-radius: 8px;
}
  .ranking-pop__head {
    padding: 3px 0;
    text-align: center;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
  }
  .ranking-pop__content {
    width: 100%;
    padding: 5px 0;
    background: #fff;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
  }
    .ranking-pop__button {
      display: flex;
      align-items: center;
      width: 85%;
      margin: 0 auto;
    }
      .ranking-pop__button>img {
        width: 100%;
        object-fit: contain;
      }
@media screen and (min-width: 765px) {
  .ranking-pop__head {
    font-size: 18px;
  }
}

.compare-table__title {
  width: 100%;
  margin: 8px 0 5px;
  padding: 0.3em 0.5em;
  background-color: #19A78E;
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
}
.compare-table__wrapper {
  width: 100%;
  overflow-x: auto;
  border: solid 1px #aaa;
  font-size: 62.5%; /* def 1rem = 10px */ 
}
.compare-table {
  border-spacing: 0;
  width: max-content;
  font-size: 1.2em;
}

  .compare-table__th,
  .compare-table__td {
    padding: 0.6em 0.2em;
    border: solid 1px #eee;
    border-top: none;
  }
  .compare-table__th--bottom,
  .compare-table__td--bottom {
    border-bottom: none;
  }
  .compare-table__th {
    position: sticky;
    left: 0;
    width: 120px;
    max-width: 20vw;
    background: #2774CC;
    color: #fff;
    border-left: none;
  }
  .compare-table__td {
    width: 180px;
    max-width: 40vw;
    background: #fff;
    text-align: center;
  }
    .compare-table__td--star>img {
      display: inline-block !important;
    }
    .compare-table__img {
      display: block;
      max-width: 100%;
      height: 100px;
      object-fit: contain;
      margin: 8px auto;
    }
    .compare-table__button {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 90%;
      margin: 0 auto;
      padding: 0.2em 0;
      background: #FFCD1F;
      border-radius: 5px;
      color: #111;
      font-weight: bold;
      text-decoration: none;
    }
@media screen and (min-width: 768px) {
  .compare-table {
    font-size: 1.4em;
  }
  .compare-table__title {
    font-size: 20px;
  }
}