.button-container {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
  margin: 8px 0 12px;
}

.button-jump {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 85%;
  max-width: 500px;
  height: 42px;
  background: linear-gradient(to bottom, #FF1E00, #FF7400);
  border-radius: 8px;
  box-shadow:0 5px 0 #BF1600;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
}
  .button-jump--twin {
    width: 65%;
  }
.button-detail {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30%;
  height: 42px;
  background: #9CCC04;
  border-radius: 8px;
  box-shadow:0 5px 0 rgb(74, 99, 0);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
}

.category-list {
  width: 100%;
  margin-top: 8px;
}
  .category-list__title {
    width: 100%;
    padding: 0.3em 0.5em;
    background-color: #62B6CC;
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: bold;
  }
  .category-list__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
    .category-list__list a {
      width: 95%;
      margin: 3px auto 0;
    }
      .category-list__list img {
        display: block;
        width: 100%;
        object-fit: contain;
        object-position: center;
      }

@media screen and (min-width: 768px) {
  .category-list {
    border-width: 2px;
    border-radius: 8px;
  }
  .category-list__title {
    font-size: 2.0rem;
  }
    .category-list__list {
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
      .category-list__list a {
        max-width: 250px;
      }
}

.article-list {
  width: 100%;
}
  .article-list__item {
    position: relative;
    display: block;
    width: 100%;
    height: 200px;
    margin: 3px 0;
  }
    .article-list__img {
      z-index: 1;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top;
      border: solid 1px #aaa;
    }
    .article-list__title {
      position: absolute;
      z-index: 2;
      bottom: 1px;
      left: 1px;
      width: calc(100% - 2px);
      height: 3.2em;
      padding: 0.2em;
      background: #ffffffaa;
      font-size: 1.4rem;
    }

.article-block__title {
  width: 100%;
  margin: 5px 0;
  padding: 5px 10px;
  background: #62B6CC;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
}
.article-block {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 5px;
  width: 100%;
}
  .article-block__item {
    width: 100%;
  }
    .article-block__item>img {
      width: 100%;
      height: 100%;
      object-fit: fill;
      border: solid 1px #999;
    }
@media screen and (min-width: 768px) {
  .article-block {
    grid-template-columns: repeat(2, 1fr);
  }
}


.recommend {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  width: 100%;
  margin: 8px 0;
  font-size: 1.4rem;
}
  .recommend__title {
    width: 100%;
    padding: 0.3em 0.5em;
    background-color: #62B6CC;
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: bold;
  }
  .recommend__item {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: space-between;
    width: 95%;
    min-height: 350px;
    margin: 8px 0;
    text-align: center;
    border: solid 1px #62B6CC;
  }
    .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: #FC443C;
      font-weight: bold;
    }
    .recommend__name {
      font-weight: bold;
    }
    .recommend__text {
      padding: 10px;
      text-align: left;
    }
@media screen and (min-width: 768px) {
  .recommend__title {
    font-size: 2.0rem;
  }
  .recommend__item {
    width: 32%;
  }
}

.compare-table__title {
  width: 100%;
  margin: 8px 0 5px;
  padding: 0.3em 0.5em;
  background-color: #62B6CC;
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: bold;
}
.compare-table__wrapper {
  width: 100%;
  overflow-x: auto;
  border: solid 1px #aaa;
}
.compare-table {
  border-spacing: 0;
  width: max-content;
  font-size: 1.2rem;
}

  .compare-table__th,
  .compare-table__td {
    padding: 0.6em 0.2em;
    border: solid 1px #fff;
    border-top: none;
  }
  .compare-table__th--bottom,
  .compare-table__td--bottom {
    border-bottom: none;
  }
  .compare-table__th {
    position: sticky;
    left: 0;
    width: 80px;
    max-width: 120px;
    background: #62B6CC;
    color: #fff;
    border-left: none;
  }
  .compare-table__td {
    width: 40vw;
    max-width: 180px;
    background: #eee;
    text-align: center;
  }
    .compare-table__td--star>img {
      display: inline-block !important;
    }
    .compare-table__img {
      display: block;
      max-width: 90%;
      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: #FC9C9C;
      border-radius: 5px;
      color: #fff;
      font-weight: bold;
      text-decoration: none;
    }
@media screen and (min-width: 768px) {
  .compare-table {
    font-size: 1.4rem;
  }
  .compare-table__title {
    font-size: 2.0rem;
  }
  .compare-table__th {
    width: 30vw;
  }
}

.list {
  width: 100%;
  font-size: 1.6rem;
}
  .list__head {
    width: 100%;
    margin: 10px auto 0;
    padding: 6px 12px;
    background: #62B6CC;
    color: #fff;
    font-size: 2.4rem;
    font-weight: bold;
  }
  .list__text {
    width: 100%;
  }
  .list__list{
    width: 100%;
  }
    .list__item {
      display: block;
      margin: 5px;
      padding: 10px 20px 10px 10px;
      border: solid 1px #999;
      border-bottom: solid 3px #777;
      border-radius: 8px;
      text-decoration: none;
      color: #111;
    }
      .list__item:hover {
        background-color: #ccc;
        border-bottom: solid 1px #777;
        margin-bottom: 7px;
    }