@charset "UTF-8";
main {
  padding-top: 9vh;
}
@media (min-width: 768px) {
  main {
    padding-top: 8rem;
  }
}
main section {
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  main section {
    margin-bottom: 8rem;
  }
  main section:last-of-type {
    margin-bottom: 0;
  }
}
main section h1 {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  font-weight: bold;
}
@media (min-width: 768px) {
  main section h1 {
    font-size: 2rem;
  }
}
main section#topimage video {
  width: 100%;
}
main section#topimage img {
  width: 100%;
}
main section h2 {
  text-align: center;
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 2rem;
}
main section .lineup-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0;
}
@media (min-width: 768px) {
  main section .lineup-list {
    column-gap: 5rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
main section .lineup-list dl {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0.5rem;
  padding: 5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
main section .lineup-list dl:first-of-type {
  padding-top: 0;
}
main section .lineup-list dl:last-of-type {
  border-bottom: none;
}
@media (min-width: 768px) {
  main section .lineup-list dl {
    grid-row: span 4;
    grid-template-rows: subgrid;
    padding: 0;
    margin-bottom: 5rem;
    border: none;
  }
}
main section .lineup-list dl .thumb {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
main section .lineup-list dl .thumb img {
  max-height: 150px;
}
@media (min-width: 768px) {
  main section .lineup-list dl .thumb img {
    max-height: 200px;
  }
}
main section .lineup-list dl .thumb img.vertical-long {
  max-height: 300px;
}
@media (min-width: 768px) {
  main section .lineup-list dl .thumb img.vertical-long {
    max-height: 400px;
  }
}
main section .lineup-list dl .thumb.new::before {
  content: "NEW";
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  display: inline-block;
  padding: 0.25rem 0.5rem;
  background-color: #821e1e;
  font-weight: bold;
  letter-spacing: 0;
  font-size: 0.7rem;
}
main section .lineup-list dl .variation ul {
  display: flex;
  justify-content: flex-start;
  gap: 0.3rem;
}
main section .lineup-list dl .variation ul .variation-color {
  width: 1.5rem;
  height: 0.75rem;
  border: 1px solid #fff;
}
main section .lineup-list dl .variation ul .variation-color.black {
  background-color: #000;
}
main section .lineup-list dl .variation ul .variation-color.white {
  background-color: #fff;
}
main section .lineup-list dl .variation ul .variation-color.wood {
  background-color: #43291c;
}
main section .lineup-list dl .description h3 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}
main section .lineup-list dl .description p {
  font-size: 0.8rem;
}
main section .lineup-list dl .button {
  display: flex;
  justify-content: center;
}
main section .lineup-list dl .button a {
  display: block;
  padding: 0.5rem 1rem;
  background-color: #fff;
  color: #000;
  font-size: 0.8rem;
}
main section#comparison {
  background-color: #333;
  padding-top: 8rem;
  padding-bottom: 8rem;
}
main section .comparison-container {
  overflow-x: auto;
  scrollbar-width: none;
}
main section .comparison-container .comparison-table {
  border-collapse: separate;
  width: 100%;
}
main section .comparison-container .comparison-table thead,
main section .comparison-container .comparison-table tbody {
  overflow-x: auto;
}
main section .comparison-container .comparison-table thead th:first-of-type,
main section .comparison-container .comparison-table tbody th:first-of-type {
  position: sticky;
  left: 0;
}
main section .comparison-container .comparison-table thead th[rowspan="2"],
main section .comparison-container .comparison-table tbody th[rowspan="2"] {
  z-index: 1;
}
main section .comparison-container .comparison-table tr th,
main section .comparison-container .comparison-table tr td {
  padding: 0.5rem 0.2rem;
  text-align: center;
  vertical-align: middle;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  background-color: #333;
  font-size: 0.6rem;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  main section .comparison-container .comparison-table tr th,
  main section .comparison-container .comparison-table tr td {
    padding: 0.75rem 1rem;
    min-width: 200px;
  }
}
main section .comparison-container .comparison-table thead tr:first-of-type th {
  border-top: 1px solid #fff;
  font-size: 0.8rem;
}
main section .comparison-container .comparison-table thead tr:first-of-type th:first-of-type {
  border-left: 1px solid #fff;
  min-width: 150px;
}
@media (min-width: 768px) {
  main section .comparison-container .comparison-table thead tr:first-of-type th:first-of-type {
    min-width: 250px;
  }
}
main section .comparison-container .comparison-table thead tr:first-of-type th:first-of-type img {
  margin: 0 auto;
}
main section .comparison-container .comparison-table thead tr:first-of-type th:nth-of-type(n + 2) {
  border-bottom: none;
}
main section .comparison-container .comparison-table thead tr:nth-of-type(2) th {
  position: initial;
}
main section .comparison-container .comparison-table thead tr:nth-of-type(2) th img {
  margin: 0 auto;
}
main section .comparison-container .comparison-table tbody tr th {
  border-left: 1px solid #fff;
  white-space: nowrap;
}
main section .comparison-container .comparison-table tbody tr td {
  white-space: nowrap;
}
main section .related-content-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  main section .related-content-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
main section .related-content-list a:hover {
  opacity: 0.5;
  filter: alpha(opacity=50);
  transition: 0.8s opacity cubic-bezier(0.23, 1, 0.32, 1);
}
main section .related-content-list a dl {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
main section .related-content-list a dl .thumb {
  position: relative;
}
main section .related-content-list a dl .thumb img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}
main section .related-content-list a dl .thumb.new::before {
  content: "NEW";
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #821e1e;
  font-weight: bold;
  letter-spacing: 0;
  font-size: 0.6rem;
}
main section .related-content-list a dl .description {
  line-height: 1.2;
}
main section .related-content-list a dl .description h3 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 2.4em; /* 1.2em (line height) x 2 lines */
  max-height: 2.4em; /* 同上 */
}
main section .related-content-list a dl .description p {
  font-size: 0.6rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 3.6em; /* 1.2em (line height) x 3 lines */
  max-height: 3.6em; /* 同上 */
}
@media (min-width: 768px) {
  main section .related-content-list a dl .description p {
    font-size: 0.8rem;
  }
}/*# sourceMappingURL=lineup.css.map */