@charset "UTF-8";
/* =============================================================
    商品詳細
============================================================= */
/* .detailAreaAll
------------------------------------------------------------- */
.detailAreaAll {
  display: flex;
  flex-direction: column;
  row-gap: 2.5rem;
  width: var(--container-fluid);
  margin-top: 2.5rem;
}
.detailAreaAll img {
  max-width: 100%;
  height: auto;
}
@media screen and (min-width: 768px), print {
  .detailAreaAll {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    -moz-column-gap: 6rem;
         column-gap: 6rem;
    max-width: 104rem;
    margin: 4.7rem auto 0;
    padding: 0 2rem;
  }
}

/* .detailLeft
------------------------------------------------------------- */
@media screen and (min-width: 768px), print {
  .detailLeft {
    position: -webkit-sticky;
    position: sticky;
    top: calc(var(--header-height) + 20px);
    flex: 0 0 44rem;
  }
}

.mainImageBlock {
  position: relative;
  width: 32rem;
  margin: 0 auto;
}
.mainImageBlock .icon01 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: var(--zindex-front);
}
.mainImageBlock .block-favorite {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: var(--zindex-front);
}
.mainImageBlock .productDetail_slider-item {
  width: 100%;
  opacity: 0;
}
.mainImageBlock .productDetail_slider-item.slick-initialized {
  opacity: 1;
}
@media screen and (min-width: 768px), print {
  .mainImageBlock {
    width: 44rem;
  }
  .mainImageBlock .icon01 {
    position: absolute;
    top: 2rem;
    left: 2rem;
    z-index: var(--zindex-front);
  }
  .mainImageBlock .block-favorite {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: var(--zindex-front);
  }
}

.thumbnailImageBlock {
  margin-top: 2.3rem;
}
.thumbnailImageBlock .mainImageThumbnail_block {
  overflow-x: auto;
  display: flex;
  align-items: center;
  -moz-column-gap: 0.9rem;
       column-gap: 0.9rem;
  width: 100%;
  padding: 0 1.5rem;
}
.thumbnailImageBlock .productDetail_thumbnail-item {
  flex: 0 0 7rem;
  transition: opacity 0.3s;
  cursor: pointer;
}
.thumbnailImageBlock .thumbnail-current {
  border: 1px solid var(--color-main);
}
@media (any-hover: hover) {
  .thumbnailImageBlock .productDetail_thumbnail-item:hover {
    opacity: 0.8;
  }
}
@media screen and (min-width: 768px), print {
  .thumbnailImageBlock {
    margin-top: 1rem;
  }
  .thumbnailImageBlock .mainImageThumbnail_block {
    flex-wrap: wrap;
    gap: 1rem;
    padding: 0;
  }
  .thumbnailImageBlock .productDetail_thumbnail-item {
    flex: 0 0 8rem;
  }
}

/* .detailRightArea
------------------------------------------------------------- */
.detailRightArea {
  width: var(--container-fluid);
  padding: 0 1.75rem;
}
.detailRightArea .sales-period {
  display: grid;
  place-items: center;
  padding: 1.2rem 1.4rem;
  font-size: 1.2rem;
  text-align: center;
  color: #6c9067;
  line-height: 1.7;
  background-color: #f1f5f1;
}
.detailRightArea .cIcon__block {
  margin-top: 2.5rem;
}
.detailRightArea .productName {
  margin-top: 2.1rem;
  font-size: 1.6rem;
  font-weight: var(--font-weight-regular);
  line-height: 2;
}
.detailRightArea .productId {
  margin-top: 1.6rem;
  font-size: 1.2rem;
  color: #b5b5b5;
}
.detailRightArea .text-catchcopy {
  margin-top: 2.35rem;
  padding: 1.9rem 2rem;
  background-color: var(--color-white-grey);
  border: 1px solid #ebebeb;
}
.detailRightArea .text-catchcopy p {
  font-size: 1.3rem;
  color: var(--color-text);
  line-height: 1.85;
}
.detailRightArea .cart-box__wrap {
  margin-top: 2.8rem;
}
.detailRightArea .cart-box__inner {
  display: flex;
  flex-direction: column;
  row-gap: 2.3rem;
}
.detailRightArea .cart-box__inner .productCart {
  flex: 1 1 100%;
}
.detailRightArea .cart-box__inner .addCart {
  display: flex;
  justify-content: space-between;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.detailRightArea .cart-box__inner .addCart > * {
  flex: 1 1 50%;
}
.detailRightArea .cart-box__inner .cart_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 1.3rem;
       column-gap: 1.3rem;
  width: 100%;
  height: 5rem;
  font-size: 1.5rem;
  text-align: center;
  line-height: 1.2;
  border-radius: 0.4rem;
  transition: all var(--transition-default);
}
.detailRightArea .cart-box__inner .cart_btn svg {
  width: 2.2rem;
  height: auto;
}
.detailRightArea .cart-box__inner .cart_btn--bag {
  color: var(--color-white);
  background-color: var(--color-main);
  border: 1px solid var(--color-main);
}
.detailRightArea .cart-box__inner .cart_btn--bag path {
  stroke: var(--color-dark-grey);
}
.detailRightArea .cart-box__inner .cart_btn--request {
  color: var(--color-text);
  background-color: #e2e2e2;
}
.detailRightArea .cart-box__quantity {
  display: flex;
  align-items: center;
  -moz-column-gap: 1.4rem;
       column-gap: 1.4rem;
  flex-shrink: 0;
  font-size: 1.3rem;
}
.detailRightArea .cart-box__quantity-input {
  width: 10rem;
  height: 5rem;
  padding: 1rem;
  font: inherit;
  font-family: var(--font-opensans);
  font-size: 1.4rem;
  text-align: center;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.03em;
  border: 1px solid #bfbfbf;
  border-radius: 0.4rem;
}
.detailRightArea .cart-box__error-block {
  display: flex;
  flex-direction: column;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  margin-top: 1rem;
}
.detailRightArea .cart-box__error-block .error {
  font: inherit;
  font-size: 1.3rem;
  line-height: 1.4;
  color: var(--color-error);
}
.detailRightArea .productCart .requested_text {
  margin-top: 0.5rem;
  font-size: 1.4rem;
  line-height: 1.6;
}
.detailRightArea .productCart-sns {
  margin-top: 2.5rem;
}
.detailRightArea .block-sns {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 1.82rem;
       column-gap: 1.82rem;
}
.detailRightArea .block-sns__title {
  font: var(--font-weight-regular) 1.3rem/2 var(--font-opensans);
}
.detailRightArea .block-sns__media {
  display: flex;
  align-items: center;
  -moz-column-gap: 1.75rem;
       column-gap: 1.75rem;
}
.detailRightArea .block-sns__item a {
  display: grid;
  place-items: center;
  width: 2rem;
  aspect-ratio: 1;
  transition: opacity 0.3s;
}
.detailRightArea .arrival-mail-form {
  margin-top: 5.7rem;
  background-color: #fcfcfc;
}
@media (any-hover: hover) {
  .detailRightArea .cart-box__inner .cart_btn--bag:hover {
    color: var(--color-main);
    background-color: var(--color-white);
    border: 1px solid var(--color-gray-darker);
  }
  .detailRightArea .cart-box__inner .cart_btn--bag:hover path {
    stroke: var(--color-white);
  }
  .detailRightArea .cart-box__inner .cart_btn--request:hover {
    color: var(--color-white);
    background-color: var(--color-main);
  }
  .detailRightArea .block-sns__item a:hover {
    opacity: 0.8;
  }
}
@media screen and (min-width: 768px), print {
  .detailRightArea {
    flex: 0 0 50rem;
    padding: 0;
  }
  .detailRightArea .sales-period {
    padding: 0.7rem 1rem;
  }
  .detailRightArea .cIcon__block {
    margin-top: 3rem;
  }
  .detailRightArea .text-catchcopy {
    margin-top: 3rem;
  }
  .detailRightArea .cart-box__wrap {
    margin-top: 4rem;
  }
  .detailRightArea .cart-box__inner {
    flex-direction: row;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
  .detailRightArea .cart-box .cart_btn {
    width: 33.9rem;
  }
  .detailRightArea .block-sns {
    justify-content: flex-end;
  }
  .detailRightArea .arrival-mail-form {
    margin-top: 3.5rem;
  }
}

/* .product-incidental
------------------------------------------------------------- */
.product-incidental {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
  margin-top: 2.5rem;
  padding: 2rem;
  background-color: #fcfcfc;
  border: 1px solid #ebebeb;
}
.product-incidental__item {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
  color: var(--color-text);
}
.product-incidental__heading {
  font-size: 1.3rem;
  font-weight: var(--font-weight-medium);
  line-height: 2;
  letter-spacing: 0.03em;
}
.product-incidental__form {
  /* display: flex;
  flex-wrap: wrap;
  gap: 1.6rem; */
  font-size: 1.2rem;
  color: var(--color-text);
  line-height: 1.4;
  letter-spacing: 0.03em;
}
.product-incidental__select, .product-incidental__textarea {
  font: inherit;
  color: inherit;
  background-color: var(--color-white);
  border: 1px solid var(--color-gray-darker);
  border-radius: 0.4rem;
}
.product-incidental__checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
}
.product-incidental__checkbox-item input[type=checkbox] {
  display: none;
  margin: 0;
}
.product-incidental__checkbox-item label {
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  font-size: 1.4rem;
  line-height: 2;
  word-break: break-word;
}
.product-incidental__checkbox-item label::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 1.8rem;
  height: 1.8rem;
  background: url(../Contents/ImagesPkg/product/icon_check_gray.svg) center/100% no-repeat;
  transform: translateY(0.6rem);
}
.product-incidental__checkbox-item input[type=checkbox]:checked + label::before {
  background: url(../Contents/ImagesPkg/product/icon_check_dark.svg);
}
.product-incidental__select {
  width: 100%;
  height: 3.8rem;
  padding: 1rem 2rem 1rem 1.4rem;
  background: url(../Contents/ImagesPkg/product/icon_select_arrow.svg) center right 1.45rem/0.7414rem 0.4414rem no-repeat var(--color-white);
}
.product-incidental__textarea {
  width: 100%;
  min-height: 13rem;
  padding: 1rem 1.4rem;
  line-height: 2;
  resize: vertical;
}
.product-incidental__error {
  flex: 0 0 100%;
  color: var(--color-error);
  line-height: 1.6;
}
.product-incidental__guide {
  font-size: 1.4rem;
  line-height: 2;
  text-decoration: underline;
}
@media screen and (min-width: 768px), print {
  .product-incidental {
    margin-top: 3rem;
    padding: 3rem 3rem 3.5rem;
  }
  .product-incidental__select {
    width: 38rem;
  }
}

/* .productPrice
------------------------------------------------------------- */
.productPrice__body {
  margin-top: 2.1rem;
}
.productPrice__inner {
  display: flex;
  flex-direction: column;
  row-gap: 1.4rem;
  font: var(--font-weight-semibold) 2.2rem/1.18 var(--font-opensans);
  color: var(--color-text);
  letter-spacing: 0.03em;
}
.productPrice__price {
  display: flex;
  flex-direction: column;
  row-gap: 1.4rem;
}
.productPrice__price--member .price-member, .productPrice__price--fixedpurchase .price-normal {
  color: var(--color-black);
}
.productPrice__price--sale, .productPrice__price--special {
  align-items: flex-end;
  margin-right: auto;
}
.productPrice__price .price-first {
  color: #aa8e44;
}
.productPrice__price .price-sale {
  color: var(--color-attention);
}
.productPrice__price .bracket,
.productPrice__price .tax {
  font-family: var(--font-notosans);
  font-weight: var(--font-weight-regular);
}
.productPrice__price .bracket {
  font-size: 1.4rem;
  line-height: 1.85;
  letter-spacing: 0.1em;
}
.productPrice__price .tax {
  font-size: 1.2rem;
  line-height: 2.16;
}
@media screen and (min-width: 768px), print {
  .productPrice__body {
    margin-top: 3.3rem;
  }
  .productPrice__inner {
    flex-direction: row;
    align-items: flex-end;
    -moz-column-gap: 5rem;
         column-gap: 5rem;
  }
  .productPrice__price--sale, .productPrice__price--special {
    flex-direction: row;
    align-items: center;
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
    margin-right: 0;
  }
}

/* .arrival-mail
------------------------------------------------------------- */
.arrival-mail__inner {
  margin-top: 5.7rem;
  padding: 3rem;
  background-color: #fcfcfc;
}
.arrival-mail__heading {
  font-size: 1.4rem;
  line-height: 1.85;
}
.arrival-mail__form {
  margin-top: 2rem;
}
.arrival-mail__form-heading {
  font-size: 1.4rem;
  line-height: 1.85;
}
.arrival-mail__form-attention {
  display: block;
  font-size: 1.2rem;
  color: var(--color-attention);
}
.arrival-mail__list {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}
.arrival-mail__item-inner {
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.arrival-mail__item input[type=checkbox] {
  display: none;
  margin: 0;
}
.arrival-mail__item label {
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  font-size: 1.4rem;
  line-height: 2;
  word-break: break-word;
}
.arrival-mail__item label::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 1.8rem;
  height: 1.8rem;
  background: url(../Contents/ImagesPkg/product/icon_check_gray.svg) center/100% no-repeat;
  transform: translateY(0.6rem);
}
.arrival-mail__item input[type=checkbox]:checked + label::before {
  background: url(../Contents/ImagesPkg/product/icon_check_dark.svg);
}
.arrival-mail__item--input {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}
.arrival-mail__item--input input[type=text] {
  width: 100%;
  height: 3.8rem;
  padding: 1rem;
  font-size: 1.2rem;
  border-radius: 0.4rem;
  background-color: var(--color-white);
  border: 1px solid var(--color-gray-darker);
}
.arrival-mail__error {
  font-size: 1.4rem;
  color: var(--color-error);
  line-height: 1.85;
}
.arrival-mail__btn {
  display: grid;
  place-items: center;
  width: 18rem;
  height: 4.5rem;
  margin-top: 1.5rem;
  font-size: 1.4rem;
  color: var(--color-white);
  background-color: var(--color-main);
  border: 1px solid var(--color-main);
  border-radius: 0.4rem;
  transition: all var(--transition-default);
}
.arrival-mail__completed {
  font-size: 1.4rem;
  line-height: 1.85;
}
@media (any-hover: hover) {
  .arrival-mail__btn:hover {
    color: var(--color-main);
    background-color: transparent;
    border: 1px solid var(--color-gray-darker);
  }
}
@media screen and (min-width: 768px), print {
  .arrival-mail__inner {
    margin-top: 3.5rem;
    padding-bottom: 4rem;
  }
}

/* VIEW MORE Module
------------------------------------------------------------- */
.js-viewmoreWrap .js-viewmoreBody {
  overflow: hidden;
  position: relative;
  height: auto;
  max-height: 200px; /* Default Value */
  font: inherit;
  transition: max-height 1s ease;
}
.js-viewmoreWrap .js-viewmoreBody:not(.js-viewmoreBody--disabled)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: var(--zindex-front);
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
  transition: opacity 1s ease;
  pointer-events: none;
}
.js-viewmoreWrap .js-viewmoreBody--open:not(.js-viewmoreBody--disabled)::after {
  opacity: 0;
}
.js-viewmoreWrap .js-viewmoreBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  width: 100%;
  margin-top: 1rem;
  font: var(--font-weight-regular) 1.4rem/1.85 var(--font-opensans);
  color: var(--color-text);
  text-align: center;
  background-color: unset;
  border: none;
}
.js-viewmoreWrap .js-viewmoreIcon {
  position: relative;
  display: block;
  width: 1rem;
  height: 1rem;
}
.js-viewmoreWrap .js-viewmoreIcon::before, .js-viewmoreWrap .js-viewmoreIcon::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 1px;
  margin: auto 0;
  background-color: currentColor;
}
.js-viewmoreWrap .js-viewmoreIcon::after {
  rotate: 90deg;
  transition: all 1s ease;
}
.js-viewmoreWrap .js-viewmoreBody--open + .js-viewmoreBtn .js-viewmoreIcon::after {
  rotate: 0deg;
}
@supports not (rotate: 90deg) {
  .js-viewmoreWrap .js-viewmoreIcon::after {
    transform: rotate(90deg);
  }
}
@supports not (rotate: 0deg) {
  .js-viewmoreWrap + .js-viewmoreBtn .js-viewmoreIcon::after {
    transform: rotate(0deg);
  }
}
@media (any-hover: hover) {
  .js-viewmoreWrap .js-viewmoreBtn:hover {
    cursor: pointer;
  }
}

/* .product-outline
------------------------------------------------------------- */
.product-outline {
  margin-top: 2.35rem;
}
.product-outline__text {
  font: var(--font-weight-regular) 1.3rem/1.85 var(--font-notosans);
  letter-spacing: 0.1em;
}
.product-outline a {
  text-decoration: underline;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px), print {
  .product-outline {
    margin-top: 3rem;
  }
}
@media (any-hover: hover) {
  .product-outline a {
    opacity: 0.8;
  }
}

/* .product-section
------------------------------------------------------------- */
.product-section__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  -moz-column-gap: 3.6rem;
       column-gap: 3.6rem;
  margin-top: 6rem;
  font-size: 1.7rem;
  font-weight: var(--font-weight-medium);
}
.product-section__title::after {
  content: "";
  display: block;
  flex: 1 1 100%;
  height: 1px;
  background-color: var(--color-dark-grey);
}
.product-section__title span {
  flex: 0 0 auto;
}
.product-section__body {
  margin-top: 3.5rem;
}

/* .product-info
------------------------------------------------------------- */
.product-info {
  margin-top: 5rem;
}
.product-info__inner--detail2 {
  position: relative;
  margin-top: 5.2rem;
  padding: 1.7rem 2rem 3rem;
  border: 1px solid #ffd9d9;
}
.product-info__title--detail2 {
  position: absolute;
  top: 0;
  left: 2.1rem;
  z-index: var(--zindex-front);
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  padding: 0.2rem 2.3rem;
  font-size: 1.4rem;
  color: var(--color-warning);
  font-weight: var(--font-weight-medium);
  background-color: var(--color-white);
}
.product-info__body a {
  text-decoration: underline;
  transition: opacity 0.3s;
}
.product-info__body--detail1 {
  font-size: 1.4rem;
  line-height: 1.85;
}
.product-info__body--detail2 {
  font-size: 1.3rem;
  line-height: 1.9;
}
@media screen and (min-width: 768px), print {
  .product-info {
    margin-top: 4.4rem;
  }
  .product-info__inner--detail2 {
    margin-top: 6.8rem;
  }
}
@media (any-hover: hover) {
  .product-info__body a {
    text-decoration: underline;
    transition: opacity 0.3s;
  }
}

/* .product-review
------------------------------------------------------------- */
.c-review-btn-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.c-review-btn-wrap:not(:first-child) {
  margin-top: 3rem;
}

.c-review-btn {
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  line-height: 1.4;
  transition: all var(--transition-default);
}
.c-review-btn--write {
  position: relative;
  width: 20rem;
  height: 4.2rem;
  color: var(--color-main);
  background-color: transparent;
  border: 1px solid var(--color-gray-darker);
}
.c-review-btn--write::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  width: 0.5rem;
  height: 0.8rem;
  background: url(../Contents/ImagesPkg/common/icn_arw.svg) center/contain no-repeat;
}
.c-review-btn--rounded {
  width: 18rem;
  height: 4.5rem;
  border-radius: 0.4rem;
}
.c-review-btn--back {
  color: var(--color-text);
  background-color: #e2e2e2;
}
.c-review-btn--submit {
  color: var(--color-white);
  background-color: var(--color-main);
  border: 1px solid var(--color-main);
}

.product-review-list__body {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}
.product-review-list__viewmore {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  width: 100%;
  margin-top: 2rem;
  font: var(--font-weight-regular) 1.4rem/1.85 var(--font-opensans);
  color: var(--color-text);
  text-align: center;
  background-color: unset;
  border: none;
}
.product-review-list__viewmore::before {
  content: "";
  position: absolute;
  top: 0;
  z-index: var(--zindex-front);
  transform: translateY(-100%);
  display: block;
  width: 100%;
  height: 20rem;
  background: linear-gradient(rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
  pointer-events: none;
}
.product-review-list__viewmore-icon {
  position: relative;
  display: block;
  width: 1rem;
  height: 1rem;
}
.product-review-list__viewmore-icon::before, .product-review-list__viewmore-icon::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 1px;
  margin: auto 0;
  background-color: currentColor;
}
.product-review-list__viewmore-icon::after {
  rotate: 90deg;
}
.product-review-list .c-pager {
  margin-top: 3rem;
}
.product-review-list .c-pager__main {
  margin: 0;
}

.product-review-item {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
  padding: 3rem;
  background-color: var(--color-white-grey);
}
.product-review-item__author, .product-review-item__title {
  font-size: 1.4rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.85;
  letter-spacing: 0.03em;
}
.product-review-item__author {
  display: flex;
  align-items: center;
  -moz-column-gap: 1.05rem;
       column-gap: 1.05rem;
}
.product-review-item__author::before {
  content: "";
  display: block;
  width: 1.675rem;
  height: 1.65rem;
  flex-shrink: 0;
  background: url(../Contents/ImagesPkg/common/icn_user.svg) center/100% no-repeat;
}
.product-review-item__rate {
  width: 10.656rem;
}
.product-review-item__comment {
  font-size: 1.3rem;
  line-height: 2;
  letter-spacing: 0.03em;
}

.product-review-form input,
.product-review-form select,
.product-review-form textarea {
  padding: 1rem 1.4rem;
  font-family: var(--font-notosans);
  font-size: 1.3rem;
  color: var(--color-main);
  line-height: 1.3;
  letter-spacing: 0.03em;
  background-color: var(--color-white);
  border: 1px solid var(--color-gray-darker);
  border-radius: 0.4rem;
}
.product-review-form input {
  width: 100%;
  height: 3.8rem;
}
.product-review-form__inner {
  padding: 3.5rem 3rem 3rem;
  background-color: var(--color-white-grey);
}
.product-review-form__attention {
  font-size: 1.3rem;
  color: var(--color-attention);
  line-height: 2;
}
.product-review-form__editArea {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
  margin-top: 2rem;
}
.product-review-form__item {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.product-review-form__item--rate select {
  width: 17rem;
  height: 3.8rem;
  padding-right: 2.36rem;
  color: #aa8e44;
  background: url(../Contents/ImagesPkg/product/icon_review_select_arrow.svg) center right 1.23rem/0.7881rem 0.449rem no-repeat var(--color-white);
}
.product-review-form__item--comment textarea {
  width: 100%;
  min-height: 19rem;
  resize: vertical;
}
.product-review-form dt {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}
.product-review-form dd {
  width: 100%;
}
.product-review-form__required {
  color: var(--color-attention);
}
.product-review-form__alert span {
  font-size: 1.3rem;
  color: var(--color-error) !important;
  line-height: 2;
}

.product-review-complete__text {
  font-size: 1.3rem;
  line-height: 2;
  letter-spacing: 0.03em;
}

@supports not (rotate: 90deg) {
  .product-review-list__viewmore-icon::after {
    transform: rotate(90deg);
  }
}
@media (any-hover: hover) {
  .c-review-btn--write:hover {
    color: var(--color-white);
    background-color: var(--color-main);
    border-color: var(--color-main);
  }
  .c-review-btn--write:hover::after {
    background-image: url(../Contents/ImagesPkg/common/icn_arw_white.svg);
  }
  .c-review-btn--back:hover {
    color: var(--color-white);
    background-color: var(--color-main);
  }
  .c-review-btn--submit:hover {
    color: var(--color-main);
    background-color: transparent;
    border: 1px solid var(--color-gray-darker);
  }
}
@media screen and (min-width: 768px), print {
  .c-review-btn-wrap {
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
  .c-review-btn-wrap:not(:first-child) {
    margin-top: 4rem;
  }
  .product-review-list .c-pager {
    margin-top: 4.6rem;
  }
  .product-review-list .c-pager__main {
    margin: 0;
  }
  .product-review-form__inner {
    padding: 3.3rem 2.5rem 4rem;
  }
  .product-review-form__editArea {
    margin-top: 3rem;
  }
  .product-review-form__item {
    flex-direction: row;
  }
  .product-review-form dt {
    flex: 0 0 10.5rem;
  }
}
/* .product-lp
------------------------------------------------------------- */
.product-lp {
  width: var(--container-fluid);
  padding: 0 1.5rem;
  margin: 8rem auto 0;
}
.product-lp .js-viewmoreBody {
  max-height: 500px;
  font-size: 1.4rem;
  line-height: 1.85;
}
.product-lp .js-viewmoreBody img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.product-lp a {
  text-decoration: underline;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px), print {
  .product-lp {
    max-width: 104rem;
    padding: 0 2rem;
  }
}
@media (any-hover: hover) {
  .product-lp a {
    opacity: 0.8;
  }
}

/* アップセル/クロスセル/関連商品
------------------------------------------------------------- */
.recommend-area-wrap {
  margin-top: 10rem;
}

.recommend-area {
  padding: 4.1rem 0 4.7rem;
}
.recommend-area:nth-of-type(odd) {
  background-color: #fcfcfc;
}
.recommend-area__inner {
  width: var(--container-fluid);
  padding: 0 1.5rem;
}
.recommend-area__title {
  font-size: 2rem;
  color: var(--color-text);
  font-weight: var(--font-weight-regular);
  text-align: center;
  line-height: 1.45;
}
.recommend-area__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem 1.1rem;
  margin-top: 2rem;
}

@media screen and (min-width: 768px), print {
  .recommend-area__inner {
    max-width: 124rem;
    margin: 0 auto;
    padding: 0 2rem;
  }
  .recommend-area__title {
    font-size: 2.1rem;
  }
  .recommend-area__grid {
    -moz-column-gap: 4rem;
         column-gap: 4rem;
    margin-top: 3.7rem;
  }
}
/* .history-wrap
------------------------------------------------------------- */
.history-wrap {
  padding: 5.4rem 0 5rem;
  border-top: 1px solid #f0f0f0;
}

.history-inner {
  width: var(--container-fluid);
  padding: 0 1.75rem;
}
.history-inner .title {
  font-size: 2rem;
  color: var(--color-text);
  text-align: center;
  line-height: 1.45;
}
.history-inner .productCheckList {
  margin-top: 2.2rem;
}
.history-inner .productInfoBlock {
  overflow-x: auto;
  display: flex;
  align-items: center;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
  padding-bottom: 1rem;
}
.history-inner .productInfoBlock .thumnail {
  flex: 0 0 12rem;
}
.history-inner .productInfoBlock .thumnail a {
  position: relative;
  display: block;
  transition: opacity 0.3s;
}
.history-inner .productInfoBlock .thumnail img {
  max-width: 100%;
  height: auto;
}
.history-inner .productInfoBlock .thumnail .c-soldout {
  position: absolute;
  top: 0;
  left: 0;
  z-index: var(--zindex-front);
}

@media (any-hover: hover) {
  .history-inner .productInfoBlock .thumnail a:hover {
    opacity: 0.8;
  }
}
@media screen and (min-width: 768px), print {
  .history-wrap {
    padding: 8rem 0 5.75rem;
    border-top: none;
  }
  .history-inner {
    max-width: 124rem;
    margin: 0 auto;
    padding: 0 2rem;
  }
  .history-inner .title {
    font-size: 2.1rem;
  }
  .history-inner .productCheckList {
    margin-top: 3.65rem;
  }
  .history-inner .productInfoBlock {
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }
  .history-inner .productInfoBlock .thumnail {
    flex: 0 0 17.5rem;
  }
}