@charset "UTF-8";
.p-goods_list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px 2%;
}
@media screen and (max-width: 960px) {
  .p-goods_list {
    gap: 30px 4%;
  }
}
.p-goods_list__item {
  width: 32%;
}
@media screen and (max-width: 960px) {
  .p-goods_list__item {
    width: 48%;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-goods_list__item:hover .p-goods_list__img {
    opacity: 0.5;
  }
  .p-goods_list__item:hover .p-goods_list__img figure::after {
    opacity: 1;
  }
  .p-goods_list__item:hover .p-goods_list__name {
    -webkit-animation: flash 0.1s steps(1) 3;
            animation: flash 0.1s steps(1) 3;
  }
}
.p-goods_list__img {
  position: relative;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
  background-color: #fff;
  cursor: pointer;
  -webkit-transition: opacity 0.8s var(--ease_out);
  transition: opacity 0.8s var(--ease_out);
}
.p-goods_list__img figure {
  display: block;
  position: absolute;
  top: 0;
  left: 0%;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: opacity 0.8s var(--ease_out);
  transition: opacity 0.8s var(--ease_out);
}
.p-goods_list__img figure::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(148, 253, 249, 0.5);
  opacity: 0;
  -webkit-transition: opacity 0.8s var(--ease_out);
  transition: opacity 0.8s var(--ease_out);
  z-index: 1;
}
.p-goods_list__name {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.4em;
  color: var(--color-white);
  font-weight: 400;
}
@media screen and (max-width: 960px) {
  .p-goods_list__name {
    font-size: 1.2rem;
  }
}

.c-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 40px auto 0;
}
.c-pagination_num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-goods_detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .p-goods_detail {
    display: block;
  }
}
.p-goods_detail__img {
  width: 47.5%;
}

@media screen and (max-width: 767px) {
  .p-goods_detail__img {
    width: 100%;
  }
}
.p-goods_detail__img--main {
  position: relative;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
  background-color: #fff;
  cursor: pointer;
}

.p-goods_detail__img--main figure {
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

.p-goods_detail__img--main.is-hide {
  pointer-events: none;
}

.p-goods_detail__img--main.is-hide figure {
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

@media screen and (max-width: 767px) {
  .p-goods_detail__img--main::before {
    width: 20px;
    height: 20px;
  }
}
.p-goods_detail__img--thumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.p-goods_detail__img--thumb.--one {
  opacity: 0;
  pointer-events: none;
  height: 0;
}

.p-goods_detail__img--thumb_item {
  opacity: 0.7;
  position: relative;
  width: 32%;
  margin-left: 2%;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  background: #fff;
  display: block;
  position: relative;
  z-index: 0;
  overflow: hidden;
  -webkit-mask: url(../img/top/btn_kv_1.png) no-repeat center/100% 100%;
  mask: url(../img/top/btn_kv_1.png) no-repeat center/100% 100%;
}

.p-goods_detail__img--thumb_item.is-current {
  opacity: 1;
  cursor: default;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.p-goods_detail__img--thumb_item:nth-child(4n+1) {
  margin-left: 0;
}

.p-goods_detail__img--thumb_item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.p-goods_detail__img--thumb_inner {
  position: relative;
  width: 100%;
  padding-top: 40%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.p-goods_detail__img--thumb_inner figure {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}

.p-goods_detail__info {
  width: 52.5%;
  padding-left: 36px;
}
@media screen and (max-width: 960px) {
  .p-goods_detail__info {
    width: 90%;
    display: block;
    position: relative;
    margin: 25px auto 0;
    padding: 0;
  }
}
.p-goods_detail__info--btn {
  width: 30rem;
  display: block;
  position: relative;
  margin-top: 4.2rem;
}
@media screen and (max-width: 960px) {
  .p-goods_detail__info--btn {
    width: 22rem;
    margin: 2rem auto 0;
  }
}

.p-goods_detail__info--name {
  display: block;
  position: relative;
  font-size: 2.8rem;
  line-height: 1.3;
  letter-spacing: 0.15rem;
  color: var(--color-white);
  font-weight: 400;
}

.p-goods_detail__info--description {
  display: block;
  position: relative;
  margin-top: 2.7rem;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.06rem;
  font-weight: 400;
}

.p-goods_detail__info--description a {
  color: var(--color-text-head);
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .p-goods_detail__info--name {
    font-size: 17px;
    line-height: 1.4em;
  }
  .p-goods_detail__info--description {
    margin-top: 15px;
    font-size: 12px;
    line-height: 1.4em;
    letter-spacing: normal;
  }
  .p-goods_detail__info--description a {
    color: var(--color-text-head);
  }
}
.c-pagination_back {
  color: var(--color-text-head);
  font-size: 25px;
  line-height: 1em;
  font-family: var(--font-en);
  margin-top: 6px;
}

.c-pagination_back a {
  color: var(--color-text-head);
  -webkit-transition: all 0.3s cubic-bezier(0.5, 1, 0.89, 1);
  transition: all 0.3s cubic-bezier(0.5, 1, 0.89, 1);
}

.c-pagination_back a:hover {
  opacity: 0.7;
  -webkit-transition: all 0.3s cubic-bezier(0.5, 1, 0.89, 1);
  transition: all 0.3s cubic-bezier(0.5, 1, 0.89, 1);
}

@media screen and (max-width: 767px) {
  .c-pagination_back {
    font-size: 22px;
  }
  .c-pagination_back a {
    padding: 3px 12px 6px;
    color: var(--color-text-head);
  }
}
.m-modal .m-modal_img {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 80px 0;
}

@media screen and (max-width: 767px) {
  .m-modal .m-modal_img {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .m-modal .m-modal__content {
    width: 100%;
  }
  .m-modal .m-modal__close-btn {
    top: 20px;
  }
}
.c-pagination_arrow.is-disable {
  visibility: hidden;
  pointer-events: none;
}

.p-goods_none {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-goods_none {
    text-align: center;
    font-size: 13px;
  }
}
.p-goods_cate {
  display: grid;
  grid-template-columns: repeat(6, 1fr); /* PC: 6列 */
  gap: 2.5rem;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 auto 10rem;
}
@media screen and (max-width: 960px) {
  .p-goods_cate {
    grid-template-columns: repeat(3, 1fr); /* 2行3列は維持 */
    gap: 0.8rem;              /* ← ここを詰めて列幅UP */
    padding: 0 1rem;          /* ← 端に寄りすぎ防止＆列幅安定 */
    margin: 0 auto 5rem;
  }
}
.p-goods_cate__list-item {
  width: auto;
  display: block;
  position: relative;
}


.p-goods_cate_btn {
  display: block;
  position: relative;
  z-index: 0;
}

.p-goods_cate_btn.is-current {
  pointer-events: none;
}

.p-goods_cate_btn__bg {
  width: 100%;
  display: block;
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
}

@media screen and (max-width: 960px) {
  .p-goods_cate_btn__bg {
    top: 0.3rem;
    left: 0.3rem;
  }
}
.p-goods_cate_btn__bg-path {
  width: 100%;
  fill: var(--color-btn-shadow);
  stroke-width: 1px;
  vector-effect: non-scaling-stroke;
}

.is-current .p-goods_cate_btn__bg-path {
  fill: rgba(119, 255, 249, 0.4);
}

.p-goods_cate_btn__base {
  width: 100%;
  display: block;
  position: relative;
}

.p-goods_cate_btn__base-path {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  fill: transparent;
  stroke: var(--color-white);
  stroke-width: 1px;
  vector-effect: non-scaling-stroke;
  -webkit-transition: fill 0.3s var(--ease_out);
  transition: fill 0.3s var(--ease_out);
}

@media screen and (max-width: 960px) {
  .p-goods_cate_btn__base-path {
    stroke-width: 1px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-goods_cate_btn:hover .p-goods_cate_btn__base-path {
    fill: rgba(0, 0, 0, 0.4);
  }
}
.p-goods_cate_btn__text {
  width: 90%;
  display: block;
  position: absolute;
  top: 53%;
  left: 50%;
  font-size: 1.5rem;
  text-align: center;
  color: var(--color-white);
  font-family: "Oswald", "Zen Kaku Gothic New", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media screen and (max-width: 960px) {
  .p-goods_cate_btn__text {
    white-space: nowrap;
    word-break: keep-all;
    font-size: 1.3rem;  /* 少し大きく */
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-goods_cate_btn:hover .p-goods_cate_btn__text {
    -webkit-animation: flash 0.1s steps(1) 3;
            animation: flash 0.1s steps(1) 3;
  }
}