@charset "UTF-8";
.p-productsWrap {
  margin-top: 12.5rem;
}
@media screen and (max-width: 767px) {
  .p-productsWrap {
    margin-top: 9.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-productsCategoryButton {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .p-productsCategoryButton {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 15.5rem;
    height: 5.5rem;
    border: 1px solid var(--black01);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-weight: 700;
    font-size: 2.1rem;
  }
}

.p-productsCategoryList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.5rem 3.6rem;
}
@media screen and (max-width: 767px) {
  .p-productsCategoryList {
    display: block;
    margin-top: 0.2rem;
  }
}

@media screen and (max-width: 767px) {
  .p-productsCategoryList__item {
    border-bottom: 1px solid var(--black01);
  }
}
.p-productsCategoryList__item a {
  position: relative;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1;
  padding-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .p-productsCategoryList__item a {
    display: block;
    font-size: 2.1rem;
    padding: 1.6rem 5.5rem;
  }
}
.p-productsCategoryList__item a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid var(--black01);
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
}
@media screen and (max-width: 767px) {
  .p-productsCategoryList__item a::before {
    content: none;
  }
}
@media (any-hover: hover) {
  .p-productsCategoryList__item a::before {
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .p-productsCategoryList__item a:hover::before {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
.p-productsCategoryList__item.is-current a::before {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.p-productsList {
  margin: 2.8rem auto 0;
  width: 108rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6.3rem 3rem;
}
@media screen and (max-width: 767px) {
  .p-productsList {
    margin: 6.5rem auto 0;
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 6.3rem 2.7rem;
  }
}

.p-productsListItem a {
  display: block;
}

.p-productsListItem__image {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.p-productsListItem__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (any-hover: hover) {
  .p-productsListItem__image img {
    -webkit-transition: scale 0.3s;
    transition: scale 0.3s;
  }
}
@media (any-hover: hover) {
  .p-productsListItem a:hover .p-productsListItem__image img {
    scale: 1.1 1.1;
  }
}

.p-productsListItem__name {
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.3333333333;
  margin-block: 1.5rem 0;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 0.5em;
}
@media screen and (max-width: 767px) {
  .p-productsListItem__name {
    font-size: 2.1rem;
    line-height: 1.3333333333;
    margin-block: 1.3rem 0;
  }
}
.p-productsListItem__name span:first-child {
  width: 100%;
}

.p-productsListItem__price {
  color: var(--gray02);
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.8888888889;
  margin-block: 0;
}
@media screen and (max-width: 767px) {
  .p-productsListItem__price {
    font-size: 2.1rem;
    line-height: 1.3333333333;
    margin-block: 1rem 0;
  }
}

.p-productsPager {
  margin-top: 8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3rem;
  padding-left: 0;
}
.p-productsPager li {
  list-style: none;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-productsPager li {
    font-size: 2.6rem;
  }
}
.p-productsPager li a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1;
  padding: 1rem;
}
@media screen and (max-width: 767px) {
  .p-productsPager li a {
    font-size: 2.6rem;
  }
}
.p-productsPager li a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 2px;
  width: calc(100% - 2px);
  height: 1px;
  border-bottom: 1px solid var(--black01);
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
}
@media (any-hover: hover) {
  .p-productsPager li a::before {
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .p-productsPager li a:hover::before {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}

.p-productsPager__current {
  padding: 1rem;
}

@media screen and (min-width: 768px) {
  body:has(.p-productsDetailWrap) {
    --footerMargin: 17.7rem;
  }
}
@media screen and (max-width: 767px) {
  body:has(.p-productsDetailWrap) {
    --footerMargin: 19rem;
  }
}

.p-productsDetailWrap {
  margin-top: 25.5rem;
}
@media screen and (max-width: 767px) {
  .p-productsDetailWrap {
    margin-top: 15rem;
    overflow: hidden;
  }
}

.p-productsDetail {
  width: 90rem;
  margin-inline: auto;
  display: flow-root;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 2.125;
  letter-spacing: 0.04em;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
}
@media screen and (max-width: 767px) {
  .p-productsDetail {
    width: 100%;
    font-size: 2.5rem;
    line-height: 1.8;
  }
}
.p-productsDetail h1,
.p-productsDetail h2,
.p-productsDetail h3,
.p-productsDetail h4,
.p-productsDetail h5,
.p-productsDetail h6,
.p-productsDetail li {
  line-height: 1.5;
}
.p-productsDetail > * {
  margin-block: 2em;
}
@media screen and (max-width: 767px) {
  .p-productsDetail > * {
    margin-block: 1.6em;
  }
}
.p-productsDetail .wp-block-image:has(img) {
  margin-block: 13rem;
}
@media screen and (max-width: 767px) {
  .p-productsDetail .wp-block-image:has(img) {
    margin-block: 9.2rem;
  }
  .p-productsDetail .wp-block-image:has(img).size-full, .p-productsDetail .wp-block-image:has(img).size-large {
    margin-inline: calc(var(--wrapPaddingHorizontal) * -1);
  }
  .p-productsDetail .wp-block-image:has(img).vertical {
    max-width: 60.2rem;
    margin-inline: auto;
    text-align: center;
  }
  .p-productsDetail .wp-block-image:has(img).vertical img {
    max-width: 100%;
  }
}
.p-productsDetail figure a {
  display: block;
}
@media screen and (min-width: 768px) {
  .p-productsDetail figure img {
    max-width: 100%;
    width: auto;
  }
}
.p-productsDetail .wp-block-embed iframe {
  aspect-ratio: 16/9;
  height: auto;
}
.p-productsDetail .aligncenter {
  display: block;
  margin: 0 auto;
}
.p-productsDetail figure.aligncenter {
  margin: 2rem auto;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-productsDetail figure.aligncenter {
    display: block;
  }
}
.p-productsDetail .alignleft {
  float: left;
  margin: 0.5em 3em 2em 0;
}
@media screen and (max-width: 767px) {
  .p-productsDetail .alignleft {
    float: none;
    margin: 0;
    width: 100%;
  }
  .p-productsDetail .alignleft.wp-block-embed {
    max-width: inherit !important;
  }
}
.p-productsDetail .alignright {
  float: right;
  margin: 0.5em 0 2em 3em;
}
@media screen and (max-width: 767px) {
  .p-productsDetail .alignright {
    float: none;
    margin: 0;
    width: 100%;
  }
  .p-productsDetail .alignright.wp-block-embed {
    max-width: inherit !important;
  }
}
.p-productsDetail a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
@media (any-hover: hover) {
  .p-productsDetail a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .p-productsDetail a:hover {
    opacity: 0.6;
  }
}
.p-productsDetail blockquote {
  margin: 2em 0;
  padding: 2em;
  font-style: italic;
}
.p-productsDetail blockquote p {
  margin: 0;
}
.p-productsDetail .p-productsDetail__category {
  font-family: "Noto Serif JP", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.3;
  margin-block: 0;
}
.p-productsDetail .p-productsDetail__name {
  font-family: "Noto Serif JP", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1.3;
  margin-block: 0 4.5rem;
}
@media screen and (max-width: 767px) {
  .p-productsDetail .p-productsDetail__name {
    font-size: 2.5rem;
    margin-block: 0 8.5rem;
  }
}
.p-productsDetail > *:first-child {
  margin-top: 0 !important;
}
.p-productsDetail > *:last-child {
  margin-bottom: 0 !important;
}

.p-productsDetailInfo {
  width: 90rem;
  margin: 11.5rem auto 0;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
}
@media screen and (max-width: 767px) {
  .p-productsDetailInfo {
    width: 100%;
    margin: 14.2rem auto 0;
  }
}

.p-productsDetailInfo__name {
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1.4166666667;
  margin-block: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 0.5em;
}
@media screen and (max-width: 767px) {
  .p-productsDetailInfo__name {
    font-size: 3.2rem;
  }
}

.p-productsDetailInfo__price {
  font-size: 2.4rem;
  line-height: 1.4166666667;
  margin-block: 1rem 0;
}
@media screen and (max-width: 767px) {
  .p-productsDetailInfo__price {
    font-size: 2.5rem;
    margin-block: 1.4rem 0;
  }
}

.p-productsDetailInfo__tax {
  font-weight: 500;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .p-productsDetailInfo__tax {
    font-size: 2.5rem;
  }
}

.p-productsDetailInfo__button {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-productsDetailInfo__button {
    margin-top: 9.5rem;
  }
}
.p-productsDetailInfo__button a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.9rem;
  width: 30rem;
  height: 3.8rem;
  background: var(--black01);
  color: white;
  font-weight: 500;
  font-size: 2.1rem;
}
@media screen and (max-width: 767px) {
  .p-productsDetailInfo__button a {
    gap: 0.9rem;
    width: 63rem;
    height: 8rem;
    font-size: 4rem;
    margin-inline: auto;
    padding-bottom: 0.2rem;
  }
}
.p-productsDetailInfo__button a::after {
  content: "";
  width: 0.6rem;
  aspect-ratio: 6/12;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 7.5 16"><path fill="%23ffffff" d="M.5,16c-.12,0-.23-.04-.33-.12-.21-.18-.23-.5-.05-.71l6.22-7.17L.12.83C-.06.62-.04.3.17.12.38-.06.7-.04.88.17l6.5,7.5c.16.19.16.47,0,.66L.88,15.83c-.1.11-.24.17-.38.17Z" /></svg>') no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .p-productsDetailInfo__button a::after {
    width: 1.2rem;
    translate: 0 0.4rem;
  }
}

.p-productsDetailInfoItem {
  margin-block: 4.1rem 0;
  border-top: 1px solid var(--black01);
  border-bottom: 1px solid var(--black01);
  padding-block: 2rem;
}
@media screen and (max-width: 767px) {
  .p-productsDetailInfoItem {
    margin-block: 9.5rem 0;
    padding-block: 4rem;
  }
}

.p-productsDetailInfoItem__title {
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 1.875;
  margin-block: 0;
}
@media screen and (max-width: 767px) {
  .p-productsDetailInfoItem__title {
    font-size: 2.5rem;
    line-height: 1.52;
  }
}
.p-productsDetailInfoItem__title::before {
  content: "■";
}

.p-productsDetailInfoItem__body {
  display: grid;
  grid-template-columns: 100%;
  gap: 1em;
}
.p-productsDetailInfoItem__body + .p-productsDetailInfoItem__title {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-productsDetailInfoItem__body + .p-productsDetailInfoItem__title {
    margin-top: 3.8rem;
  }
}

.p-productsDetailInfo__text {
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 1.875;
  margin-block: 0;
}
@media screen and (max-width: 767px) {
  .p-productsDetailInfo__text {
    font-size: 2.5rem;
    line-height: 1.52;
  }
}

.p-productsDetailInfoItemSpec {
  margin-block: 0;
}

.p-productsDetailInfoItemSpec__grid {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 3.3rem;
}
@media screen and (max-width: 767px) {
  .p-productsDetailInfoItemSpec__grid {
    grid-template-columns: 12rem 1fr;
    gap: 5.3rem;
  }
}

.p-productsDetailInfoItemSpec__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 1.875;
}
@media screen and (max-width: 767px) {
  .p-productsDetailInfoItemSpec__title {
    font-size: 2.5rem;
    line-height: 1.52;
  }
}