@charset "UTF-8";
/*/////////////////////////////////////////
//  共通
/////////////////////////////////////////*/
.p-product__ttl {
  margin-top: 0;
  margin-bottom: 31px;
  line-height: 2;
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 0.03em;
  text-align: center;
}

/*/////////////////////////////////////////
//  レイアウト
/////////////////////////////////////////*/
#page-product-contents {
  padding-top: 40px;
}
@media screen and (max-width: 767px) {
  #page-product-contents {
    padding-top: 20px;
    margin-bottom: 40px;
  }
  #page-product-contents .c-breadcrumbs-list {
    padding-top: 0;
    margin-bottom: 18px;
  }
  #page-product-contents .p-product-img {
    margin-left: 0;
    margin-right: 0;
    width: auto;
  }
}

/*/////////////////////////////////////////
//  商品画像
/////////////////////////////////////////*/
@media screen and (max-width: 767px) {
  .p-product-img {
    margin-bottom: 35px;
  }
}

@media screen and (max-width: 1030px) {
  .u-overflow-slide {
    padding-bottom: 0;
  }
}
/*/////////////////////////////////////////
//  商品詳細
/////////////////////////////////////////*/
.p-product-info__ttl {
  margin: 0;
  font-size: 28px;
  line-height: 1.7857142857;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-product-info__ttl {
    font-size: 22px;
    line-height: 1.5454545455;
  }
}

@media screen and (max-width: 767px) {
  .p-product-price {
    margin-top: 8px;
  }
}
.p-product-price .p-product-price__sell {
  font-size: 20px;
}

.c-btn-cart {
  background: #f8cf4e;
  max-width: 358px;
  width: 100%;
  height: 70px;
  color: #000;
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  font-size: 20px;
  border-radius: 5px;
  font-weight: 500;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .c-btn-cart {
    font-size: 18px;
    height: 68px;
  }
}
.c-btn-cart:hover {
  background: rgb(247.0298913043, 200.347826087, 53.4701086957);
}

.p-product-link-list {
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .p-product-link-list .p-product-link-list__item {
    margin-bottom: 16px;
  }
}
.p-product-link-list .p-product-link-list__item a {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .p-product-link-list .p-product-link-list__item a {
    font-size: 12px;
  }
}
.p-product-link-list .p-product-link-list__item a:before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1px solid #000;
  border-top: 1px solid #000;
  transform: rotate(45deg);
}

/*/////////////////////////////////////////
//  数量ボタン
/////////////////////////////////////////*/
.qty-txt {
  font-size: 15px;
  font-weight: 500;
  display: inline-block;
  margin-right: 15px;
}

.c-qty {
  position: relative;
  display: flex;
  gap: 4px;
  align-items: center;
}

.c-qty > input[name=product_num] {
  box-sizing: border-box;
  width: 88px;
  height: 40px;
  border-radius: 6px;
  line-height: 36px;
  position: relative;
  z-index: 1;
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  padding-left: 1em;
}

.c-qty__btns {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.c-qty__btn {
  right: 6px;
  width: 28px;
  height: calc(50% - 4px);
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 2;
}

/* chevron  */
.c-qty__btn::before {
  content: "";
  width: 6px;
  height: 6px;
  display: block;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.c-qty__btn.is-up::before {
  border-right: 1px solid #000;
  border-top: 1px solid #000;
  transform: translate(-52%, 30%) rotate(-45deg); /* 上向き */
}

.c-qty__btn.is-down::before {
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  transform: translate(-50%, -50%) rotate(45deg); /* 下向き */
}

/*/////////////////////////////////////////
//  商品説明
/////////////////////////////////////////*/
.p-product-detail-area h2 {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .p-product-detail-area h2 {
    font-size: 20px;
  }
}
.p-product-detail-area h3 {
  font-size: 20px;
  line-height: 2;
  margin-top: 0;
  margin-top: 22px;
}
@media screen and (max-width: 767px) {
  .p-product-detail-area h3 {
    font-size: 18px;
  }
}
.p-product-detail-area p {
  font-size: 14px;
  line-height: 2;
}
.p-product-detail-area figure {
  margin: 0;
}
.p-product-detail-area .p-product-detail-txt {
  padding-bottom: 110px;
}
@media screen and (max-width: 767px) {
  .p-product-detail-area .p-product-detail-txt {
    padding-bottom: 32px;
  }
}
.p-product-detail-area .detail-box-wide {
  width: 100%;
  background: #f2f2f2;
  padding: 30px 0;
}
@media screen and (max-width: 767px) {
  .p-product-detail-area .detail-box-wide {
    padding: 40px 30px;
  }
}
.p-product-detail-area .detail-box-wide .txt-contents {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.p-product-detail-area .detail-box-wide .txt-contents h2 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 15px;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .p-product-detail-area .detail-box-wide .txt-contents h2 {
    font-size: 20px;
  }
}
.p-product-detail-area .detail-box-wide .txt-contents p {
  font-size: 14px;
  line-height: 1.8;
}
.p-product-detail-area .detail-box {
  max-width: 630px;
  width: 100%;
  margin: 50px auto 0;
}
@media screen and (max-width: 767px) {
  .p-product-detail-area .detail-box {
    padding: 0 30px;
  }
}
.p-product-detail-area .c-btn-detail {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  height: 54px;
  padding: 0 50px 0 20px;
  align-items: center;
  background: #fff;
  border-radius: 5px;
  border: 1px solid #2e6e8b;
  font-size: 14px;
  font-weight: 500;
  color: #2e6e8b;
  position: relative;
}
.p-product-detail-area .c-btn-detail:hover {
  text-decoration: none;
}
.p-product-detail-area .c-btn-detail:after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1px solid #2e6e8b;
  border-top: 1px solid #2e6e8b;
  transform: rotate(45deg);
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto 0;
}

/*/////////////////////////////////////////
//  商品情報テーブル
/////////////////////////////////////////*/
.product-info dl {
  width: 100%;
}
.product-info dl div {
  display: flex;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #c1c1c1;
}
@media screen and (max-width: 767px) {
  .product-info dl div {
    border-bottom: none;
    flex-direction: column;
    padding: 0;
  }
}
.product-info dl div:nth-of-type(1) {
  border-top: 1px solid #c1c1c1;
}
@media screen and (max-width: 767px) {
  .product-info dl div:nth-of-type(1) {
    border-top: none;
  }
}
.product-info dl div dt {
  width: 140px;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 2.1428571429;
  font-weight: 500;
  padding: 0 10px 0 10px;
}
@media screen and (max-width: 767px) {
  .product-info dl div dt {
    width: 100%;
    padding: 10px 15px;
    background: #f2f2f2;
  }
}
.product-info dl div dd {
  width: calc(100% - 140px);
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 2.1428571429;
  font-weight: 500;
  padding: 0 10px 0 10px;
}
@media screen and (max-width: 767px) {
  .product-info dl div dd {
    width: 100%;
    padding: 10px 15px;
  }
}

/*/////////////////////////////////////////
//  レビュー
/////////////////////////////////////////*/
.p-product-review {
  background: #f2f2f2;
  padding-top: 40px;
  padding-bottom: 52px;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-product-review {
    padding: 32px 20px;
  }
}
.p-product-review .review-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.p-product-review .p-product-review__item {
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  max-width: 880px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-product-review .p-product-review__item {
    padding: 20px;
  }
}
.p-product-review .p-product-review__item .review-header {
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid #c1c1c1;
  padding-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .p-product-review .p-product-review__item .review-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding-bottom: 5px;
  }
}
.p-product-review .p-product-review__item .p-product-review-info li {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .p-product-review .p-product-review__item .p-product-review-info li {
    font-size: 14px;
  }
}
.p-product-review .p-product-review__item .p-product-review-info__item.is-type {
  margin-right: 0;
}
.p-product-review .p-product-review__item .p-product-review__body {
  font-size: 14px;
  line-height: 2;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-product-review .p-product-review__item .p-product-review__body {
    padding-top: 0;
    padding-bottom: 20px;
  }
}
.p-product-review .p-product-review__item .p-product-review-reply {
  box-sizing: border-box;
  margin-top: 0;
  padding: 14px 20px;
  border-top: none;
  border-bottom: none;
  background: #f4f2ed;
}
@media screen and (max-width: 767px) {
  .p-product-review .p-product-review__item .p-product-review-reply {
    padding: 12px 15px;
  }
}
.p-product-review .p-product-review__item .p-product-review-reply__ttl {
  font-size: 15px;
  line-height: 1.8666666667;
}
@media screen and (max-width: 767px) {
  .p-product-review .p-product-review__item .p-product-review-reply__ttl {
    font-size: 14px;
  }
}
.p-product-review .p-product-review__item .p-product-review-reply__body {
  max-width: 690px;
  width: 100%;
  margin: 18px auto 0;
  font-size: 13px;
  line-height: 1.6923076923;
}
@media screen and (max-width: 767px) {
  .p-product-review .p-product-review__item .p-product-review-reply__body {
    margin: 12px auto 0;
    font-size: 12px;
  }
}
.p-product-review .review-btn .c-btn-detail {
  margin: 30px auto 0;
  padding-right: 30px;
  width: 258px;
  text-align: center;
  justify-content: center;
}

/*/////////////////////////////////////////
//  こちらの商品もおすすめ
/////////////////////////////////////////*/
.p-recommend {
  margin-top: 0;
  padding-top: 88px;
  padding-bottom: 118px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-recommend {
    padding-top: 52px;
    padding-bottom: 32px;
  }
}
.p-recommend .p-product__ttl {
  font-size: 22px;
}
.p-recommend:before {
  content: "";
  display: inline-block;
  width: 447.96px;
  height: 103.96px;
  position: absolute;
  bottom: 30px;
  left: 0;
  z-index: -1;
  background-image: url("../images/product/obj-rec-left.svg");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .p-recommend:before {
    width: 144px;
    height: 83px;
    left: 0;
    bottom: initial;
    top: 100px;
    background-size: cover;
    background-position: 100% center;
  }
}
.p-recommend:after {
  content: "";
  display: inline-block;
  width: 356px;
  height: 104.3px;
  position: absolute;
  top: 65px;
  right: 0;
  z-index: -1;
  background-image: url("../images/product/obj-rec-right.svg");
  background-size: cover;
  background-position: 100% center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .p-recommend:after {
    top: 14px;
    width: 177px;
    height: 77.93px;
    background-position: 0 center;
  }
}
.p-recommend .p-recommend-inner {
  position: relative;
}
.p-recommend .c-item-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 28px;
}
@media screen and (max-width: 767px) {
  .p-recommend .c-item-list {
    width: 100%;
    gap: 32px 16px;
    flex-wrap: wrap;
  }
}
.p-recommend .c-item-list__item {
  width: calc((100% - 84px) / 4);
  padding: 0;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-recommend .c-item-list__item {
    width: calc((100% - 16px) / 2);
  }
}
.p-recommend .c-item-list__img {
  margin-bottom: 20px;
}
.p-recommend .c-item-list__ttl {
  font-size: 16px;
  line-height: 1.625;
  color: #000000;
}
.p-recommend .c-item-list__price {
  font-size: 14px;
  color: #000000;
  text-align: right;
}

/*/////////////////////////////////////////
//  最近チェックした商品
/////////////////////////////////////////*/
.p-product-checked {
  padding-top: 60px;
  padding-bottom: 110px;
  border-top: 1px solid #c1c1c1;
}
@media screen and (max-width: 767px) {
  .p-product-checked {
    padding-top: 20px;
    padding-bottom: 48px;
  }
}