.button-jump {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 98%;
  min-height: 42px;
  margin: 15px auto;
  padding: 5px 10px;
  background: linear-gradient(to bottom, #FF1E00, #FF7400);
  border-radius: 8px;
  box-shadow:0 5px 0 #BF1600;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
}

.button-jump.bg-yellow {
  background: #F7CC15;
  box-shadow: 0 3px 0 #B69406;
}

@media screen and (min-width: 765px) {
  .button-jump {
    font-size: 20px;
  }
}

.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;
}
  .button-jump:hover{
    background: linear-gradient(to bottom, #FF5522, #FFaa55);
  }
  .button-jump.bg-yellow:hover {
    box-shadow: none;
    background: #F7CC15;
  }
  .button-detail:hover {
    background: #aaa;
  }

.button--sp {
  width: 100%;
  font-size: 2.7vw;
  text-align: center;
}

.category-list {
  width: 100%;
  margin-top: 8px;
}
  .category-list_head {
    width: 100%;
    margin-top: 15px;
    padding: 5px 10px;
    background: #19a78e;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
  }
    .category-list_head.list-full {
      width: 100%;
      margin-top: 10px;
      margin-bottom: 5px;
      padding: 6px 12px;
      background: #19a78e;
      border-radius: 0;
      color: #fff;
      font-size: 24px;
      font-weight: bold;
    }
    .category-list_head.list-sp {
      text-align: center;
      background: #ff824e;
    }
  .category-list_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    padding: 3px 0 0;
    border: solid 1px #19a78e;
  }
    .category-list_sub {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      height: 1.5em;
      margin-top: 5px;
      padding-left: 45px;
      background-image: url(/images/category/head.png);
      background-repeat: no-repeat;
      background-position: left;
      background-size: contain;
      color: #19A78E;
      font-size: 20px;
      font-weight: bold;
    }
    .category-list_list.list-full {
      justify-content: start;
      border: none;
    }
    .category-list_list.list-sp {
      border-color: #ff824e;
    }
    .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: #FFCB5D;
      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: 5px 10px;
      font-size: 18px;
    }
    .category-list_list a {
      width: 32%;
    }
}



.article-list {
  width: 100%;
  margin: 5px 0;
}
  .article-list_head {
    width: 100%;
    padding: 5px 0;
    background: #19a78e;
    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 #19a78e;
  }
    .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 #19a78e;
}
  .bottom-content-nobdr {
    border: none;
  }
  .bottom-content-title{
    width: 100%;
    margin-top: 10px;
    margin-bottom: 5px;
    padding: 6px 12px;
    background: #19a78e;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
  }
  .bottom-content-block {
    width: 95%;
  }
    .bottom-content-block-head {
      padding: 5px;
      border-bottom: dotted 2px #19a78e;
      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: #19a78e;
  }

.recommend {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 10px;
  font-size: 14px;
}
  .recommend__title {
    grid-column: 1/-1;
    width: 100%;
    margin-top: 15px;
    padding: 5px 10px;
    background: #19a78e;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
  }
  .recommend__item {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: space-between;
    width: 100%;
    height: 100%;
    margin: 0;
    text-align: center;
    border: solid 2px #19a78e;
  }
    @media screen and (max-width: 766px) {
      .recommend {
        grid-template-columns: 1fr;
      }
        .recommend__item {
          width: 95%;
          margin: 0 auto;
        }
    }
    .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 {
      width: 100%;
      padding: 5px;
      text-align: center;
      color: #19a78e;
      font-weight: bold;
    }
    .recommend__name {
      font-weight: bold;
    }
    .recommend__text {
      padding: 10px;
      text-align: left;
    }
  .recommend__banner-list {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    row-gap: 5px;
    width: 100%;
    margin-top: 5px;
  }
    .recommend__banner {
      display: block;
      width: 100%;
      object-fit: contain;
      margin: auto;
    }

  .bottom_article-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
    width: 100%;
  }
    .bottom_article-list_head {
      width: 100%;
      margin-top: 15px;
      padding: 5px 10px;
      background: #19a78e;
      color: #fff;
      font-size: 20px;
      font-weight: bold;
    }
    .bottom_article-list_item {
      width: 48%;
      height: 120px;
      margin-top: 8px;
    }
      .bottom_article-list_item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border: solid 1px #999;
      }

.check-nav {
  width: 100%;
  min-width: 250px;
  margin: 15px auto;
  padding: 8px;
  border: solid 2px #19a78e;
  border-radius: 20px;
  color: #19a78e;
  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: #19a78e;
    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);
    }


@media screen and (min-width: 765px) {
  .bottom-content-block {
    width: 29%;
  }
  .bottom-content-arrow {
    border-top-color: transparent;
    border-left-color: #19a78e;
    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%;
  }
  .bottom_article-list_item {
    height: 200px;
  }
}

.campaign-list {
  width: 100%;
  margin: 5px auto;
}
  .campaign-list__title {
    width: 100%;
    margin-top: 15px;
    padding: 5px 10px 3px;
    background: #19A78E;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
  }
  .campaign-list__item {
    display: grid;
    grid-template-columns: 25% 66% 5%;
    column-gap: 2%;
    row-gap: 5px;
    width: 100%;
    padding: 5px 0;
    border: solid 1px #aaa;
    border-bottom: none;
    color: #000;
    text-decoration: none;
    word-break: break-all;
    line-height: 1.3em;
  }
    .campaign-list__item:last-of-type {
      border-bottom: solid 1px #aaa;
    }
    .campaign-list__img-wrapper {
      grid-row: 1/4;
      display: flex;
      justify-content: center;
      align-items: center;
      width: 20vw;
      height: 20vw;
      margin: auto;
      border: solid 1px #aaa;
    }
    @media screen and (min-width: 765px) {
      .campaign-list__img-wrapper {
        width: 100%;
        height: initial;
        border: none;
      }
    }
      .campaign-list__img {
        display: block;
        max-width: 95%;
        object-fit: contain;
      }
    .campaign-list__name {
      font-weight: bold;
    }
    .campaign-list__head {
      color: #BF1600;
      font-weight: bold;
    }
    .campaign-list__text {
      font-size: 14px;
    }
    .campaign-list__arrow {
      grid-column: 3/4;
      grid-row: 1/4;
      background-image: url(/images/arrow_right.png);
      background-repeat: no-repeat;
      background-size: contain;
      background-position: center;
    }
    @media screen and (min-width: 765px) {
      .campaign-list__arrow {
        background-size: 24px;
      }
    }

.compare-table__title {
  width: 100%;
  margin: 8px 0 0;
}
.compare-table__wrapper {
  overflow-x: auto;
  width: 100%;
  font-size: 62.5%; /* def 1rem = 10px */
}
.compare-table {
  border-collapse: collapse;
  width: max-content;
  margin-left: -5px;
  font-size: 1.4em;
}

  .compare-table__th,
  .compare-table__td {
    padding: 0.6em 0.2em;
    border: solid 2px #163e64;
    background: #fff;
    color: #222;
  }
  .compare-table__th {
    position: sticky;
    z-index: 2;
    left: 0;
    width: 86px;
  }
    .compare-table__th--blank {
      background: #fff;
    }
    .compare-table__th--axis {
      background-color: #163e64;
      border: solid 2px #163e64;
      color: #fff;
      font-size: 12px;
    }
    .compare-table__th--axis::after {
      content: "";
      position: absolute;
      top: 0;
      left: -1px;
      width: 2px;
      height: 100%;
      background-color: #163e64;
    }
  .compare-table__td {
    width: 50vw;
    max-width: 200px;
    text-align: center;
  }
    .compare-table__td--head {
      border-top : solid 2px #163e64;
      text-align: center;
      font-weight: bold;
    }
    .compare-table__td--star>div {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      color: gold;
      font-size: 18px;
      font-weight: bold;
    }
    .compare-table__name {
      display: grid;
      grid-template-columns: 30px 1fr;
      justify-items: flex-start;
      align-items: center;
      gap: 10px;
      padding-left: 5px;
    }
      .compare-table__name>img {
        width: 100%;
        object-fit: contain;
        margin: auto;
      }
    .compare-table__img {
      display: block;
      max-width: 100%;
      height: 100px;
      object-fit: contain;
      margin: 8px auto;
    }
    .compare-table__td--data>img {
      display: block;
      width: 25%;
      margin: 5px auto;
    }
    .compare-table__button {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 90%;
      margin: 0 auto;
      padding: 0.2em 0;
      background: #FFC000;
      border-radius: 5px;
      color: #fff;
      font-weight: bold;
      text-decoration: none;
    }
@media screen and (min-width: 768px) {
  .compare-table__title {
    width: 100%;
    margin: 8px 0 5px;
    padding: 0.3em 0.5em;
    background-color: #19A78E;
    color: #ffffff;
    font-size: 20px;
    font-weight: bold;
  }
  .compare-table__wrapper {
    overflow-x: auto;
    width: 100%;
    margin-top: 10px;
    font-size: 62.5%; /* def 1rem = 10px */
  }
  .compare-table {
    border-spacing: 10px 0;
    border-collapse: separate;
    width: max-content;
    margin-left: -10px;
    font-size: 1.4em;
  }

    .compare-table__th,
    .compare-table__td {
      padding: 0.6em 0.2em;
      border: none;
      border-left : solid 2px #1EC1A7;
      border-right : solid 2px #1EC1A7;
      border-top: none;
      background: #fff;
      color: #222;
    }
      .compare-table__th--top,
      .compare-table__td--top {
        border-top : solid 2px #1EC1A7;
      }
      .compare-table__th--bottom,
      .compare-table__td--bottom {
        border-bottom : solid 2px #1EC1A7;
      }
      .compare-table__tr:nth-of-type(odd)>.compare-table__th,
      .compare-table__tr:nth-of-type(odd)>.compare-table__td {
        background: #cdf7ef;
      }
    .compare-table__th {
      position: sticky;
      z-index: 2;
      left: 0;
      width: 30vw;
      max-width: 120px;
    }
      .compare-table__th--blank {
        background: #fff;
        border: none;
      }
      .compare-table__th--axis {
        border-color: #ccc;
      }
      .compare-table__th--axis::after {
        display: none;
      }
    .compare-table__td {
      width: 40vw;
      max-width: 180px;
      text-align: center;
    }
      .compare-table__td--head {
        padding: 1em 0;
        background: #1EC1A7;
        border: none;
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        color: #fff;
        text-align: center;
        font-weight: bold;
      }
      .compare-table__td--star>img {
        display: inline-block !important;
      }
      .compare-table__td>img {
        display: block;
        max-width: 100%;
        height: 40px;
        object-fit: contain;
        margin: 5px auto;
      }
      .compare-table__name {
        display: block;
      }
      .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: #FFC000;
        border-radius: 5px;
        color: #fff;
        font-weight: bold;
        text-decoration: none;
      }
}

.embed {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 95%;
  margin: 10px auto 0;
  border: solid 2px #19A78E;
}
  .embed__title {
    width: 100%;
    padding: 0.2em 0;
    background: #19A78E;
    text-align: center;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
  }

.top-recommend {
  position: relative;
  width: 100%;
  margin: 0;
  font-size: 12px;
}
  .top-recommend__title {
    display: block;
    width: 100%;
    object-fit: contain;
  }
  .top-recommend__pin {
    position: absolute;
    display: inline-flex;
    top: 10px;
    left: 0;
    right: 0;
    width: fit-content;
    height: fit-content;
    margin: 0 auto;
    padding: 0.1em 1em ;
    border-radius: 5px;
    background-color: #57c1b7;
    color: #fff;
    font-size: 4vw;
    font-weight: bold;
  }
  .top-recommend__img {
    display: block;
    width: 100%;
    object-fit: contain;
  }
  .top-recommend__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px 10px;
    width: 95%;
    margin: 5px auto 0;
    padding-top: 10px;
  }
    .top-recommend__item {
      position: relative;
      display: grid;
      grid-template-columns: 1fr;
      gap: 5px;
      padding: 10px;
      border: solid 2px #4b73c1;
      border-radius: 15px;
      background: #f0f7ff;
    }
      .top-recommend__item--1 {
        border-color: #fde38a;
        background: #fef2ba;
      }
      .top-recommend__item--2 {
        border-color: #cacaca;
        background: #edeeed;
      }
      .top-recommend__item--3 {
        border-color: #d0ab60;
        background: #EFE5D9;
      }
      .top-recommend__badge {
        position: absolute;
        top: -15px;
        left: 10px;
        display: block;
        height: 50px;
        object-fit: contain;
      }
      .top-recommend__frame {
        grid-column: 1 / 2;
        grid-row: 1 / 3;
        border-radius: 15px;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #fff;
      }
        .top-recommend__logo {
          display: block;
          width: 90%;
          object-fit: contain;
        }
      .top-recommend__name {
        padding-left: 45px;
        font-size: 18px;
        font-weight: bold;
      }
        .top-recommend__name>a {
          color: #0f75bd;
        }
        .top-recommend__icon {
          display: inline-block;
          width: 1.2em;
          height: 1.2em;
          margin: 0 0 -2px 2px;
        }
      .top-recommend__text {
        font-size: 14px;
      }
      .top-recommend__button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 75%;
        max-width: 200px;
        margin: auto;
        padding: 0.5em 0;
        border-radius: 5px;
        background: #f4603c;
        box-shadow: 0 2px 2px #855;
        color: #fff;
        text-align: center;
        font-weight: bold;
        text-decoration: none;
      }

@media screen and (min-width: 768px) {
  .top-recommend__list {
    grid-template-columns: repeat(5, 1fr);
    width: 100%;
  }
    .top-recommend__item {
      gap: 5px;
      padding: 30px 10px 10px;
    }
      .top-recommend__badge {
        top: -15px;
        left: 0;
        right: 0;
        margin: auto;
      }
      .top-recommend__frame {
        grid-column: auto;
        grid-row: auto;
        height: 80px;
      }
      .top-recommend__name {
        grid-column: auto;
        padding: 0;
        text-align: center;
        font-size: 12px;
      }
      .top-recommend__text {
        grid-column: auto;
        font-size: 12px;
      }
      .top-recommend__button {
        grid-column: auto;
      }
}

.timer {
  width: 95%;
  margin: 10px auto 0;
  padding: 0.5em;
  background: #4d4d4d;
  border-radius: 5px;
  text-align: center;
  color: #fff;
}
  .timer__clock {
    display: inline-block;
    color: #ffff19;
    font-weight: bold;
  }

.contents1 {
  width: 100%;
  margin: 10px auto 0;
}
  .contents1__tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: flex-end;
    gap: 0;
    width: 100%;
    height: 50px;
    margin: auto;
    padding: 0 2%;
    color: #555;
  }
    .contents1__tab {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      height: 80%;
      padding: 3px;
      border: solid 2px #010B13;
      border-bottom: none;
      border-right: none;
      background-color: #cbe3f5;
      text-align: center;
      font-size: 14px;
      font-weight: bold;
      line-height: 1.2;
      cursor: pointer;
    }
      .contents1__tab:last-of-type {
        border-right: solid 2px #010B13;
      }
      .contents1__tab.on {
        position: relative;
        height: 100%;
        background: linear-gradient(
          to bottom,
          #FCFE33,
          #FEFE76 33%,
          #FAF9BD 66%,
          #fff 100%
        );
        color: #000;
      }
        .contents1__tab.on::before {
          content: "";
          position: absolute;
          top: -2px;
          right: -2px;
          width: 2px;
          height: 25%;
          background-color: #010B13;
        }
        .contents1__tab.on::after {
          content: "";
          position: absolute;
          bottom: -3px;
          width: 100%;
          height: 4px;
          background-color: #fff;
        }
  .contents1__list {
    display: block;
    border-top: solid 2px #010B13;
  }
    .contents1__item {
      display: grid;
      grid-template-columns: 70px repeat(4, 1fr);
      align-items: center;
      gap: 10px;
      margin: auto;
      padding: 10px 5px;
      border-bottom: solid 1px #555;
      background-color: #fff;
    }
      .contents1__item:last-of-type {
        border-bottom: none;
      }
      .contents1__img-wrapper {
        display: contents;
      }
        .contents1__img {
          grid-row: 1 / 3;
          width: 100%;
          aspect-ratio: 1 / 1;
          object-fit: scale-down;
          border: solid 1px #555;
        }
      .contents1__name-wrapper {
        grid-column: 2 / -1;
      }
        .contents1__badge {
          display: inline-block;
          width: 45px;
          object-fit: contain;
          margin-bottom: -5px;
        }
        .contents1__name {
          color: #0f75bd;
          font-size: 22px;
          font-weight: bold;
        }
        .contents1__icon {
          display: none;
          width: 1.2em;
          height: 1.2em;
          margin: 0 0 -2px 2px;
        }
      .contents1__tag {
        display: inline-flex;
        justify-content: center;
        padding: 1px 8px;
        border-radius: 3px;
        background-color: #d9d9d9;
        font-size: 11px;
      }
      .contents1__text {
        color: #EA440E;
        font-size: 12px;
        font-weight: bold;
      }
      .contents1__benefit-wrapper {
        grid-column: 1 / -1;
        display: flex;
        align-items: center;
        padding: 3px;
        border: solid 1px #aaa;
        border-radius: 3px;
      }
        .contents1__tag--benefit {
          position: relative;
          background-color: #ff6c30;
          color: #fff;
          margin-right: 15px;
          padding: 1px 4px 1px 8px;
          border-radius: 0;
        }
          .contents1__tag--benefit::after {
            content: "";
            position: absolute;
            right: -20px;
            top: 0;
            bottom: 0;
            width: 0;
            height: 0;
            margin: auto;
            border: solid 10px transparent;
            border-left-color: #ff6c30;
          }
        .contents1__text--benefit {
          color: initial;
          font-weight: initial;
        }
      .contents1__button {
        grid-column: 6 / 7;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 1.8em;
        height: 1.8em;
        margin: auto;
        border-radius: 50%;
        background-color: #c00;
        color: #fff;
        font-size: 14px;
        font-weight: bold;
        text-decoration: none;
      }
@media screen and (min-width: 768px) {
  .contents1 {
    margin: 20px auto 0;
  }
    .contents1__list {
      border: solid 2px #010B13;
    }
      .contents1__item {
        grid-template-columns: 100px 5em 4em 3em 5em 1fr ;
        padding: 10px;
      }
        .contents1__img-wrapper {
          display: contents;
        }
          .contents1__img {
            grid-row: 1 / 3;
          }
        .contents1__name-wrapper {
          grid-column: 2 / -1;
        }
          .contents1__badge {
            width: 50px;
            margin-bottom: -5px;
          }
          .contents1__name {
            font-size: 20px;
          }
          .contents1__icon {
            display: inline-block;
          }
        .contents1__tag {
          padding: 2px 10px;
          border-radius: 4px;
          font-size: 14px;
        }
        .contents1__text {
          font-size: 14px;
        }
        .contents1__button {
          display: none;
        }
        .contents1__benefit-wrapper {
          grid-column: 6 / -1;
        }
}


.compare-table2__title {
  width: 100%;
  margin: 20px 0 0;
}
.compare-table2__tabs {
  overflow-x: hidden;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: flex-end;
  gap: 10px;
  width: 100%;
  height: 50px;
  margin: auto;
  padding: 0 2%;
  background-color: #ecf9fe;
  color: #595959;
}
  .compare-table2__tab {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 80%;
    padding: 3px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    background-color: #d1d1d1;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.2;
    cursor: pointer;
  }
    .compare-table2__tab.on {
      position: relative;
      height: 100%;
      background: linear-gradient(
        to top,
        #FFFF0D,
        #FFFFA3 10%,
        #FFFFA3 100%
      );
      box-shadow: 2px 0px 4px #999;
    }

.compare-table2__wrapper {
  overflow-x: auto;
  width: 100%;
  font-size: 62.5%; /* def 1rem = 10px */
}
.compare-table2 {
  border-collapse: collapse;
  width: max-content;
  margin-left: -5px;
  font-size: 1.6em;
}

.compare-table2 .red {
  color: #EA440E !important;
}

  .compare-table2__th,
  .compare-table2__td {
    padding: 0.6em 0.2em;
    border: solid 2px #163e64;
    background: #fff;
    color: #3F3F3F;
  }
  .compare-table2__th {

    width: 86px;
  }
    .compare-table2__th--blank {
      background: #fff;
    }
    .compare-table2__th--axis {
      background-color: #163e64;
      border: solid 2px #163e64;
      color: #fff;
    }
    .compare-table2__th--axis::after {
      content: "";
      position: absolute;
      top: 0;
      left: -1px;
      width: 2px;
      height: 100%;
      background-color: #163e64;
    }
  .compare-table2__td {
    width: 50vw;
    max-width: 200px;
    text-align: center;
  }
    .compare-table2__td--head {
      position: relative;
      border-top : solid 2px #163e64;
      text-align: center;
      font-weight: bold;
    }
    .compare-table2__badge {
      position: absolute;
      bottom: 140px;
      left: 0;
      right: 0;
      width: 40px;
      margin: auto;
    }
    .compare-table2__td--head:first-of-type>.compare-table2__badge {
      width: 60px;
      height: 55px;
    }
    .compare-table2__td--star>div {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      color: #DD1D03 ;
      font-size: 12px;
      font-weight: bold;
    }
    .compare-table2__td--star img {
      margin-right: 3px;
      width: 16px;
      object-fit: contain;
    }
    .compare-table2__name {
      display: grid;
      grid-template-columns: 30px 1fr;
      justify-items: flex-start;
      align-items: center;
      gap: 10px;
      padding-left: 5px;
    }
      .compare-table2__name>img {
        width: 100%;
        object-fit: contain;
        margin: auto;
      }
    .compare-table2__img {
      display: block;
      max-width: 100%;
      height: 100px;
      object-fit: contain;
      margin: 8px auto;
    }
    .compare-table2__td--data>img {
      display: block;
      width: 25%;
      margin: 5px auto;
    }

  .compare-table2__title {
    width: 100%;
    color: #ffffff;
    font-size: 20px;
    font-weight: bold;
  }
  .compare-table2__wrapper {
    overflow-x: auto;
    width: 100%;
    font-size: 62.5%; /* def 1rem = 10px */
  }
  .compare-table2 {
    border-spacing: 10px 0;
    border-collapse: separate;
    width: max-content;
    margin-top: 35px;
    font-size: 1.6em;
  }

    .compare-table2__th,
    .compare-table2__td {
      padding: 0.3em 0.1em;
      border: none;
      border-left : solid 5px #c9e8ff;
      border-right : solid 5px #c9e8ff;
      background: #fff;
      color: #3F3F3F;
    }
      .compare-table2__th--top,
      .compare-table2__td--top {
        border-top : solid 2px #1EC1A7;
      }
      .compare-table2__th--bottom,
      .compare-table2__td--bottom {
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        border-bottom : solid 10px #c9e8ff;
      }
      .compare-table2__th:nth-of-type(1),
      .compare-table2__td:nth-of-type(1) {
        border-color: #eacc59;
      }
      .compare-table2__th:nth-of-type(2),
      .compare-table2__td:nth-of-type(2) {
        border-color: #d6d6d6;
      }
      .compare-table2__th:nth-of-type(3),
      .compare-table2__td:nth-of-type(3) {
        border-color: #ba966a;
      }
      .compare-table2__tr:nth-of-type(odd)>.compare-table2__th,
      .compare-table2__tr:nth-of-type(odd)>.compare-table2__td {
        background: #f3f3f3;
        color: #6E786F;
      }
    .compare-table2__th {
      width: 30vw;
      max-width: 120px;
      color: #828282;
      font-weight: normal;
    }
      .compare-table2__th--blank {
        background: #fff;
        border: none;
      }
      .compare-table2__th--axis {
        padding: 0;
        border-color: #c9e8ff;
        color: #555;
      }
      .compare-table2__th--axis::after {
        display: none;
      }
    .compare-table2__td {
      width: 40vw;
      max-width: 180px;
      text-align: center;
    }
      .compare-table2__td--head {
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        border-top : solid 30px #c9e8ff;
        color: #fff;
        text-align: center;
        font-weight: bold;
      }
      .compare-table2__td--star>img {
        display: inline-block !important;
      }
      .compare-table2__td>.left {
        text-align: left;
      }
      .compare-table2__td>img {
        display: block;
        max-width: 100%;
        height: 40px;
        object-fit: contain;
        margin: 5px auto;
      }
      .compare-table2__name {
        display: block;
      }
      .compare-table2__img {
        display: block;
        max-width: 100%;
        height: 100px;
        object-fit: contain;
        margin: 8px auto;
      }
      .compare-table2__button {
        width: 90%;
        margin: 5px auto;
      }

.swiper-container-horizontal>.swiper-pagination-bullets {
  bottom: 0;
}
.swiper-button-prev {
  left: -5px;
}
.swiper-button-next {
  right: -5px;
}
.swiper-button-prev:after {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background-image: url(/images/left.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.swiper-button-next:after {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background-image: url(/images/right.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
