/******************************/
/* Product */
/******************************/
.p-product {
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .p-product {
    margin-bottom: 80px;
  }
}
/* form */
/*  
.p-product select {
  box-sizing: border-box;
  padding: 5px;
  height: 40px;
  border: 1px solid #bfbfbf;
  font-size: 16px;
}
.p-product input[type=text] {
  box-sizing: border-box;
  padding: 5px;
  height: 40px;
  border: 1px solid #bfbfbf;
  font-size: 16px;
}
*/
.p-product-main {
  display: flex;
  justify-content: space-between;
  gap: 100px;
}
@media screen and (max-width: 1030px) {
  .p-product-main {
    display: block;
  }
}
.p-product-img {
  width: 52%;
}
@media screen and (max-width: 1030px) {
  .p-product-img {
    width: auto;
    margin-bottom: 45px;
  }
}
@media screen and (max-width: 767px) {
  .p-product-img {
    width: auto;
    margin-bottom: 35px;
  }
}
.p-product-img__main {
  text-align: center;
}
@media screen and (max-width: 1030px) {
  .p-product-img__main {
    margin-left: auto;
    margin-right: auto;
    width: 530px;
  }
}
@media screen and (max-width: 767px) {
  .p-product-img__main {
    width: auto;
  }
}
.p-product-img__main-item {
  position: relative;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-product-img__main-item {
    text-align: center;
  }
}
.p-product-img__main-item:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.p-product-img__main-item a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-product-img__main-item img {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: auto !important;
  max-width: 100%;
  max-height: 100%;
  text-align: center;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .p-product-img__main-item img {
    border-radius: 5px;
  }
}
.p-product-thumb-list {
  display: flex;
  flex-wrap: wrap;
  margin-left: -4px;
  margin-right: -4px;
  margin-top: 8px;
}
@media screen and (max-width: 1030px) {
  .p-product-thumb-list {
    margin-left: 0;
    margin-right: 0;
    flex-wrap: nowrap;
  }
}
.p-product-thumb-list__item {
  box-sizing: border-box;
  margin-bottom: 8px;
  padding-left: 4px;
  padding-right: 4px;
  width: 25%;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media screen and (max-width: 1030px) {
  .p-product-thumb-list__item {
    margin-right: 5px;
    padding-left: 0;
    padding-right: 0;
    width: 90px;
  }
}
@media screen and (max-width: 767px) {
  .p-product-thumb-list__item {
    margin-right: 5px;
    width: 80px;
  }
}
.p-product-thumb-list__item:hover, .p-product-thumb-list__item.is-current {
  opacity: 0.7;
  cursor: pointer;
}
@media screen and (max-width: 1030px) {
  .p-product-thumb-list__item img {
    width: 90px;
  }
}
@media screen and (max-width: 767px) {
  .p-product-thumb-list__item img {
    width: 80px;
  }
}
.p-product-thumb-list__img {
  /* overflow用 */
  position: relative;
  text-align: center;
}
@media screen and (max-width: 1030px) {
  .p-product-thumb-list__img {
    width: 90px;
  }
}
@media screen and (max-width: 767px) {
  .p-product-thumb-list__img {
    width: 80px;
    text-align: center;
  }
}
.p-product-thumb-list__img:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.p-product-thumb-list__img img {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: auto !important;
  max-width: 100%;
  max-height: 100%;
  text-align: center;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .p-product-thumb-list__img img {
    border-radius: 5px;
  }
}

/* 商品画像 slider */
.p-product-img__main .slick-track {
  margin-left: 0;
  margin-right: 0;
}
.p-product-img__main .slick-prev, .p-product-img__main .slick-next {
  top: 50%;
  width: 30px;
  height: 30px;
  transition: all 0.4s ease;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-product-img__main .slick-prev, .p-product-img__main .slick-next {
    width: 45px;
    height: 45px;
  }
}
.p-product-img__main .slick-prev:before, .p-product-img__main .slick-next:before {
  content: "";
  position: absolute;
  top: 7px;
  left: 10px;
  width: 15px;
  height: 15px;
  border-left: 1px solid #000000;
  border-top: 1px solid #000000;
  transition: all 0.4s ease;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-product-img__main .slick-prev:before, .p-product-img__main .slick-next:before {
    top: 15px;
  }
}
.p-product-img__main .slick-prev {
  left: 15px;
}
@media screen and (max-width: 767px) {
  .p-product-img__main .slick-prev {
    left: 0px;
  }
}
.p-product-img__main .slick-prev:before {
  transform: rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .p-product-img__main .slick-prev:before {
    left: 17px;
  }
}
.p-product-img__main .slick-next {
  right: 15px;
}
@media screen and (max-width: 767px) {
  .p-product-img__main .slick-next {
    right: 0px;
  }
}
.p-product-img__main .slick-next:before {
  left: 4px;
  transform: rotate(135deg);
}
@media screen and (max-width: 767px) {
  .p-product-img__main .slick-next:before {
    left: 13px;
  }
}
/***** 商品情報 *****/
.p-product-info {
  width: 48%;
}
@media screen and (max-width: 1030px) {
  .p-product-info {
    width: auto;
  }
}
.p-product-info__ttl {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-product-info__ttl {
    font-size: 16px;
  }
}
.p-product-info__ttl img {
  vertical-align: middle;
}

.p-product-info__id {
  margin: 0 0 20px 0;
  font-size: 11px;
}
@media screen and (max-width: 767px) {
  .p-product-info__id {
    margin: 0 0 3px 0;
    font-size: 10px;
  }
}

/* 価格・定価 */
.p-product-price {
  margin-top: 25px;
  margin-bottom: 25px;
}
.p-product-price__sell {
  font-size: 25px;
  font-weight: 800;
}
.p-product-price__sell .yen {
  margin-left: 5px;
  font-size: 20px;
  font-weight: 500;
}
.p-product-price__sell .inc_tax {
  margin-left: 5px;
  color: #6B6B6B;
  font-size: 14px;
  font-weight: 500;
}
.p-product-price__normal {
  font-size: 14px;
}
.p-product-price__list-price {
  font-size: 14px;
}
@media screen and (max-width: 1030px) {
  .p-product-price {
    position: relative;
  }
}
@media screen and (max-width: 767px) {
  .p-product-price {
    margin-top: 10px;
    margin-bottom: 30px;
  }
  .p-product-price__normal {
    font-size: 12px;
  }
  .p-product-price__list-price {
    font-size: 12px;
  }
}

/* 簡易説明文 */
.p-product-info__point {
  border-radius: 10px;
  border: 1px solid #F6F6F6;
  background: #FFF;
}
.p-product-info__point_inner {
  padding: 30px;
}
.p-product-info__point_inner p {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 28px;
}
@media screen and (max-width: 767px) {
  .p-product-info__point_inner {
    padding: 24px 16px;
  }
  .p-product-info__point_inner p {
    font-size: 12px;
    line-height: 22px;
  }
}


/* オプション table */
.p-product-option-tbl {
  margin-top: 30px;
  margin-bottom: 30px;
  overflow-x: auto;
}
.p-product-option-tbl table {
  margin-bottom: 0;
  border-left: 0;
  border-right: 0;
  width: 100%;
}
.p-product-option-tbl table div {
  display: inline-block !important;
}
.p-product-option-tbl th {
  min-width: 100px;
}
.p-product-option-tbl th, .p-product-option-tbl td {
  padding: 12px 5px;
  border-top: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
  border-left: 0;
  text-align: center;
}
.p-product-option-tbl label {
  display: inline-block !important;
  margin-left: 5px;
  margin-bottom: 0;
}
.p-product-option-tbl input {
  margin-top: 0;
}

/* オプション select */
.p-product-option {
  margin-top: 25px;
  margin-bottom: 25px;
}
.p-product-option-select__box {
  position: relative;
}
.p-product-option-select__box:first-child {
  margin-bottom: 10px;
}
.p-product-option-select__box::after {
  position: absolute;
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-bottom: solid 1px #3A3A3A;
  border-right: solid 1px #3A3A3A;
  transform: rotate(45deg);
  top: 55%;
  right: 30px;
}
.p-product-option-select__ttl {
  font-size: 12px;
  font-weight: 700;
}
.product_cart_select {
  height: auto;
  width: 100%;
  border-radius: 10px;
  padding: 20px 50px 20px 15px;
  text-align: center;
  border: 2px solid #F6F6F6;
  -webkit-appearance: none;
  appearance: none;
  text-wrap: balance;
  line-height: 1.6;
  font-size: 15px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-product-option {
    margin-bottom: 9px;
  }
  .p-product-option-select {
    display: block;
  }
  .p-product-option-select__box:first-child {
    margin-bottom: 9px;
  }
  .p-product-option-select__box {
    width: 100%;
  }
  .p-product-option-select__box::after {
    width: 6px;
    height: 6px;
    top: 58%;
    right: 25px;
  }
  .product_cart_select {
    padding: 17px 15px;
    font-size: 13px;
    font-weight: 400;
    line-height: normal;
  }
}

/* 名入れ */
.p-product-name {
  margin-top: 30px;
  margin-bottom: 30px;
}
.p-product-name__box {
  margin-top: 15px;
}
.p-product-name__ttl {
  margin-bottom: 5px;
  font-weight: bold;
}
.p-product-name__body input {
  width: 100%;
}

/* 数量 */
.p-product-form {
  display: flex;
  gap: 9px;
}
.p-product-form-stock {
  margin-bottom: 30px;
  flex: 1;
}
.p-product-form-stock__ttl {
  display: none;
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: 700;
}
.p-product-form-stock__input {
  position: relative;
}
.p-product-form-stock__input input {
  width: 60px;
}
.p-product-form-stock__unit {
  margin-left: 10px;
  flex: 1;
}
.p-product-form-stock__stock {
  margin-left: 25px;
}
.product-detail__quantity-control {
  display: inline-flex;
  width: 32px;
  height: 32px;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.product-detail__quantity-control.minus {
  left: 20px;
}
.product-detail__quantity-control.plus {
  right: 20px;
}
.p-product-form-stock__input input[type=text] {
  box-sizing: border-box;
  padding: 15px;
  height: 52px;
  border: 2px solid #F6F6F6;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  flex: 1;
  border-radius: 10px;
  width: 100%;
}
.product-detail__quantity-number {
  display: inline-block;
  position: relative;
}
.product-detail__quantity-number::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background-color: #3A3A3A;
  transform: translate(-50%, -50%);
}
.product-detail__quantity-number.product-detail__quantity-number--plus::after {
  transform: translate(-50%, -50%) rotate(-90deg);
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background-color: #3A3A3A;
}
@media screen and (max-width: 767px) {
  .p-product-form {
    display: block;
  }
  .p-product-form-stock__ttl {
    display: block;
  }
  .p-product-form-stock__input {
    width: 100%;
  }
  .p-product-form-stock__input input[type=text] {
    padding: 5px;
    font-size: 13px;
    font-weight: 400;
  }
  .product-detail__quantity-control {
    transform: translateY(-10%);
  }
  .product-detail__quantity-number::before {
    width: 12px;
    height: 1px;
  }
  .product-detail__quantity-number.product-detail__quantity-number--plus::after {
    width: 12px;
    height: 1px;
  }
}

/* ボタン */
.p-product-form-btn {
  flex: 1;
}
.p-product-form-btn__cart {
  width: 100%;
}
@media screen and (max-width: 1030px) {
  .p-product-form-btn__cart {
    flex: 1;
    width: auto;
  }
}
.p-product-form-btn__favorite {
  width: 50px;
}
.p-product-form-btn__favorite-btn {
  display: inline-block;
  margin-top: 22px;
  margin-left: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #d8d8d8;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.p-product-form-btn__favorite-btn.is-added {
  color: #000000;
}
.p-product-form-btn__favorite-btn svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}
.p-product-form__error-message {
  color: #DB5656;
  margin-top: 15px;
}

/* SNS */
.p-product-sns-list {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
}
.p-product-sns-list__item {
  margin-right: 20px;
}
/* link */
.p-product-link-list {
  margin-top: 40px;
}
.p-product-link-list__item {
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .p-product-link-list__item {
    margin-bottom: 30px;
  }
}


/***** 商品詳細 *****/
.p-product__ttl {
  color: #00B844;
  margin-top: 0;
  margin-bottom: 65px;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 1.05px;
}
.p-product-detail {
  margin-top: 65px;
  padding: 90px 15px 140px 15px;
  background-color: #fff;
}
.p-product-explain {
  max-width: 1025px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.p-product-explain__body h2 {
  font-size: 21px;
  font-weight: 700;
  line-height: 25px;
  letter-spacing: 1.05px;
  margin: 0 0 30px 0;
}
.p-product-explain__body p {
  font-size: 14px;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: 0.7px;
  margin: 30px 0;
}
.p-product-explain__body img {
  display: block;
  margin: 30px 0;
}
.p-product-other {
  padding-top: 90px;
}
@media screen and (max-width: 767px) {
  .p-product-other {
    padding-top: 45px;
  }
  .p-product-detail {
    padding: 65px 15px 100px 15px;
  }
  .p-product__ttl {
    font-size: 25px;
    margin-bottom: 35px;
  }
  .p-product-explain__body h2 {
    font-size: 19px;
    letter-spacing: 0.95px;
  }
  .p-product-explain__body p {
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 0.6px;
  }
}


/* 組合せ購入 */
.p-product__subttl {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0 0 55px 0;
}
.p-product-recommend-list {
  display: flex;
  flex-wrap: wrap;
  margin-left: -8px;
  margin-right: -8px;
  margin-bottom: 100px;
}
.p-product-recommend-list__item {
  box-sizing: border-box;
  padding-left: 8px;
  padding-right: 8px;
  width: 33.3333%;
  word-break: break-all;
}
.p-product-recommend-list__img {
  margin-bottom: 20px;
  position: relative;
  text-align: center;
}
.p-product-recommend-list__img:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.p-product-recommend-list__img a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-product-recommend-list__img img {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: auto !important;
  max-width: 100%;
  max-height: 100%;
  text-align: center;
  border-radius: 10px;
}
.p-product-recommend-list__ttl {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
}
.p-product-recommend-list__price {
  margin-top: 5px;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
}
.p-product-recommend-list__price.is-discount {
  color: #FD0;
}
.p-product-recommend-list__price .yen {
  margin-left: 5px;
  font-size: 17px;
  font-weight: 500;
}
.p-product-recommend-list__price .inc_tax {
  margin-left: 5px;
  color: #6B6B6B;
  font-size: 14px;
  font-weight: 500;
}
.p-product-recommend-list__price .pc_none {
  display: none;
}
.p-product-recommend-list__price .usually_txt {
  color: #6B6B6B;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
}
.p-product-recommend-list__price .usually_price {
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .p-product__subttl {
    font-size: 16px;
    letter-spacing: 0.8px;
    margin: 0 0 20px 0;
  }
  .p-product-recommend-list {
    margin-left: -5px;
    margin-right: -5px;
    flex-wrap: nowrap;
    overflow-x: scroll;
  }
  .p-product-recommend-list__item {
    padding-left: 5px;
    padding-right: 5px;
    min-width: 250px;
  }
  .p-product-recommend-list__ttl {
    font-size: 14px;
    line-height: 14px;
  }
  .p-product-recommend-list__price {
    font-size: 14px;
    line-height: 16px;
  }
  .p-product-recommend-list__price .yen {
    margin-left: 2.5px;
    font-size: 12.5px;
  }
  .p-product-recommend-list__price .inc_tax {
    margin-left: 2.5px;
    font-size: 12.5px;
  }
  .p-product-recommend-list__price .pc_none {
    display: block;
  }
  .p-product-recommend-list__price .usually_txt {
    font-size: 11px;
  }
  .p-product-recommend-list__price .usually_price {
    font-size: 12px;
  }
}


/* レビュー */
.p-product-review {
  margin-bottom: 60px;
}
.p-product-review__item_wrap {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: scroll;
}
.p-product-review__item {
  min-width: 450px;
  box-sizing: border-box;
  margin-right: 16px;
  padding: 24px;
  background: #fff;
  border: 1px solid #E8E8E8;
  border-radius: 10px;
  font-family: "Montserrat", "Helvetica Neue", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
}
.p-product-review__item:last-child {
  margin-right: 0;
}
.p-product-review__heading {
  margin-bottom: 15px;
}
.p-product-review__ttl {
  margin-top: 15px;
  margin-bottom: 15px;
  line-height: 1.4;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.6px;
}
.p-product-review-info {
  margin-bottom: 15px;
}
.p-product-review-info__item.is-type {
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 1.4px;
}
.p-product-review__img {
  margin-bottom: 15px;
  text-align: center;
}
.p-product-review__body {
  margin-top: 15px;
  margin-bottom: 15px;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 1.4px;
}
.p-product-review__rates {
  display: flex;
  flex-wrap: wrap;
  margin-top: 15px;
  margin-bottom: 15px;
}
.p-product-review__rate {
  width: 19px;
  height: 19px;
  margin-right: 5px;
  vertical-align: -0.3em;
  fill: currentColor;
  fill: #E0E0E0;
}
.p-product-review__rate.is-color {
  fill: #FFDD00;
}
.p-product-review-info__item.is-date {
  margin-top: 15px;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 1.4px;
}
@media screen and (max-width: 767px) {
  .p-product-review__item {
    min-width: 285px;
  }
  .p-product-review-info {
    margin-bottom: 8px;
  }
  .p-product-review-info__item.is-type {
    font-size: 11px;
    letter-spacing: 1.1px;
  }
  .p-product-review__ttl {
    margin-top: 8px;
    margin-bottom: 8px;
    font-size: 13px;
    letter-spacing: 1.3px;
  }
  .p-product-review__rates {
    margin-top: 8px;
    margin-bottom: 8px;
  }
  .p-product-review-info__item.is-date {
    margin-top: 8px;
    font-size: 11px;
    letter-spacing: 1.1px;
  }
  .p-product-review__heading {
    margin-bottom: 15px;
  }
  .p-product-review__body {
    margin-top: 8px;
    margin-bottom: 8px;
    font-size: 12px;
    line-height: 17px;
    letter-spacing: 1.2px;
  }
  .p-product-review-reply__ttl {
    font-size: 11px;
    line-height: 17px;
    letter-spacing: 1.1px;
  }
  .p-product-review-reply__body {
    font-size: 11px;
    font-weight: 400;
    line-height: 17px;
    letter-spacing: 1.1px;
  }
}

/* レビュー 返信 */
.p-product-review-reply {
  box-sizing: border-box;
  margin-top: 15px;
  padding: 20px;
  background-color: #F3F4AA;
  border-radius: 3px;
}
.p-product-review-reply__ttl {
  margin-bottom: 15px;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 1.2px;
}
.p-product-review-reply__body {
  font-size: 12px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 1.2px;
}
.p-product-review-reply__date {
  font-size: 12px;
}
.p-product-review__btn {
  margin-top: 45px;
  text-align: center;
}
.write_review {
  background-color: #00B844;
  border: 1px solid #2E8A1A;
  display: inline-block;
  min-width: 315px;
  line-height: 62px;
  border-radius: 8px;
  font-size: 16px;
  color: #fff;
  font-weight: 600;
}
.write_review:hover {
  color: #fff;
}
.input-prepend.input-append input {
  font-size: 24px;
  padding-top: 11px;
  padding-bottom: 11px;
  width: 100px;
  text-align: right;
}
.p-product-form__error-message:empty {
  display:none;
}
@media screen and (max-width: 767px) {
  .p-product-review__btn {
    margin-top: 30px;
  }
  .write_review {
    min-width: 235px;
    line-height: 46px;
    border-radius: 6px;
    font-size: 12px;
  }
}

/* お気に入りボタン（商品詳細ページのみ調整） */
.c-item-list__btn.product_fav_btn.productpage.sp_none {
  position: static;
  margin-top: 25px;
  margin-bottom: 25px;
}
.c-item-list__btn.product_fav_btn.productpage.pc_none {
  display: none;
}
@media screen and (max-width: 1030px) {
  .c-item-list__btn.product_fav_btn.productpage.sp_none {
    display: none;
  }
  .c-item-list__btn.product_fav_btn.productpage.pc_none {
    display: block;
    right: 0;
    bottom: 0;
  }
}