@charset "UTF-8";
/* Sass Document */
.p-kv {
  max-width: 120rem;
  margin-inline: auto;
}

.p-content__heading {
  padding-block: 10rem;
}
@media screen and (max-width: 767.98px) {
  .p-content__heading {
    padding: 4rem 3rem;
  }
}

.c-heading__txt {
  font-size: 1.8rem;
  text-align: center;
  color: #000;
}
@media screen and (max-width: 767.98px) {
  .c-heading__txt {
    font-size: 1.4rem;
    text-align: left;
    line-height: 1.75;
  }
}

.p-tabs {
  max-width: 120rem;
  margin-inline: auto;
  display: flex;
  padding-bottom: 1.2rem;
}
@media screen and (max-width: 767.98px) {
  .p-tabs {
    max-width: inherit;
    margin-inline: 3rem;
    border-bottom: 4px solid rgb(53, 63, 170);
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
    position: relative;
    padding-bottom: 4rem;
  }
  .p-tabs::after {
    content: "";
    position: absolute;
    top: calc(100% + 1px);
    width: 7.8rem;
    height: 1.4rem;
    left: 50%;
    transform: translateX(-50%);
    -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
            clip-path: polygon(0 0, 50% 100%, 100% 0);
    background-color: rgb(53, 63, 170);
  }
}

.p-tab__item {
  width: 50%;
  border-bottom-width: 0.4rem;
  border-bottom-style: solid;
  border-bottom-color: #c9cfd3;
  position: relative;
}
@media screen and (max-width: 767.98px) {
  .p-tab__item {
    width: calc(50% - 0.75rem);
    border: none;
    outline: 1px solid #c9cfd3;
    border-radius: 0.5rem;
    outline-offset: -1px;
  }
}
.p-tab__item.c-current {
  border-bottom-color: rgb(53, 63, 170);
}
@media screen and (max-width: 767.98px) {
  .p-tab__item.c-current {
    outline: 2px solid rgb(53, 63, 170);
    outline-offset: -2px;
  }
}
.p-tab__item.c-current::after {
  content: "";
  position: absolute;
  top: calc(100% + 1px);
  left: 50%;
  width: 7.8rem;
  height: 1.4rem;
  transform: translateX(-50%);
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
          clip-path: polygon(0 0, 50% 100%, 100% 0);
  background-color: rgb(53, 63, 170);
}
@media screen and (max-width: 767.98px) {
  .p-tab__item.c-current::after {
    display: none;
  }
}
.p-tab__item.-cat .u-btn-txt::before {
  background-image: url(../img/common/icn_cat.svg);
  width: 2.2rem;
  height: 2.2rem;
}
.p-tab__item.-name .u-btn-txt {
  padding-left: 4.8rem;
}
@media screen and (max-width: 767.98px) {
  .p-tab__item.-name .u-btn-txt {
    padding-left: 0;
  }
}
.p-tab__item.-name .u-btn-txt::before {
  background-image: url(../img/common/icn_name.svg);
  width: 3rem;
  height: 1.8rem;
  top: 58%;
}
@media screen and (max-width: 767.98px) {
  .p-tab__item.-name .u-btn-txt::before {
    top: 5%;
  }
}
.p-tab__item button {
  background-color: #fff;
  width: 100%;
  text-align: center;
  font: inherit;
  cursor: pointer;
  padding-block: 3rem;
  transition: 0.3s background-color;
}
@media (any-hover: hover) {
  .p-tab__item button:hover {
    background-color: #f6f6f7;
  }
}
@media screen and (max-width: 767.98px) {
  .p-tab__item button {
    text-align: center;
    padding-block: 2rem;
  }
}
.p-tab__item button .u-btn-txt {
  font-size: 2.4rem;
  color: rgb(53, 63, 170);
  font-weight: 700;
  position: relative;
  padding-left: 3.5rem;
  display: inline-block;
}
@media screen and (max-width: 767.98px) {
  .p-tab__item button .u-btn-txt {
    font-size: 1.6rem;
    line-height: 1.5;
    padding-left: 0;
    padding-top: 3rem;
  }
}
.p-tab__item button .u-btn-txt::before {
  top: 55%;
  transform: translateY(-50%);
  content: "";
  position: absolute;
  left: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (max-width: 767.98px) {
  .p-tab__item button .u-btn-txt::before {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
.p-tab__item button .u-btn-txt span {
  color: #000;
  font-size: 2rem;
  font-weight: 500;
}
@media screen and (max-width: 767.98px) {
  .p-tab__item button .u-btn-txt span {
    font-size: 1.4rem;
  }
}

.p-product__content {
  padding-block: 8rem 10rem;
  display: none;
  opacity: 0;
}
.p-product__content.is-show {
  display: block;
  -webkit-animation: show 0.3s forwards;
          animation: show 0.3s forwards;
}
@media screen and (max-width: 767.98px) {
  .p-product__content {
    padding-block: 3rem 8rem;
  }
}

@-webkit-keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.p-products-category__list {
  display: flex;
  flex-wrap: wrap;
  gap: 2.3rem 1.6rem;
  width: 100%;
  max-width: 100.8rem;
  margin: 0 auto;
}
.p-products-category__list:last-of-type {
  padding-bottom: 8rem;
}
@media screen and (max-width: 767.98px) {
  .p-products-category__list:last-of-type {
    padding-bottom: 5.5rem;
  }
}
@media screen and (max-width: 767.98px) {
  .p-products-category__list {
    max-width: inherit;
    padding-inline: 3rem;
    margin-top: 0;
    justify-content: space-between;
    gap: 1.6rem 0;
  }
}

.p-products-category__item {
  width: 24rem;
}
.p-products-category__item.-other {
  margin-top: 3rem;
  border-bottom: 1px solid rgb(159, 159, 159);
}
@media screen and (max-width: 767.98px) {
  .p-products-category__item.-other {
    margin-top: 0;
  }
  .p-products-category__item.-other a {
    display: block;
    padding-top: 2rem;
  }
}
.p-products-category__item.-other .c-ttl {
  color: rgb(53, 63, 170);
}
@media screen and (max-width: 767.98px) {
  .p-products-category__item {
    width: calc(50% - 0.6rem);
  }
}
.p-products-category__item .p-img-wrapper {
  aspect-ratio: 240/160;
  overflow: hidden;
  margin-bottom: 0 !important;
}
.p-products-category__item .p-img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s transform;
}
.p-products-category__item a {
  text-decoration: none;
  color: currentColor;
}
@media (any-hover: hover) {
  .p-products-category__item a:hover .p-img-wrapper img {
    transform: scale(1.1);
  }
  .p-products-category__item a:hover .c-ttl {
    opacity: 0.7;
  }
}

.p-products-category__body {
  padding: 1rem 0.5rem;
}
@media screen and (max-width: 767.98px) {
  .p-products-category__body {
    padding: 0.8rem 0;
  }
}
.p-products-category__body .c-more {
  display: inline-block;
  background-color: rgb(53, 63, 170);
  font-size: 1.2rem;
  color: #fff;
  font-family: "Jost", sans-serif;
  border-radius: 1000px;
  padding: 0 1rem 0.1rem 1.5rem;
  position: relative;
  top: 0.6rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767.98px) {
  .p-products-category__body .c-more {
    display: none;
  }
}
.p-products-category__body .c-more::before {
  content: "";
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  width: 0.5rem;
  height: 0.3rem;
  background-color: #fff;
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
          clip-path: polygon(0 0, 50% 100%, 100% 0);
  left: 0.8rem;
}
.p-products-category__body .c-ttl {
  font-size: 1.8rem;
  color: #000;
  line-height: 1.2;
  font-weight: 700;
  transition: 0.3s opacity;
}
@media screen and (max-width: 767.98px) {
  .p-products-category__body .c-ttl {
    text-align: center;
    font-size: 1.4rem;
  }
}
.p-products-category__body .p-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 767.98px) {
  .p-products-category__body .p-flex {
    display: block;
  }
}

/* ----------------------------------------------------------------------------------------------------
*	pickup
* --------------------------------------------------------------------------------------------------*/
.p-pickup {
  background-color: #f6f6f7;
  padding-block: 9.2rem 12rem;
}
@media screen and (max-width: 767.98px) {
  .p-pickup {
    padding-block: 6rem 8rem;
  }
}
.p-pickup .l-cards {
  margin-top: 4rem;
}
@media screen and (max-width: 767.98px) {
  .p-pickup .l-cards {
    margin-top: 3rem;
  }
}
.p-pickup .l-card__item.-tag .p-tags {
  font-weight: 600;
}
.p-pickup .l-card__item.-tag .p-tags li {
  padding: 1rem;
}
@media screen and (max-width: 767.98px) {
  .p-pickup .l-card__item.-tag .p-tags li {
    font-size: 1.2rem;
    padding: 0.8rem;
  }
}

.c-pickup__ttl {
  display: flex;
  align-items: center;
  -moz-column-gap: 1.2rem;
       column-gap: 1.2rem;
  position: relative;
  padding-left: 7rem;
}
@media screen and (max-width: 767.98px) {
  .c-pickup__ttl {
    display: block;
    padding-left: 3.5rem;
  }
}
.c-pickup__ttl::before {
  content: "";
  position: absolute;
  top: 1em;
  left: 0;
  width: 6rem;
  height: 1px;
  background-color: rgb(199, 199, 199);
}
@media screen and (max-width: 767.98px) {
  .c-pickup__ttl::before {
    width: 2rem;
    top: 50%;
    transform: translateY(-50%);
  }
}
.c-pickup__ttl .u-en {
  color: rgb(53, 63, 170);
  font-size: 3.2rem;
  font-weight: 600;
}
@media screen and (max-width: 767.98px) {
  .c-pickup__ttl .u-en {
    display: block;
  }
}
.c-pickup__ttl .u-jp {
  font-size: 1.6rem;
  font-weight: 700;
  color: #000;
}
@media screen and (max-width: 767.98px) {
  .c-pickup__ttl .u-jp {
    display: block;
    margin-top: 0.5rem;
  }
}

.p-category__block {
  padding-block: 10rem;
  position: relative;
}
.p-category__block:last-of-type::after {
  display: none;
}
@media screen and (max-width: 767.98px) {
  .p-category__block {
    padding-block: 6rem 8rem;
  }
}
.p-category__block::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 120rem;
  height: 1px;
  background-color: rgb(199, 199, 199);
  margin-inline: auto;
}
@media screen and (max-width: 767.98px) {
  .p-category__block::after {
    max-width: inherit;
    margin-inline: 0;
  }
}
.p-category__block .l-cards {
  margin-top: 6rem;
}
@media screen and (max-width: 767.98px) {
  .p-category__block .l-cards {
    margin-top: 3rem;
  }
}

.c-category__ttl {
  color: rgb(53, 63, 170);
  font-size: 4rem;
  font-weight: 700;
  position: relative;
  padding-left: 4.2rem;
}
@media screen and (max-width: 767.98px) {
  .c-category__ttl {
    font-size: 2.4rem;
    padding-left: 2.6rem;
  }
}
.c-category__ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 2.2rem;
  height: 2.3rem;
  background: url(../img/common/icn_cat.svg) no-repeat center/contain;
}
@media screen and (max-width: 767.98px) {
  .c-category__ttl::before {
    width: 1.8rem;
    height: 1.8rem;
    top: 61%;
  }
}

/* ----------------------------------------------------------------------------------------------------
*	製品名
* --------------------------------------------------------------------------------------------------*/
.p-kana__list {
  display: flex;
  max-width: 120rem;
  margin-inline: auto;
  -moz-column-gap: 1.2rem;
       column-gap: 1.2rem;
}
@media screen and (max-width: 767.98px) {
  .p-kana__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    padding-inline: 3rem;
  }
}
.p-kana__list a {
  width: 9.8rem;
  height: 4.4rem;
  padding-block: 1rem;
  font-size: 2rem;
  color: rgb(88, 88, 92);
  text-decoration: none;
  display: block;
  border: 1px solid rgb(199, 199, 199);
  text-align: center;
  font-weight: 700;
  transition: 0.3s border-color, 0.3s color;
}
@media (any-hover: hover) {
  .p-kana__list a[href]:hover {
    border-color: rgb(53, 63, 170);
    color: rgb(53, 63, 170);
  }
}
@media screen and (max-width: 767.98px) {
  .p-kana__list a {
    width: 9.7rem;
    height: 4rem;
    font-size: 1.6rem;
  }
}
.p-kana__list a:not([href]) {
  color: rgb(159, 159, 159);
  background-color: rgb(225, 225, 225);
}
.p-kana__list a span {
  font-size: 1.4rem;
  display: inline-block;
  margin-left: 0.2em;
  font-weight: 500;
}
@media screen and (max-width: 767.98px) {
  .p-kana__list a span {
    font-size: 1.2rem;
  }
}

.p-product__block {
  position: relative;
  padding-block: 8rem;
}
.p-product__block.-blank dd {
  padding-top: 0;
}
@media screen and (max-width: 767.98px) {
  .p-product__block.-blank dd {
    padding-top: 2rem;
  }
}
.p-product__block.-blank .c-txt {
  font-size: 1.6rem;
  color: rgb(159, 159, 159);
}
@media screen and (max-width: 767.98px) {
  .p-product__block.-blank .c-txt {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 767.98px) {
  .p-product__block {
    padding-block: 5rem 0;
  }
}
.p-product__block::after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  width: 100%;
  max-width: 120rem;
  height: 1px;
  background-color: rgb(199, 199, 199);
  bottom: 0;
  margin-inline: auto;
}
@media screen and (max-width: 767.98px) {
  .p-product__block::after {
    display: none;
  }
}

.p-product-name__block {
  display: flex;
}
@media screen and (max-width: 767.98px) {
  .p-product-name__block {
    display: block;
  }
  .p-product-name__block:not(:has(.p-category)) {
    padding-bottom: 1rem;
    border-bottom: 1px solid rgb(199, 199, 199);
  }
}
.p-product-name__block dt {
  font-size: 3rem;
  font-weight: 700;
  color: rgb(53, 63, 170);
  width: 13rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767.98px) {
  .p-product-name__block dt {
    width: auto;
  }
}
.p-product-name__block dd {
  padding-top: 0.6rem;
  flex-grow: 1;
}

.p-product-name__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 4rem;
}
@media screen and (max-width: 767.98px) {
  .p-product-name__list {
    display: block;
  }
}

@media screen and (max-width: 767.98px) {
  .p-product-name__item {
    border-bottom: 1px solid rgb(199, 199, 199);
  }
}
.p-product-name__item a {
  color: currentColor;
  text-decoration: none;
  position: relative;
  padding-left: 4.6rem;
  display: block;
  font-size: 1.8rem;
  line-height: 1.25;
}
@media screen and (max-width: 767.98px) {
  .p-product-name__item a {
    padding-left: 0;
    font-size: 1.5rem;
  }
}
@media (any-hover: hover) {
  .p-product-name__item a:hover .p-product-name__inner p::after {
    transform: scale(1);
    transform-origin: left center;
  }
}
.p-product-name__item a::before {
  content: "";
  position: absolute;
  top: 0.45rem;
  left: 0;
  background: url(../img/common/icn_nav.svg) no-repeat center/contain;
  width: 3.2rem;
  height: 1.6rem;
}
@media screen and (max-width: 767.98px) {
  .p-product-name__item a::before {
    display: none;
  }
}

.p-product-name__inner {
  min-height: 6rem;
  /* 
  display: grid;
  grid-template-columns: calc(70% - 1.6rem) 30%; */
  display: flex;
  -moz-column-gap: 7.6rem;
       column-gap: 7.6rem;
  align-content: flex-start;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 767.98px) {
  .p-product-name__inner {
    display: block;
    min-height: inherit;
    padding-block: 1.6rem;
  }
}
.p-product-name__inner p {
  font-size: 1.8rem;
  line-height: 1.25;
  position: relative;
  display: inline-block;
  color: #000;
}
@media screen and (max-width: 767.98px) {
  .p-product-name__inner p {
    font-size: 1.5rem;
  }
}
.p-product-name__inner p::after {
  transition: 0.3s transform;
  content: "";
  position: absolute;
  height: 1px;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #000;
  transform: scale(0, 1);
  transform-origin: right center;
}
.p-product-name__inner .p-category {
  color: #9699b5;
  font-size: 1.4rem;
  position: relative;
  top: 0.5rem;
  width: 6em;
  flex-shrink: 0;
}
@media screen and (max-width: 767.98px) {
  .p-product-name__inner .p-category {
    top: 0;
    margin-top: 0.8rem;
    width: auto;
    font-size: 1.3rem;
    display: flex;
    gap: 0.5rem 1rem;
    flex-wrap: wrap;
  }
}
.p-product-name__inner .p-category__item {
  line-height: 1.1;
}
.p-product-name__inner .p-category__item + .p-category__item {
  margin-top: 0.5rem;
}
@media screen and (max-width: 767.98px) {
  .p-product-name__inner .p-category__item + .p-category__item {
    margin-top: 0;
  }
}

/* ----------------------------------------------------------------------------------------------------
*	詳細ページ
* --------------------------------------------------------------------------------------------------*/
.p-product-detail {
  padding-top: 9rem;
  padding-bottom: 12rem;
}
@media screen and (max-width: 767.98px) {
  .p-product-detail {
    padding-bottom: 8rem;
  }
}

.p-single__content,
.p-series__content {
  max-width: 120rem;
  margin-inline: auto;
}
@media screen and (max-width: 767.98px) {
  .p-single__content,
.p-series__content {
    margin-inline: inherit;
    padding-inline: 3rem;
  }
}

.p-single .p-product__detail-heading {
  padding-bottom: 3rem;
}
@media screen and (max-width: 767.98px) {
  .p-single .p-product__detail-heading {
    padding-bottom: 4rem;
    position: relative;
  }
  .p-single .p-product__detail-heading::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 1px;
    background-color: rgb(199, 199, 199);
    bottom: 0;
  }
}
@media screen and (max-width: 767.98px) {
  .p-single .l-breadcrumb {
    margin-top: 2rem;
  }
}

.p-product__detail-heading {
  display: flex;
  -moz-column-gap: 6rem;
       column-gap: 6rem;
  align-items: flex-start;
}
@media screen and (max-width: 767.98px) {
  .p-product__detail-heading {
    display: block;
  }
}

.p-product__left-block {
  width: 64rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767.98px) {
  .p-product__left-block {
    width: auto;
    padding-bottom: 2rem;
  }
}
.p-product__left-block .p-img-wrapper {
  aspect-ratio: 640/460;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 767.98px) {
  .p-product__left-block .p-img-wrapper {
    width: 100%;
    margin-bottom: 0;
  }
}
.p-product__left-block .p-img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 767.98px) {
  .p-product__right-block {
    padding-top: 2rem;
  }
}
.p-product__right-block .p-category-code__wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1rem 2.4rem;
  margin-bottom: 3.6rem;
}
@media screen and (max-width: 767.98px) {
  .p-product__right-block .p-category-code__wrapper {
    gap: 0.8rem 1.2rem;
    margin-bottom: 2.4rem;
  }
}
.p-product__right-block .c-code {
  color: rgb(159, 159, 159);
  font-size: 1.4rem;
  line-height: 1;
}
@media screen and (max-width: 767.98px) {
  .p-product__right-block .c-code {
    font-size: 1.3rem;
  }
}
.p-product__right-block .c-txt {
  font-size: 1.6rem;
  color: #141414;
}
@media screen and (max-width: 767.98px) {
  .p-product__right-block .c-txt {
    font-size: 1.4rem;
  }
}
.p-product__right-block .p-product__info {
  margin-top: 3.6rem;
  background-color: #f6f6f7;
  padding: 1.6rem 2rem;
}
@media screen and (max-width: 767.98px) {
  .p-product__right-block .p-product__info {
    margin-top: 2.4rem;
  }
}
.p-product__right-block .p-product__info p {
  font-size: 1.4rem;
  line-height: 1.4;
}
.p-product__right-block .p-product__info p + p {
  margin-top: 0.6rem;
}
.p-product__right-block .p-btn-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.6rem;
  margin-top: 3.6rem;
}
@media screen and (max-width: 767.98px) {
  .p-product__right-block .p-btn-wrapper {
    margin-top: 3.4rem;
    flex-direction: column;
    align-items: center;
    row-gap: 1.2rem;
  }
}
.p-product__right-block .p-btn-wrapper .c-btn {
  min-width: 22rem;
  max-width: 100%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767.98px) {
  .p-product__right-block .p-btn-wrapper .c-btn {
    min-width: 28rem;
  }
}

.p-product__name {
  font-size: 3.6rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
  font-weight: 700;
}
@media screen and (max-width: 767.98px) {
  .p-product__name {
    font-size: 2rem;
  }
}
.p-product__name + .c-txt {
  margin-top: 1.6rem;
}
@media screen and (max-width: 767.98px) {
  .p-product__name + .c-txt {
    margin-top: 1.2rem;
  }
}

.p-product__detail-block {
  padding-block: 8rem 6rem;
}
@media screen and (max-width: 767.98px) {
  .p-product__detail-block {
    padding-block: 3rem;
  }
  .p-product__detail-block:has(.l-cards) {
    padding-top: 6rem;
  }
}
.p-product__detail-block .c-cathc {
  font-size: 2rem;
  font-weight: 700;
  background-color: #eaeff2;
  padding: 2rem 1.6rem;
  line-height: 1.25;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767.98px) {
  .p-product__detail-block .c-cathc {
    font-size: 1.7rem;
    margin-bottom: 2.4rem;
  }
}
.p-product__detail-block .l-cards {
  margin-block: 6rem 10rem;
}
@media screen and (max-width: 767.98px) {
  .p-product__detail-block .l-cards {
    margin-block: 4rem 2rem;
  }
}

.p-product__block-ttl {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.25;
  color: rgb(53, 63, 170);
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767.98px) {
  .p-product__block-ttl {
    font-size: 3rem;
  }
}
.p-product__block-ttl::after {
  content: "";
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  left: calc(100% + 2.4rem);
  width: 7.2rem;
  height: 1px;
  background-color: rgb(199, 199, 199);
}
@media screen and (max-width: 767.98px) {
  .p-product__block-ttl::after {
    width: 4.8rem;
    left: calc(100% + 1.2rem);
  }
}

@media screen and (max-width: 767.98px) {
  .p-product__detail-body {
    padding-top: 3rem;
  }
}

.p-product__detail-inner {
  padding-top: 4rem;
}
.p-product__detail-inner > *:first-child {
  margin-top: 0;
}
.p-product__detail-inner p,
.p-product__detail-inner li {
  font-size: 1.6rem;
  line-height: 2;
  color: #000;
}
@media screen and (max-width: 767.98px) {
  .p-product__detail-inner p,
.p-product__detail-inner li {
    font-size: 1.4rem;
    line-height: 1.75;
  }
}
.p-product__detail-inner .p-txt-img-content {
  display: flex;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
@media screen and (max-width: 767.98px) {
  .p-product__detail-inner .p-txt-img-content {
    display: block;
  }
}
.p-product__detail-inner .p-txt-img-content .c-thumb {
  margin-left: auto;
  max-width: 32rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767.98px) {
  .p-product__detail-inner .p-txt-img-content .c-thumb {
    margin: 5rem 0 0;
    max-width: inherit;
  }
}
.p-product__detail-inner + .p-product__detail-inner {
  margin-top: 2rem;
}

@media screen and (max-width: 767.98px) {
  .p-table__scroll {
    overflow: auto;
    margin-inline: calc(50% - 50vw);
  }
}

.p-table-wrapper {
  margin: 2rem 0 0;
}
@media screen and (max-width: 767.98px) {
  .p-table-wrapper {
    margin-top: 0;
    padding-inline: 3rem;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}
.p-table-wrapper table {
  outline: 1px solid #000;
  outline-offset: -1px;
  max-width: 100%;
  font-size: 1.4rem;
  line-height: 1.25;
  border-radius: 0.5rem;
  overflow: hidden;
  border-collapse: collapse;
}
@media screen and (max-width: 767.98px) {
  .p-table-wrapper table {
    width: 91rem;
  }
}
.p-table-wrapper table th,
.p-table-wrapper table td {
  border: 1px solid rgb(199, 199, 199);
  vertical-align: middle;
  height: 100%;
  height: 6rem;
}
.p-table-wrapper table th {
  font-size: 1.6rem;
  text-align: center;
  background-color: #e7ebef;
  color: #000;
  padding: 1.4rem 1.1rem;
}
@media screen and (max-width: 767.98px) {
  .p-table-wrapper table th {
    padding: 1rem 1.2rem;
  }
}
.p-table-wrapper table td {
  font-size: 1.4rem;
  padding: 1.4rem 1.1rem;
}
@media screen and (max-width: 767.98px) {
  .p-table-wrapper table td {
    padding: 1.8rem 1.2rem;
  }
}
.p-table-wrapper table .c-code {
  text-align: center;
  color: rgb(53, 63, 170);
  background-color: #f6f6f7;
  width: 20rem;
  font-weight: 700;
}
@media screen and (max-width: 767.98px) {
  .p-table-wrapper table .c-code {
    width: 15rem;
  }
}
.p-table-wrapper table .u-bold {
  font-weight: 700;
}
.p-table-wrapper table .u-small {
  width: 12rem;
}
@media screen and (max-width: 767.98px) {
  .p-table-wrapper table .u-small {
    width: 8rem;
  }
}
.p-table-wrapper table .u-center {
  text-align: center;
}
.p-table-wrapper table .c-use,
.p-table-wrapper table .c-name {
  width: 36rem;
}
@media screen and (max-width: 767.98px) {
  .p-table-wrapper table .c-use,
.p-table-wrapper table .c-name {
    width: 30rem;
  }
}

.p-btn-content {
  border-top: 1px solid rgb(199, 199, 199);
  border-bottom: 1px solid rgb(199, 199, 199);
  padding-block: 4rem;
  display: flex;
  justify-content: center;
  gap: 1rem 1.6rem;
}
.p-btn-content .c-btn {
  min-height: 6rem;
  max-width: 28rem;
}
@media screen and (max-width: 767.98px) {
  .p-btn-content .c-btn {
    max-width: inherit;
  }
}
@media screen and (max-width: 767.98px) {
  .p-btn-content {
    margin-block: 3rem 0;
    padding-block: 3rem;
    flex-direction: column;
    row-gap: 1.2rem;
    align-items: center;
  }
}

.p-product__news {
  padding-top: 18rem;
  position: relative;
}
@media screen and (max-width: 767.98px) {
  .p-product__news {
    padding-top: 0;
  }
}
.p-product__news .p-scroll-txt {
  position: relative;
  padding-block: 0 3rem;
}
@media screen and (max-width: 767.98px) {
  .p-product__news .p-scroll-txt {
    padding-block: 0 6rem;
  }
}

.p-product__news-content {
  max-width: 144rem;
  padding-right: 20rem;
  margin-inline: auto;
}
@media screen and (max-width: 767.98px) {
  .p-product__news-content {
    padding-inline: 3rem;
  }
}
.p-product__news-content .l-news__category-list {
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  padding-right: 1rem;
}
.p-product__news-content .l-news__list {
  margin-top: 0;
}
.p-product__news-content .c-section__ttl .u-en {
  font-size: 2rem;
  color: rgb(53, 63, 170);
  display: block;
  font-weight: 600;
}
@media screen and (max-width: 767.98px) {
  .p-product__news-content .c-section__ttl .u-en {
    font-size: 1.8rem;
  }
}
.p-product__news-content .c-section__ttl .u-jp {
  font-size: 5rem;
  margin-top: 2rem;
  display: block;
  font-weight: 700;
}
@media screen and (max-width: 767.98px) {
  .p-product__news-content .c-section__ttl .u-jp {
    font-size: 2.8rem;
    margin-top: 1rem;
  }
}

.p-ttl-category-wrapper {
  display: flex;
  padding-left: 12rem;
  -moz-column-gap: 6rem;
       column-gap: 6rem;
}
@media screen and (max-width: 767.98px) {
  .p-ttl-category-wrapper {
    display: block;
    padding-left: 0;
  }
}
.p-ttl-category-wrapper .l-news__category-list {
  margin-left: auto;
  margin-top: auto;
  padding-bottom: 1rem;
}
@media screen and (max-width: 767.98px) {
  .p-ttl-category-wrapper .l-news__category-list {
    margin: 5rem 0 0;
    padding-bottom: 0;
  }
}
.p-ttl-category-wrapper .c-section__ttl {
  flex-shrink: 0;
}

.p-news__list-wrapper {
  padding: 10rem 12rem;
  background-color: #f6f6f7;
  position: relative;
  margin-top: 5.7rem;
}
@media screen and (max-width: 767.98px) {
  .p-news__list-wrapper {
    background-color: transparent;
    padding: 0;
    margin-top: 8rem;
  }
}
.p-news__list-wrapper::after {
  content: "";
  position: absolute;
  right: 50%;
  width: 100vw;
  background-color: #f6f6f7;
  height: 100%;
  top: 0;
  z-index: -1;
}
@media screen and (max-width: 767.98px) {
  .p-news__list-wrapper::after {
    display: none;
  }
}
.p-news__list-wrapper .p-btn-wrapper {
  margin-top: 4rem;
  max-width: 24rem;
}
@media screen and (max-width: 767.98px) {
  .p-news__list-wrapper .p-btn-wrapper {
    max-width: inherit;
  }
  .p-news__list-wrapper .p-btn-wrapper .c-btn {
    min-height: 6rem;
  }
}

/* ----------------------------------------------------------------------------------------------------
*	シリーズ
* --------------------------------------------------------------------------------------------------*/
.p-series .p-product__detail-container {
  border-top: 1px solid rgb(159, 159, 159);
}
@media screen and (max-width: 767.98px) {
  .p-series .p-product__detail-container {
    border-color: rgb(199, 199, 199);
  }
  .p-series .p-product__detail-container + .p-product__detail-container {
    border-top: none;
  }
}

.p-product__detail-container {
  padding-block: 7rem 6rem;
}
@media screen and (max-width: 767.98px) {
  .p-product__detail-container {
    padding-block: 3rem 0;
  }
}
.p-product__detail-container + .p-product__detail-container {
  margin-top: 6rem;
}
@media screen and (max-width: 767.98px) {
  .p-product__detail-container + .p-product__detail-container {
    margin-top: 0;
  }
}

.p-series__heading {
  max-width: 120rem;
  margin-inline: auto;
  gap: 2.4rem 6rem;
  display: grid;
  grid-auto-columns: 1fr;
  grid-auto-rows: 1fr;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  grid-template-areas: "left right" "breadcrumb breadcrumb";
}
@media screen and (max-width: 767.98px) {
  .p-series__heading {
    display: block;
    padding-bottom: 3.6rem;
  }
}
@media screen and (max-width: 767.98px) {
  .p-series__heading .l-breadcrumb {
    margin-top: 3.6rem;
  }
}

.p-series__left-block {
  width: 64rem;
  flex-shrink: 0;
  grid-area: left;
}
@media screen and (max-width: 767.98px) {
  .p-series__left-block {
    width: auto;
  }
}
.p-series__left-block .p-img-wrapper {
  aspect-ratio: 640/460;
  overflow: hidden;
  border-radius: 1rem;
}
.p-series__left-block .p-img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-series__right-block {
  grid-area: right;
  display: grid;
  place-content: center;
}
@media screen and (max-width: 767.98px) {
  .p-series__right-block {
    padding-top: 3rem;
  }
}
.p-series__right-block .p-category__list {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 3.6rem;
}
@media screen and (max-width: 767.98px) {
  .p-series__right-block .p-category__list {
    margin-bottom: 1.2rem;
  }
}

.p-series__name {
  font-size: 4.6rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
@media screen and (max-width: 767.98px) {
  .p-series__name {
    font-size: 2.9rem;
  }
}

.p-series__heading .p-category__list,
.p-product__detail-heading .p-category__list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  font-size: 1.6rem;
  color: rgb(53, 63, 170);
  font-weight: 700;
  position: relative;
  padding-left: 2.3rem;
  gap: 0.5rem 1.5rem;
}
@media screen and (max-width: 767.98px) {
  .p-series__heading .p-category__list,
.p-product__detail-heading .p-category__list {
    font-size: 1.3rem;
    padding-left: 1.8rem;
  }
}
.p-series__heading .p-category__list::before,
.p-product__detail-heading .p-category__list::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.1rem;
  background: url(../img/common/icn_cat.svg) no-repeat center/contain;
  width: 1.6rem;
  height: 1.6rem;
}
@media screen and (max-width: 767.98px) {
  .p-series__heading .p-category__list::before,
.p-product__detail-heading .p-category__list::before {
    width: 1.3rem;
    height: 1.3rem;
  }
}

.p-series__body {
  padding-top: 12rem;
}
@media screen and (max-width: 767.98px) {
  .p-series__body {
    padding-top: 4rem;
  }
}

.p-series__ttl {
  text-align: center;
  margin-bottom: 10rem;
}
@media screen and (max-width: 767.98px) {
  .p-series__ttl {
    border-top: 1px solid rgb(199, 199, 199);
    padding-top: 4rem;
    margin-bottom: 4rem;
  }
}
.p-series__ttl .u-en {
  font-size: 8rem;
  font-weight: 600;
  color: rgb(53, 63, 170);
  display: block;
}
@media screen and (max-width: 767.98px) {
  .p-series__ttl .u-en {
    font-size: 4rem;
  }
}
.p-series__ttl .u-jp {
  display: block;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767.98px) {
  .p-series__ttl .u-jp {
    font-size: 1.8rem;
    margin-top: 1.2rem;
  }
}

@media (any-hover: hover) {
  .l-header__nav-item:hover > a,
.l-header__nav-item:hover > span {
    color: rgb(159, 159, 159);
  }
}
/*# sourceMappingURL=products.css.map */