.products-index {
  display: grid;
  grid-template-columns: repeat(2 ,1fr);
  gap: 2em;
}
.products-index .products-index__item {
  display: block;
}
.products-index .products-index__item a {
  display: flex;
  flex-direction: column;
}
.products-index .products-index__item a h3 {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.5em;
  padding: 1em;
  color: white;
  background-color: var(--color-blue);
  display: block;
  position: relative;
}
.products-index .products-index__item a h3::before {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background-image: url('../images/arrow_white.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: .75em auto;
  position: absolute;
  bottom: 1.25em;
  right: 1em;
  transition: 0.3s;
}
.products-index .products-index__item a:hover h3::before  {
  right: .75em;
}
.products-index .products-index__item ul {
  margin-top: 1em;
  font-size: 1.3rem;
}
.block-border.--berity {
  margin-top: var(--space-md);
}
.bland__block .bland__inner {
  display: grid;
  grid-template-columns: 1fr;
}
.bland__block .bland__links {
  margin-top: 1em;
}
.bland__block .bland__links li {
  border-bottom: 1px solid var(--color-blue01);
  display: block;
}
.bland__block .bland__links a {
  display: block;
  padding: 1em 0;
  font-weight: 700;
  position: relative;
}
.bland__block .bland__links a::before {
  content: "";
  display: block;
  width: .8em;
  height: .8em;
  background-image: url('../images/arrow_orange.svg');
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: .3s;
}
.bland__block .bland__links a:hover::before {
  right: -.25em;
}
/** temp  **/
.bland-lead {
  display: block;
  padding: 1.5em;
  margin-top: 2em;
}
.bland-lead.--samic {
  background-color: #3b77b8;
}
.bland-lead.--verity {
  background-color: black;
}
.bland-lead .bland-lead__ttl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5em;
}
.bland-lead .bland-lead__logo img {
  height: 4rem;
  width: auto;
}
.bland-lead .bland-lead__series {
  display: flex;
  flex-wrap: wrap;
  gap: .5em;
  align-items: center;
}
.bland-lead .bland-lead__series li {
  background-color: white;
  transform: skewX(-20deg);
}
.bland-lead .bland-lead__series li span {
  font-size: 1.8rem;
  line-height: 1em;
  padding: .5em .25em;
  display: inline-block;
  font-weight: bold;
  transform: skewX(20deg);
  color: var(--color-blue);
}
.bland-lead.--verity .bland-lead__series li span {
  color: var(--color-orange);
}
.bland-lead .bland-lead__txt {
  color: white;
  margin-top: 1em;
}
.products-table {
  width: 100%;
  height: 60vh;
  overflow-y: auto;
}
.products-table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
}
.products-table tbody td:nth-child(4),
.products-table tbody td:has(.button) {
  white-space: nowrap;
}
.products-table tbody td.detail {
  padding: 0;
  white-space: nowrap;
}
.products-table tbody td .detail .detail-list {
  width: 100%;
} 
.products-table tbody td .detail-list li {
  display: flex;
}
.products-table tbody td .detail-list li:nth-child(odd) {
  background-color: var(--color-blue03);
}
.products-table tbody td .detail-list li span {
  padding: .5em 1em;
}
.products-table tbody td .detail-list li span:first-child {
  width: 10em;
  border-right: 1px solid var(--color-blue01);
}
.products-table tbody td.--temp-b .detail-list li span:first-child {
  width: 13em;
}
.products-table tbody td .button {
  margin: 1em 0;
}
.products-table tbody td .button {
  padding: 1em 1.5em 1em .5em;
}
.products-table tbody td .button:nth-child(2) {
  padding: 1em .5em;
}
.products-table tbody td .button::after {
  right: .5em;
  width: .8em;
  height: .8em;
}
.products-table tbody td .button:hover::after {
  transform: translate(0.2em, -50%);
}
.products-table tbody td.recommend {
  color: var(--color-orange);
  background-color: var(--color-orange01);
  text-align: center;
}
.products-table.--itemlists tbody th:nth-child(2) {
  text-align: left;
}
.products-table.--itemlists td .button {
    width: 9.8rem;
}
select {
  width: 100%;
  height: auto;
  line-height: 1em;
  border-radius: 0;
  color: white;
  background-color: var(--color-blue);
  padding: 1.5em 3em 1.5em 1em;
  background-image: url('../images/arrow_select.svg');
  background-repeat: no-repeat;
  background-position: center right 1em;
  background-size: 1.3rem auto;
}
select option {
  padding: .25em .5em;
  display: block;
}
.content:has(.products-table) {
  padding-top: 0;
}
.search-box {
  margin-bottom: var(--space-md);
}
.search-box__select {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1em;
  margin-bottom: 1.5em;
}
.search-box button[type="submit"] {
  width: 20rem;
  line-height: 1em;
  color: white;
  background-color: var(--color-orange);
  border: 1px solid var(--color-orange);
  text-align: center;
  display: block;
  padding: 1.25em;
  margin: 0 auto;
  border-radius: 2em;
  transition: 0.3s;
}
.search-box button[type="submit"]:hover {
  background-color: white;
  color: var(--color-orange);
}
@media screen and (max-width: 767px) {
  .products-table,
  .products-table .button {
    font-size: 1.3rem;
  }
  .products-table.--itemlists tbody th,
  .products-table.--itemlists tbody td {
    padding: 1em .5em;
  }
  .products-table.--itemlists tbody th {
    width: 30%;
  }
}
@media screen and (min-width: 768px) {
  .products-index {
    grid-template-columns: repeat(4 ,1fr);
    gap: 2.5em;
  }
  .products-index .products-index__item a h3 {
    font-size: 1.8rem;
  }
  .products-index .products-index__item a h3::before {
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
  }
  .products-index .products-index__item ul {
    font-size: 1.5rem;
  }
  .bland__block .bland__inner {
    grid-template-columns: repeat(3,1fr);
    gap: 6.2rem;
  }
  .bland__block .bland__links {
    margin: 0;
  }
  /** temp **/
  .bland-lead {
    padding: 2.5em 3em;
    margin: 12rem 0 10rem 0;
  }
  .bland-lead .bland-lead__ttl {
    gap: 1.5em;
  }
  .bland-lead .bland-lead__series li span {
    font-size: 2.4rem;
    padding: .75em 1.5em;
  }
  .bland-lead .bland-lead__logo img {
    height: 5.8rem;
    width: auto;
  }
  select {
    font-size: 1.8rem;
  }
  .search-box__select {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5em;
    margin-bottom: 2.5em;
  }
  .products-table {
    font-size: 0.875em;
    height: 70vh;
  }
  .products-table.--itemlists td .btn__inner {
    display: flex;
    justify-content: center;
    gap: 1em;
  }
  .products-table.--itemlists td .button {
    width: 10.8rem;
  }
  .products-table.--itemlists th,
  .products-table.--itemlists td {
    vertical-align: middle;
  }
  .products-table::-webkit-scrollbar {
    width: 1rem;
    height: 1rem;
  }
  .products-table::-webkit-scrollbar-track {
    background: var(--color-blue01);
  }
  .products-table::-webkit-scrollbar-thumb {
    background: var(--color-blue);
    border-radius: .5em;
  }
}