@charset "UTF-8";
/* 各製品のレイアウト */
.spec-chex .spec__linkItem--current .spec__linkItem_link {
  background-color: #0A6AC4;
}
@media (hover: hover) and (pointer: fine) {
  .spec-chex .spec__menuItem_link:hover {
    color: #0A6AC4;
  }
}
.spec-chex .spec__menuItem_link::before {
  background-color: #0A6AC4;
}
.spec-chex .ttl-pattern-3 {
  border-color: #0A6AC4;
}
.spec-chex .ttl-pattern-5 {
  color: #0A6AC4;
}

.spec-chexbim .spec__linkItem--current .spec__linkItem_link {
  background-color: #333;
}
@media (hover: hover) and (pointer: fine) {
  .spec-chexbim .spec__menuItem_link:hover {
    color: #ED2446;
  }
}
.spec-chexbim .spec__menuItem_link::before {
  background-color: #333;
}
.spec-chexbim .ttl-pattern-3 {
  border-color: #ED2446;
}
.spec-chexbim .ttl-pattern-5 {
  color: #ED2446;
}

.spec-laxsy .spec__linkItem--current .spec__linkItem_link {
  background-color: #FFB601;
}
@media (hover: hover) and (pointer: fine) {
  .spec-laxsy .spec__menuItem_link:hover {
    color: #FFB601;
  }
}
.spec-laxsy .spec__menuItem_link::before {
  background-color: #FFB601;
}
.spec-laxsy .ttl-pattern-3 {
  border-color: #FFB601;
}
.spec-laxsy .ttl-pattern-5 {
  color: #FFB601;
}

.spec-aquick .spec__linkItem--current .spec__linkItem_link {
  background-color: #178986;
}
@media (hover: hover) and (pointer: fine) {
  .spec-aquick .spec__menuItem_link:hover {
    color: #178986;
  }
}
.spec-aquick .spec__menuItem_link::before {
  background-color: #178986;
}
.spec-aquick .ttl-pattern-3 {
  border-color: #178986;
}
.spec-aquick .ttl-pattern-5 {
  color: #178986;
}

/* リンクリスト */
.spec__linkList {
  display: grid;
  border-radius: 0.625rem;
  background-color: #F8F8F8;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (min-width: 576px) {
  .spec__linkList {
    border-radius: 3.125rem;
    grid-template-columns: repeat(4, 1fr);
  }
}

.spec__linkItem--current .spec__linkItem_link {
  color: #FFFFFF;
  border-radius: 0.625rem;
  pointer-events: none;
}
@media screen and (min-width: 576px) {
  .spec__linkItem--current .spec__linkItem_link {
    border-radius: 3.125rem;
  }
}

@media (hover: hover) and (pointer: fine) {
  .spec__linkItem--chex .spec__linkItem_link:hover {
    color: #0A6AC4;
  }
}

@media (hover: hover) and (pointer: fine) {
  .spec__linkItem--chexbim .spec__linkItem_link:hover {
    color: #ED2446;
  }
}

@media (hover: hover) and (pointer: fine) {
  .spec__linkItem--laxsy .spec__linkItem_link:hover {
    color: #FFB601;
  }
}

@media (hover: hover) and (pointer: fine) {
  .spec__linkItem--aquick .spec__linkItem_link:hover {
    color: #178986;
  }
}

.spec__linkItem_link {
  display: grid;
  place-content: center;
  font-size: 1rem;
  font-weight: 700;
  height: 2.625rem;
  color: #A9A9A9;
}
@media screen and (min-width: 768px) {
  .spec__linkItem_link {
    font-size: 1.125rem;
    height: 3rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .spec__linkItem_link:hover {
    opacity: 1;
  }
}

.spec__menuList-wrap {
  width: 100%;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .spec__menuList-wrap {
    margin-top: 3.75rem;
  }
}

.spec__menuList-wrap.js-fixed-menu {
  display: none;
}

.spec__menuList-wrap.js-fixed-menu.is-fixed {
  position: fixed;
  left: 0;
  margin-top: 0;
  display: block;
  padding-block: 0.625rem;
  background-color: #FFFFFF;
  box-shadow: 0px 10px 10px -10px rgba(0, 0, 0, 0.3);
  z-index: 100;
  animation: menu-fixed 0.5s;
}

@keyframes menu-fixed {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.spec__menuList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.625rem 1.25rem;
  max-width: 400px;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .spec__menuList {
    gap: 0.625rem 2.5rem;
    max-width: 100%;
  }
}

.spec__menuItem_link {
  position: relative;
  font-size: 0.875rem;
  font-weight: 500;
  color: #333;
  letter-spacing: 0.1em;
  padding-left: 1.5625em;
  transition: color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .spec__menuItem_link {
    font-size: 1rem;
  }
}
.spec__menuItem_link::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  mask-image: url(../images/common/icon-check-circle.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .spec__menuItem_link::before {
    width: 17px;
    height: 17px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .spec__menuItem_link:hover {
    opacity: 1;
  }
}

/* 表レイアウト */
.spec__section {
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .spec__section {
    margin-top: 6.25rem;
  }
}
.spec__section:first-of-type {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .spec__section:first-of-type {
    margin-top: 3.75rem;
  }
}

.spec__section .round-list.d-flex {
  gap: 1.25rem;
}
@media screen and (min-width: 576px) {
  .spec__section .round-list.d-flex {
    gap: 2.5rem;
  }
}
.spec__section .round-list.d-flex .round-list__item {
  margin-bottom: 0;
}

.spec__anchor {
  position: relative;
  display: block;
  padding-top: 110px;
  margin-top: -110px;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .spec__anchor {
    padding-top: 80px;
    margin-top: -80px;
  }
}
@media screen and (min-width: 1200px), print {
  .spec__anchor {
    padding-top: 100px;
    margin-top: -100px;
  }
}

.spec__unit + .spec__unit {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .spec__unit + .spec__unit {
    margin-top: 2.5rem;
  }
}

.spec__table {
  border: 1px solid #DCDCDC;
}
@media screen and (min-width: 768px) {
  .spec__table {
    border-left: none;
    border-right: none;
    border-top: none;
  }
}

.spec__table_wrap {
  border-top: 1px solid #DCDCDC;
}
@media screen and (min-width: 768px) {
  .spec__table_wrap {
    display: grid;
    grid-template-columns: 18.2156133829% 1fr;
  }
}

.spec__table_title {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 700;
  background-color: #F8F8F8;
  padding: 0.9375rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .spec__table_title {
    font-size: 1rem;
    padding: 1.25rem 1.875rem;
  }
}

.spec__table_content_wrap {
  display: inline;
}

.spec__table_content {
  padding: 1.25rem 0.9375rem;
  border-top: 1px solid #DCDCDC;
  word-wrap: break-word;
}
@media screen and (min-width: 768px) {
  .spec__table_content {
    padding: 1.25rem 1.875rem;
    border-top: none;
    border-left: 1px solid #DCDCDC;
  }
}

.spec__table_content--col2 {
  display: grid;
  grid-template-columns: 1fr 53%;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .spec__table_content--col2 {
    grid-template-columns: 1fr 29.0058479532%;
  }
}
.spec__table_content--col2 + .spec__table_content--col2 {
  border-top: 1px solid #DCDCDC;
}

.spec__table_btn {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .spec__table_btn {
    text-align: left;
  }
}

.spec__table_btn .btn-standard--icon-arrow {
  width: 100%;
  max-width: 245px;
}
@media screen and (min-width: 400px) {
  .spec__table_btn .btn-standard--icon-arrow {
    width: 254px;
    max-width: 100%;
  }
}

.spec__product {
  display: grid;
  gap: 0.9375rem;
  grid-template-columns: auto 1fr;
  align-items: center;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .spec__product {
    font-size: 1rem;
    gap: 1.875rem;
    grid-auto-flow: column;
  }
}

.spec__product_image {
  width: 1.875rem;
}
@media screen and (min-width: 768px) {
  .spec__product_image {
    width: 2.5rem;
  }
}

.spec__product,
.spec__product_company {
  padding: 0.9375rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .spec__product,
  .spec__product_company {
    padding: 1.25rem 1.875rem;
  }
}

.spec__product_company {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border-left: 1px solid #DCDCDC;
}

.spec__f-weight {
  font-size: 1rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .spec__f-weight {
    font-size: 1.25rem;
  }
}

.spec__btns {
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
}
@media screen and (min-width: 576px) {
  .spec__btns {
    gap: 1.25rem;
    flex-direction: row;
  }
}

.spec__caution {
  position: relative;
  font-size: 0.875rem;
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (min-width: 768px) {
  .spec__caution {
    font-size: 1rem;
  }
}/*# sourceMappingURL=style-spec.css.map */