/******************************/
/* Product */
/******************************/
.u-container.box-404 {
  padding: 100px 0 100px 130px;
  text-align: center;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.price-none {
  display: none !important;
}
.stage-product-img {
  max-width: 100%;
  overflow-x: hidden;
}
.js-images-slider.slick-slider .slick-list{
  overflow: visible;
}
.p-product-img {
  margin-left: auto;
  margin-right: auto;
  max-width: 650px;
}
@media screen and (min-width: 1140px) {
  .p-product-img {
      max-height: 700px;
      max-width: 700px;
  }
}
@media screen and (max-width: 1140px) {
  .p-product-img {
    max-height: 610px;
    max-width: 610px;
  }
  .u-container.box-404 {
    min-height: 600px;
  }
}
@media screen and (max-width: 767px) {
  .p-product {
    margin-bottom: 45px;
  }
  .u-container.box-404 {
    min-height: inherit;
    padding-left: 0;
  }
}
/* form */
.p-product select {
  box-sizing: border-box;
  padding: 6px;
  border: 1px solid #b3b2b2;
  border-radius: 5px;
  /*width: 300px;*/
  height: 44px;
  line-height: 1.2;
  font-size: 16px;
  flex: 1;
}
.p-product input[type=text] {
  box-sizing: border-box;
  padding: 6px;
  border: 1px solid #b3b2b2;
  border-radius: 5px;
  height: 44px;
  line-height: 1.2;
  font-size: 16px;
}
@media screen and (max-width: 1199px) {
  .p-product select {
    max-width: 300px;
  }
}
@media screen and (max-width: 767px) {
  .p-product select {
    height: 44px;
    /*width: 335px;*/
    font-size: 14.5px;
  }
  .p-product input[type=text] {
    height: 44px;
    font-size: 13px;
  }
}

.p-product-img__main-item.u-square-img img {
  max-width: none;
  max-height: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-width: 100%;
}
.p-product-img__main-item:before {
  background: #f5f5f5;
}
.p-product-img__thumb {
  margin-top: 25px;
}
.p-product-thumb-list {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}
.p-product-thumb-list__item {
  box-sizing: border-box;
  position: relative;
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 20px;
  width: 20%;
}
@media screen and (max-width: 1023px) {
  .p-product-img__thumb {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-product-img__main-item {
    max-height: inherit;
  }
  .p-product-img__thumb {
    margin-top: 15px;
  }
  .p-product-thumb-list {
    margin-left: -3px;
    margin-right: -3px;
  }
  .p-product-thumb-list__item {
    padding-left: 3px;
    padding-right: 3px;
    margin-bottom: 6px;
    width: 16.6666%;
  }
}
.p-product-thumb-list__item.is-current .p-product-thumb-list__img {
  opacity: 0.7;
}
.p-product-thumb-list__img {
  overflow: hidden;
  position: relative;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.p-product-thumb-list__img:hover {
  opacity: 0.7;
  cursor: pointer;
}
/* p-product-img__main slider */
.p-product-img__main * {
  min-width: 0;
  min-height: 0;
}
.p-product-img__main .slick-list {
  overflow: visible;
}
.p-product-img__main .slick-slide {
  opacity: 0.4;
  transition: all ease 0.2s;
}
.p-product-img__main .slick-slide.slick-active {
  opacity: 1;
}
.p-product-img__main .slick-slide.slick-active .i-plus {
  width: 60px;
  height: 60px;
  display: inline-block;
  background: #fff;
  z-index: +1;
  position: absolute;
  right: 10px;
  bottom: 10px;
  border-radius: 50%;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  transition: all ease 0.28s;
}
.p-product-img__main .slick-slide.slick-active .i-plus::before,
.p-product-img__main .slick-slide.slick-active .i-plus::after {
  content:"";
  position: absolute;
  display: inline-block;
  background:  #333;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 2px;
  transition: all ease 0.28s;
}
.p-product-img__main .slick-slide.slick-active .i-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.p-product-img__main .slick-slide.slick-active .js-popup-item:hover .i-plus {
  box-shadow: none;
}
.p-product-img__main .slick-slide.slick-active .js-popup-item:hover .i-plus::after {
  transform: translate(-50%, -50%) rotate(180deg);
}
.p-product-img__main .slick-slide:not(.slick-active) {
  pointer-events: none;
}
.p-product-img__main .slick-next,
.p-product-img__main .slick-prev {
  background: rgba(148,135,117, 0.8);
}
.p-product-img__main .slick-prev:before, .p-product-img__main .slick-next:before {
  border-left: 1px solid #fff;
  border-top: 1px solid #fff;
}
.p-product-img__main .slick-prev,
.p-product-img__main .slick-prev:hover {
  left: -60px;
}
.p-product-img__main .slick-next,
.p-product-img__main .slick-next:hover {
  right: -60px;
}
.p-product-img__main .slick-next:before {
  left: 18px;
}
/* mfp popup */
.mfp-image-holder .mfp-content {
  /*max-width: 90% !important;*/
}
.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
  right: 0;
}

@media screen and (max-width: 840px) {
  .p-product-img__main .slick-prev,
  .p-product-img__main .slick-prev:hover {
    left: 0;
  }
  .p-product-img__main .slick-next,
  .p-product-img__main .slick-next:hover {
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-product-img__main .slick-prev:before {
    left: 19px;
  }
  .p-product-img__main .slick-next:before {
    left: 18px;
  }
}
/* tab & accordion resp-tabs-container ---------------------- */
#parentHorizontalTab {
  position: relative;
}
.resp-tabs-container {
  padding: 0px;
  background-color: #fff;
  clear: left;
}
@media screen and (min-width: 768px) {

  .resp-tabs-list.hor_1 {
    display: flex;
    position: sticky;
    top: 0;
    width: 100%;
    background: #fff;
    z-index: +1;
    border-bottom: 2px solid #948775 !important;
    overflow-x: auto;
    overflow-y: hidden;
  }
  .resp-tabs-list li {
    font-weight: 600;
    font-size: 1.5rem;
    display: inline-block;
    padding: 13px 15px;
    margin: 0 4px 0 0;
    list-style: none;
    cursor: pointer;
    float: left;
    background-color: #f3f2e6 !important;
    white-space: nowrap;
  }
  .resp-tabs-list li.resp-tab-active {
    margin-bottom: -2px;
    color: #333;
    font-weight: bold;
    position: relative;
    border-left: 1px solid #948775 !important;
    border-top: 1px solid #948775 !important;
    border-right: 1px solid #948775 !important;
    background-color: #fff !important;
  }
  .resp-tab-active::after {
    content: "";
    left: 0;
    width: 100%;
    bottom: -2px;
    height: 2px;
    position: absolute;
    background: #fff;
    display: inline-block;
  }
  .resp-accordion {
    display: none;
  }
}

@media screen and (max-width: 1199px) {
  .p-product-left {
    width: 100%;
    overflow-y: auto;
  }
}


@media screen and (max-width: 767px) {
  ul.resp-tabs-list {
    display: none;
  }
  .resp-tabs-container {
    border-bottom: 2px solid #948775;
    border-top: 2px solid #948775;
  }
  .resp-accordion {
    display: block;
    font-size: 1.8rem;
    cursor: pointer;
  }
  h2.resp-accordion {
    border-top: 1px solid #c1c1c1;
    margin: 0px;
    padding: 10px 15px;
    position: relative;
  }
  .resp-accordion:first-child {
    border-top: none;
  }

  .resp-arrow {
    display: inline-block;
    width: 24px;
    height: 24px;
    top: 50%;
    margin-top: -12px;
    position: absolute;
    right: 10px;
  }
  .resp-arrow::before, .resp-arrow::after {
    content: "";
    position: absolute;
    display: block;
    top: 50%;
    right: 0;
    background: #000;
    -webkit-transition: .4s cubic-bezier(.77,0,.175,1);
    transition: .4s cubic-bezier(.77,0,.175,1);
    width: 15px;
    height: 1px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
  }
  .resp-arrow::after {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    right: 7px;
  }
  h2.resp-tab-active {
    background-color: #f3f2e6 ;
  }
  h2.resp-tab-active .resp-arrow::after {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
.p-product-left {
  position: relative;
}

@media screen and (min-width: 1200px) {
  .lbox-product-detail {
    display: flex;
    align-items: flex-start;
  }
  .p-product-left {
    order: -1;
    flex: 1;
    height: 100vh;
    overflow-y: auto;
    padding-right: 20px;
  }
  .p-product-right {
    width: 33%;
    min-width: 450px;
    max-width: 500px;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    padding-left: 3%;
  }

}
.p-product-right .inner-product-right {
  padding-bottom:3rem; padding-bottom: clamp(3rem, 2.3328rem + 1.39vw, 4rem);
}


/***** p-product-txt  *****/
.p-product-txt {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 45px;
}
.p-product-info {
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
}
.p-product-info__ttl {
  margin: 0 0 10px 0;
  line-height: 1.4;
  font-size: 2.3rem; font-size: clamp(1.95rem, 1.7168rem + 0.49vw, 2.3rem);
  word-break: break-all;
}
.p-product-info__ttl img {
  vertical-align: middle;
}
.p-product-info__id {
  font-size: 12px;
}
.p-product-info__ex {
  font-size: 14px;
  text-align: left;
}
.p-product-price {
  display: flex;
  /*justify-content: center;*/
  align-items: center;
  margin-bottom:1.5rem; margin-bottom: clamp(1.5rem, 1.1664rem + 0.69vw, 2rem);
}
.p-product-price__off {
  color: #a10000;
  font-weight: bold;
}
.p-product-price__sell {
  margin-right: 10px;
  font-size: 20px;
  font-weight: bold;
  position: relative;
}
.p-product-price__sell::before {
  content:"￥";
  position: relative;
  display: inline-block;
  color: #333;
  padding-right: 8px;
}

@media screen and (max-width: 767px) {
  .p-product-txt {
    display: block;
    margin-top: 30px;
  }
  .p-product-info__id {
    margin-top: 5px;
    font-size: 13px;
  }
  .p-product-price__sell {
    margin-right: 0;
    font-size: 22px;
  }
}
.p-product-price__sell-off {
  display: inline-block;
  margin-left: 5px;
  padding: 0px 8px;
  border-radius: 3px;
  font-size: 18px;
  background: #cf1110;
  color: #ffffff;
}
.p-product-price__normal {
  margin-right: 10px;
  font-size: 16px;
}

.p-product-price__list-price {
  font-size: 14px;
}
.p-product-action {
  box-sizing: border-box;
  padding-left: 40px;
  width: 50%;
}
@media screen and (max-width: 1023px) {
  .p-product-action {
    padding-left: 12px;
  }
}
@media screen and (max-width: 767px) {
  .p-product-action {
    margin-top: 30px;
    padding-left: 0;
    width: auto;
  }
}

/* カラーミーオプション */
.table-spec {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.table-spec .table-th {
  width: 140px;
  font-size: 1.6rem;
  text-align: left;
}
.table-spec .table-cell {
  flex: 1;
  text-align: left;
}

/* カスタムオプションプラグイン */
#custom-options-container custom-options-pulldown-form {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
#custom-options-container custom-options-pulldown-form label {
  width: 140px;
  font-size: 1.6rem !important;
  text-align: left;
  margin-bottom: 0;
  font-weight: 400 !important;
}
#custom-options-container select {
  border: 1px solid #b3b2b2 !important;
  height: 44px !important;
  padding: 6px !important;
}
#custom-options-container label {
  margin: 0 !important;
}

@media screen and (max-width: 480px) {
  .table-spec .table-th,
  #custom-options-container custom-options-pulldown-form label {
    width: 110px;
  }
}



/* p-product-option-detail */
.p-product-option-detail {
  margin-top: 20px;
  text-align: center;
}
.p-product-option-detail__btn {
  box-sizing: border-box;
  display: inline-block;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 15px;
  width: 250px;
  border: none;
  border-radius: 25px;
  font-size: 14px;
  line-height: 1.4;
  background: #5c5c5c;
  color: #ffffff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-product-option-detail__btn {
    margin-top: 0;
    padding: 18px;
  }
}
.p-product-option-detail__btn:hover {
  background: rgba(92, 92, 92, 0.8);
  color: #ffffff;
  text-decoration: none;
}
.p-product-option-detail__btn:focus, .p-product-option-detail__btn:active {
  background: rgba(92, 92, 92, 0.8);
  color: #ffffff;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .mfp-container {
    padding-top: 6px;
    padding-bottom: 6px;
  }
}
.js-option-detail-wrap {
  box-sizing: border-box;
  position: relative;
  margin: 60px auto;
  padding: 90px 60px 0 70px;
  max-width: 1280px;
  background: #fafafa;
  max-height: calc(100vh - 120px);
}
@media screen and (max-width: 1023px) {
  .js-option-detail-wrap {
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .js-option-detail-wrap {
    margin: 25px 20px;
    padding: 70px 20px 0 20px;
    width: auto;
    max-height: calc(100vh - 60px);
  }
}
.js-option-detail-wrap > .mfp-close {
  top: 30px !important;
  left: 30px;
  right: auto;
  width: 30px;
  height: 30px;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .js-option-detail-wrap > .mfp-close {
    top: 20px !important;
    left: 20px;
  }
}
.js-option-detail-wrap > .mfp-close img {
  padding: 0;
  width: 30px;
  height: 30px;
  opacity: 1;
}
.p-price-table {
  box-sizing: border-box;
  overflow-y: auto;
  padding-right: 15px;
  padding-bottom: 90px;
  max-height: calc(100vh - 210px);
  line-height: 1.4;
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  .p-price-table {
    padding: 0 0 45px 0;
  }
}
.p-price-table__heading-wrap {
  display: flex;
  flex-wrap: wrap;
}
.p-price-table__heading {
  box-sizing: border-box;
  padding: 15px 25px;
  width: 30%;
  font-size: 18px;
  font-weight: bold;
  background: #f5f5f5;
  color: #000000;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-price-table__heading {
    padding: 15px 5px 15px 10px;
    font-size: 16px;
  }
}
.p-price-table__heading:nth-child(2) {
  padding-left: 10px;
  width: 70%;
}
@media screen and (max-width: 767px) {
  .p-price-table__heading:nth-child(2) {
    padding-left: 0px;
  }
}
.p-price-table__dl {
  display: flex;
  flex-wrap: wrap;
}
.p-price-table__dt {
  box-sizing: border-box;
  padding: 15px 25px;
  border-bottom: 2px solid #b3b2b2;
  width: 30%;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-price-table__dt {
    padding: 15px 15px 15px 0;
  }
}
.p-price-table__dd {
  box-sizing: border-box;
  margin: 0;
  padding-top: 15px;
  border-bottom: 2px solid #b3b2b2;
  width: 70%;
}
.p-price-table-list__item {
  margin-bottom: 15px;
  padding-bottom: 15px;
  padding-left: 25px;
  border-bottom: 1px solid #b3b2b2;
}
@media screen and (max-width: 767px) {
  .p-price-table-list__item {
    padding-left: 0;
  }
}
.p-price-table-list__item:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}
.p-price-table-list__name {
  font-weight: bold;
}
.p-price-table-list__price {
  margin-top: 5px;
}
.p-price-table-list__soldout {
  color: #ff0000;
  font-weight: bold;
}
.p-price-table__body::after {
  display: block;
  clear: both;
  content: "";
}
.p-price-table__body dt {
  float: left;
  box-sizing: border-box;
  width: 50%;
  padding: 0.7em 0.5em;
  border-top: 1px solid #eaeaea;
}
.p-price-table__body dd {
  overflow: hidden;
  padding: 0;
  border-top: 1px solid #eaeaea;
}
.p-price-table__body span {
  display: block;
  text-align: right;
}
.p-price-table__body ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.p-price-table__body li {
  padding: 0.7em 0.5em;
  border-bottom: 1px solid #eaeaea;
}
.p-price-table__body li:last-child {
  border-bottom: 0;
}
.p-price-table__name {
  font-weight: bold;
}
/* option table */
.p-product-option {
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .p-product-option-tbl {
    display: none;
  }
}
.p-product-option-tbl table {
  margin-bottom: 0px;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 1px solid #b3b2b2;
  border-radius: 0;
  width: 100%;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro","メイリオ", Meiryo, "ＭＳ ゴシック",sans-serif;
}
.p-product-option-tbl table div {
  display: inline-block !important;
}
.p-product-option-tbl th, .p-product-option-tbl td {
  padding: 15px 30px;
  border-top: 1px solid #b3b2b2 !important;
  border-left: 0;
  border-radius: 0 !important;
  text-align: center;
}
.p-product-option-tbl th {
  font-weight: bold;
}
.p-product-option-tbl th:nth-child(2n), .p-product-option-tbl td:nth-child(2n) {
  background-color: #f5f5f5;
}
.p-product-option-tbl label {
  margin-top: 10px;
  margin-bottom: 0;
  line-height: 1.4;
}
.p-product-option-tbl input {
  margin-top: 0;
}
.p-product-option-tbl .stock_head th, .p-product-option-tbl .stock_head td {
  border-top: none !important;
  border-bottom: 2px solid #b3b2b2;
  font-size: 16px;
  font-weight: bold;
}
.p-product-option-tbl {
  overflow-x: auto;
  white-space: nowrap;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
  padding-bottom: 30px;
  max-width: 1330px;
}
.p-product-option-tbl::-webkit-scrollbar {
  height: 10px;
}
.p-product-option-tbl::-webkit-scrollbar-track {
  background: transparent;
}
.p-product-option-tbl::-webkit-scrollbar-thumb {
  background: #c6c6c6;
  border-radius: 5px;
}
.stock_zero {
  color: #a10000;
}
/* option select */
.p-product-option-select {
  text-align: center;
}

.p-product-option-select__ttl {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1;
}
/* p-product-name */
.p-product-name {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  width: 300px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-product-name {
    width: 335px;
  }
}
.p-product-name__box {
  margin-top: 15px;
}
.p-product-name__ttl {
  margin-bottom: 10px;
  line-height: 1;
  font-size: 18px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .p-product-name__ttl {
    font-size: 13px;
  }
}
.p-product-name__body input {
  width: 100%;
}
/* p-product-form */
.p-product-form {
  text-align: center;
}
.p-product-form-stock {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
}
.p-product-form-stock__ttl {
  width: 140px;
  text-align: left;
}
.p-product-form-stock_right {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-product-form-stock__ttl {
    font-size: 13px;
  }
}
.p-product-form-stock__box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .p-product-form-stock__box {
    font-size: 13px;
  }
}
.p-product-form-stock__input {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.p-product-form-stock__input input[type=text] {
  border-radius: 0;
  width: 50px;
  height: 50px;
  font-size: 18px;
  text-align: center;
  border: 1px solid #b3b2b2;
}
.p-product-form-stock__add {
  overflow: hidden;
  display: block;
  position: relative;
  white-space: nowrap;
  text-indent: -9999px;
  width: 50px;
  height: 50px;
  background: #eeecdc;

}
.p-product-form-stock__add:hover {
  background: #f5f5f5;
}
.p-product-form-stock__add::before, .p-product-form-stock__add::after {
  content: "";
  position: absolute;
}
.p-product-form-stock__add.is-down::before {
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: #000000;
  transform: translate(-50%, -50%);
}
.p-product-form-stock__add.is-up::before {
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: #000000;
  transform: translate(-50%, -50%);
}
.p-product-form-stock__add.is-up::after {
  top: 50%;
  left: 50%;
  width: 2px;
  height: 14px;
  background: #000000;
  transform: translate(-50%, -50%);
}
.p-product-form-stock__unit {
  margin-left: 10px;
}
.p-product-form-stock__stock {
  flex: 1;
  /* margin-left: 15px;
  font-size: rem(14px);*/
}
.p-product-form-stock__stock.table-spec .table-th {
  font-size: 1.4rem;
}
/* p-product-form-btn */
.p-product-form-btn {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.p-product-form-btn__cart {
  flex: 1;
}
.p-product-form-btn-member {
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
  margin-top: 10px;
}
.p-product-form-btn-member__item {
  box-sizing: border-box;
  padding-left: 5px;
  padding-right: 5px;
  width: 50%;
}
.p-product-form-btn__favorite {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.p-product-form-btn__favorite svg {
  position: relative;
  top: 1px;
  fill: #d8d8d8;
}
.p-product-form__error-message {
  margin-bottom: 0;
  width: 100%;
  color: #a10000;
  text-align: center;
}
.p-product-contact__link {
  display: block;
  margin-top: 25px;
  margin-bottom: 25px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-product-contact__link {
    font-size: 14px;
  }
}
/* SNS */
.p-product-sns-list {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-product-sns-list {
    margin-top: 40px;
    justify-content: center;
  }
}
.p-product-sns-list__item {
  margin-right: 20px;
}
.p-product-sns-list__item:last-child {
  margin-right: 0;
}
/* link */
.p-product-link-list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px 0;
  width: 100%;
}

.p-product-link-list__item {
  padding-left: min(1%, 7px);
  padding-right: min(1%, 7px);
  border-right: 1px solid #ccc;
  flex: auto;
}
.p-product-link-list__item:nth-child(3) {
  border-right: none;
}
.p-product-link-list__item.no-border {
  border-right: none;
}
.p-product-link-list__item a {
  display: flex;
  position: relative;
  line-height: 50px;
  padding: 0 5px;
  align-items: center;
  flex-wrap: nowrap;
  font-size: min(1.5rem, 18px);
}
.p-product-link-list__item .btn-contact {
  margin-top: 10px;
}
.p-product-link-list__item a:hover {
  text-decoration: none;
  background-color: #eeecdc;
}
.p-product-link-list__item a::before {
  content:"";
  position: relative;
  margin-right: 10px;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center 50%;
  background-size: contain;
}
.p-product-link-list__item .btn-return::before {
  background-image: url(https://file002.shop-pro.jp/PA01363/242/img/common/i-return.svg);
  width: 43px;
  height: 40px;
}
.p-product-link-list__item .btn-gift::before {
  background-image: url(https://file002.shop-pro.jp/PA01363/242/img/common/i-gift_brown.svg);
  width: 36px;
  height: 36px;
}
.p-product-link-list__item .btn-order::before {
  background-image: url(https://file002.shop-pro.jp/PA01363/242/img/common/i-order_brown.svg);
  width: 36px;
  height: 36px;
}
.p-product-link-list__item .btn-contact::before {
  background-image: url(https://file002.shop-pro.jp/PA01363/242/img/common/i-contact_brown.svg);
  width: 38px;
  height: 28px;
}
@media screen and (max-width: 767px) {
  .p-product-link-list__item {
    margin-left: 0;
    margin-right: 0;
  }
}
@media screen and (max-width: 480px) {
  .p-product-link-list {
    flex-direction: column;
    gap: 5px 0;
  }
  .p-product-link-list__item {
    border-right: none;
  }
  .p-product-link-list__item .btn-contact {
    margin-top: 5px;
  }
}

/* tab & accordion ------------ */
@media screen and (min-width: 768px) {
  .js-tab{
    display: none !important;
  }
}
.js-tab.active {
  display: block !important; /* アクティブなタブを表示 */
}
@media screen and (max-width: 767px) {
  .sbox-productdetail {
    margin-bottom: 40px;
  }

}

/***** p-product__ttl *****/
.p-product__ttl {
  position: relative;
  margin-top: 0;
  margin-bottom:3rem; margin-bottom: clamp(3rem, 2.3328rem + 1.39vw, 4rem);
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.1em;
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  font-size: 2.8rem; font-size: clamp(2.2rem, 1.8rem + 0.83vw, 2.8rem);
}
@media screen and (max-width: 767px) {
  .p-product__ttl {
    margin-bottom: 25px;
    font-size: 24px;
  }
}

.p-product-explain a {
  color: #948775;
  text-decoration: underline;
}
.p-product-explain a:hover {
  text-decoration: none;
}
.p-product-explain__body {
  line-height: 2;
}
/* ご注文について --------------- */
.ttl-order-step {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0 15px;
}
.ttl-order-step .t-step {
  display: inline-block;
  width: fit-content;
  position: relative;
  color: #948775;
  font-size: 4.0rem; font-size: clamp(2.8rem, 2rem + 1.67vw, 4rem);
  line-height: 1;
}
.ttl-order-step .t-step::before {
  content:"STEP";
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  color: #948775;
  position: relative;
  top: -10px;
  display: inline-block;
  width: fit-content;
  margin-right: 10px;
}
.ttl-order-step .ttl-txt {
  margin: 0;
  padding: 0;
}

/* sbox-orderstep-content */
.sbox-orderstep-content {
  border-left: 1px solid #948775;
  padding-left: min(4%, 30px);
}
.sbox-orderstep-content .img-order-step {
  margin-top: 15px;
}

@media screen and (max-width: 767px) {
  .ttl-order-step .t-step::before {
    top: -6px;
  }
}

/* font Style ------------------ */
.ttl-fontstyle {
  background: #948775;
  color: #fff;
  padding: 2px 13px;
  margin-bottom: 0;
}
.sbox-fontstyle {
  width: min(100%, 800px);
}
@media screen and (max-width: 640px) {
  .sbox-fontstyle .img-font-style {
    overflow-x: auto;
  }
  .sbox-fontstyle .img-font-style .box-scroll-x {
    min-width: 650px;
  }
}
/* product-detail left ----------------------------- */
.mttl-product {
  position: relative;
  display: flex;
  width: 100%;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 0 min(30px, 15px) 0;
}
.mttl-product::before {
  position: relative;
  content:"■";
  font-size: 15px;
  color: #948775;
}
.mttl-product .ja {
  display: inline-block;
  padding-left: 15px;
  padding-right: 30px;
}
.mttl-product .en {
  color: #948775;
  display: inline-block;
}
.sttl-product {
  font-weight: bold;
  margin: 0 0 10px 0;
  font-size: 1.8rem; font-size: clamp(1.7rem, 1.6336rem + 0.14vw, 1.8rem);
}
@media screen and (max-width: 480px) {
  .mttl-product .ja {
    padding-left: 10px;
    padding-right: 20px;
  }
}
/* sbox-productdetail ------------------------------ */
.sbox-productdetail {
  font-size: 1.8rem; font-size: clamp(1.7rem, 1.6336rem + 0.14vw, 1.8rem);
}
@media screen and (min-width: 1351px) {
  .sbox-productdetail {
    padding-left: 30px;
  }
  .ttl-order-step {
    margin-left: -10px;
  }
}
.list-cercle > li {
  padding-left: 20px;
  position: relative;
}
.list-cercle > li::before {
  content:"〇";
  font-size: 1.4rem;
  position: absolute;
  left: 0;
  top: 3px;
}
.box-grid {
  display: grid;

}
.box-grid.style01 {
  padding: 0 10px;
  max-width: 800px;
}
.box-border {
  border: 1px solid #bababa;
}


/* sbox-layout */
.sbox-layout {
  display: flex;
  flex-wrap: wrap;
}
.sbox-layout.layout-type1 {
  max-width: 750px;
  /*min-width: 600px;*/
}
.sbox-layout .img-layout.img_1x1 {
  min-width: 200px;
  width: 30%;
  aspect-ratio: 1 / 1;
}
.sbox-layout.layout-type2 .img-layout.img_1x1 {
  min-width: 250px;
  max-width: 280px;
}
.sbox-layout.layout-type3 .img-layout.img_1x1 {
  min-width: 150px;
  width: 30%;
}

.sbox-layout.layout-type3 {
  max-width: 750px;
}

.sbox-layout.layout-type4 {
  flex-direction: column;
  min-width: auto;
  padding: 10px 10px 0 10px;
  position: relative;
}

.sbox-layout.layout-type4::before,
.sbox-layout.layout-type4::after {
  content:"";
  position: absolute;
  display: block;
  background: #bababa;
}
.sbox-layout.layout-type4::before {
  width: 1px;
  height: calc(100% - 20px);
  right: 0;
  top: 10px;
}
.sbox-layout.layout-type4::after {
  height: 1px;
  width: 100%;
  bottom: 0;
  left: 0;
}

.sbox-layout.layout-type4 .sttl-layout {
  min-width: inherit;
  width: 100%;
  padding-left: 3px;
  padding-right: 3px;
  margin-bottom: 0;
}
.sbox-layout.layout-type4 .img-layout.img_1x1 {
  max-width: none;
  min-width: auto;
  width: 100%;
}
.sbox-layout.layout-type5 .img-layout.img_1x1 {
  width: 40%;
}
.sbox-layout.layout-type5 .img-layout.img_1x1 {
  min-width: 350px;
  max-width: 380px;
}

.area-list-layout2 {
  width: auto;
}
.area-list-layout2 td {
  padding-right: 40px;
  padding-bottom: 40px;
}
.area-list-layout2 .box-img.img-square {
  aspect-ratio: 1 / 1;
  width: 270px;
}
.area-list-layout2 .box-img.item2 {
  height: 580px;
}
.area-list-layout2 .box-img.item2 img {
  height: 100%;
}

.sbox-layout .txt-layout {
  min-width: 155px;
  flex: 1;
  line-height: 1.45;
}
.sbox-layout .txt-layout {
  position: relative;
  display: flex;
  padding-left: 5%;
  margin-left: 0;
}
.sbox-layout.layout-type3 .txt-layout,
.sbox-layout .txt-layout .bottom-box {
  flex-wrap: wrap;
  justify-content: space-between;
  column-gap: 1px;
}
.sbox-layout .txt-layout .sbox-layout-info {
  position: relative;
  flex: 1;
  display: flex;
  min-width: 160px;
  flex-direction: column;
  max-width: 500px;
}
.sbox-layout.layout-type3 .txt-layout .sbox-layout-info {
  /*min-width: 325px;*/
}
.sbox-layout.layout-type3 .txt-layout .layout-between {
  justify-content: space-between;
  flex: 1;
  flex-wrap: wrap;
  align-items: center;
}

.sbox-layout .sttl-layout {
  background: #948775;
  color: #fff;
  margin: 0;
  display: inline-block;
  padding: 1px 15px;
  position: relative;
  margin-bottom:1.5rem; margin-bottom: clamp(1.5rem, 1.1664rem + 0.69vw, 2rem);
  font-size: 1.6rem;
  min-width: 155px;
  width: fit-content;
  box-sizing: border-box;
  text-align: center;
  line-height: 1.45;
}
.sbox-layout .sttl-layout .f-qck {
  font-size: 1.85rem;
}

.sbox-layout.layout-type4 .sttl-layout.f-sz15 {
  font-size: 1.5rem;

}
.sbox-layout.layout-type4 .sttl-layout.f-sz15 .f-qck {
  font-size: 1.7rem;
}
.sbox-layout .txt-layout .bottom-box {
  display: flex;
  row-gap: 10px;
  align-items: flex-end;
  margin-top: auto;
}
.sbox-layout .txt-layout .bottom-box p {
  flex: 1;
  margin-bottom: 0;
}
.sbox-layout-info .list-txt-line li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 60px;
}
.layout-type3 .sbox-layout-info .list-txt-line li {
  margin-bottom: 10px;
}
.sbox-layout-info .list-txt-line li::before {
  content:"";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #eeecdc;
  color: #948775;
  font-size: 1.5rem;
  width: 53px;
  border-radius: 2px;
  display: inline-block;
  text-align: center;
}
.sbox-layout-info .list-txt-line.li-top li::before {
  top: 2px;
  transform: translateY(0);
}
.sbox-layout-info .list-txt-line.pre-top li::before {
  top: 0.8em;
}
.sbox-layout-info .list-txt-line li.txtline-1::before {
  content:"1行目";
}
.sbox-layout-info .list-txt-line li.txtline-2::before {
  content:"2行目";
}
.sbox-layout-info .list-txt-line li.txtline-3::before {
  content:"3行目";
}
.sbox-layout-info .list-txt-line li.txtline-13::before {
  content:"1・3行目";
}
.sbox-layout-info .list-txt-line.styleFJT li {
  padding-left: 103px;
}
.sbox-layout-info .list-txt-line.styleFJT li::before {
  width: 92px;
}
.sbox-layout-info .list-txt-line li.txtline-layout::before {
  content:"レイアウト";
}
.sbox-layout-info .list-txt-line li.txtline-fontstyle::before {
  content:"書　体";
}
.sbox-layout-info .list-txt-line li.txtline-ex::before {
  content:"入 力 例";
}
.sbox-layout-info .list-txt-line li.txtline-top::before {
  content:"上段";
}
.sbox-layout-info .list-txt-line li.txtline-bottom::before {
  content:"下段";
}
.sbox-layout .txt-layout .thumb-layout {
  width: 125px;
  display: flex;
  align-items: center;
}

.sbox-layout .txt-layout .bottom-box .thumb-layout {
  max-width: 140px;
  width: 100%;
}
.sbox-layout.layout-type3 .txt-layout .thumb-layout {
  max-width: 140px;
  min-width: 90px;
  width: 25%;
}
.area-list-layout {
  width: 100%;
  margin-left: 0;
}
.area-list-layout .list-layout-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0 50px;
}
.area-list-layout .list-layout-grid li {
  margin-bottom:3rem; margin-bottom: clamp(3rem, 2.3328rem + 1.39vw, 4rem);
}

.sbox-layout.layout-type3 .layout-between .sbox-layout-info .list-txt-line li {
  padding-left: 0;
  padding-top: 28px;
}

/* sttl-product-layout02 */
.sttl-product-layout02 {
  position: relative;
  padding-left: 30px;
}
.sttl-product-layout02::before,
.sttl-product-layout02::after {
  content:"";
  position: absolute;
  display: inline-block;
  border-radius: 50%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.sttl-product-layout02::before {
  width: 22px;
  height: 22px;
  background: #b69364;
}
.sttl-product-layout02::after {
  background: #fff;
  width: 12px;
  height: 12px;
  left: 5px;
}
.sttl-product-layout02.f-sz20 {
  padding-left: 28px;
}
.sttl-product-layout02.f-sz20::before {
  width: 18px;
  height: 18px;
}
.sttl-product-layout02.f-sz20::after {
  width: 10px;
  height: 10px;
  left: 4px;
}
.list-layout-grid.column-4 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 3%;
}
.list-layout-grid.column-4 .sbox-layout.layout-type6 .img-layout.img_1x1 {
  width: 100%;
  min-width: inherit;
  max-width: 240px;
}
@media screen and (min-width: 641px) {
  .txt-layout-sponly {
    display: none;
  }
  .sbox-layout.pc-column {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
  }
  .list-layout-grid.style02 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3.5%;
  }
  .sbox-layout.layout-type6 .img-layout.img_1x1 {
    width: 100%;
    min-width: inherit;
    max-width: 280px;
  }
}
@media screen and (min-width: 1501px) {
  .box-grid.style01 {
    grid-template-columns: repeat(5, 1fr);
  }
  .sbox-layout.layout-type4:nth-child(5n-4) {
    padding-left: 0;
  }
  .sbox-layout.layout-type4:nth-child(5n) {
    padding-right: 0;
  }
  .sbox-layout.layout-type4:nth-child(5n)::before,
  .sbox-layout.layout-type4:nth-last-child(-n+4)::after  {
    content: none;
  }
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(5) {
    grid-row: 1 / 3;
    grid-column: 5 / 6;
  }
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(10+5n){
    padding-left: 0;
    padding-right: 10px;
  }
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(10),
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(15),
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(20),
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(25) {
    padding-right: 10px;
  }
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(10)::before,
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(15)::before,
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(20)::before,
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(25)::before,
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(5n-4)::before {
    content:"";
    
  }
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(5n-4) {
    padding-left: 10px;
  }

  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(14)::before,
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(19)::before,
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(24)::before {
    content: none;
  }

}
@media screen and (max-width: 1500px) {
  .box-grid.style01 {
    grid-template-columns: repeat(4, 1fr);
  }
  .sbox-layout.layout-type4:nth-child(4n-3) {
    padding-left: 0;
  }
  .sbox-layout.layout-type4:nth-child(4n) {
    padding-right: 0;
  }
  .sbox-layout.layout-type4:nth-child(4n)::before,
  .sbox-layout.layout-type4:nth-last-child(-n+3)::after {
    content: none;
  }
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(5) {
    grid-row: 2 / 4;
    grid-column: 1 / 2;
  }
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(4n-3) {
    padding-left: 10px;
  }
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(11) {
    padding-right: 0;
  }
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(11)::before {
    content: none;
  }
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(12)::before,
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(16)::before,
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(18)::before,
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(20)::before,
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(22)::before,
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(24)::before,
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(28)::before,
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-last-child(-n+3)::after {
    content:"";
  }
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(12),
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(16),
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(20),
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(24),
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(28) {
    padding-left: 0;
    padding-right: 10px;
  }
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(15),
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(19),
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(23),
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(27) {
    padding-right: 0;
  }
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(15)::before,
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(19)::before,
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(23)::before,
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(27)::before,
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:last-child::after {
    content: none;
  }
  .box-grid.style01.no-tate.has-9 .sbox-layout.layout-type4:not(:last-child)::after {
    content: "";
  }
}
@media screen and (max-width: 767px) {
  .sbox-layout {
    font-size: 1.5rem;
  }
  .sbox-layout .sttl-layout,
  .sbox-layout.layout-type4 .sttl-layout {
    font-size: 90%;
  }
  .sbox-layout .sttl-layout .f-qck {
    font-size: 1.5rem;
  }
  .sttl-product-layout02 {
    transform: translateY(10px);
  }
  .area-list-layout2 td {
    padding-right: 20px;
    padding-bottom: 20px;
  }
  .area-list-layout2 .box-img.item2 {
    height: 560px;
  }

}

@media screen and (max-width: 640px) {
  .sbox-layout .img-layout.img_1x1,
  .sbox-layout.layout-type3 .img-layout.img_1x1 {
    min-width: 160px;
  }
  .sbox-layout .txt-layout {
    flex-direction: column;
  }
  .sbox-layout-info .list-txt-line li {
    padding-left: 55px;
  }
  .sbox-layout-info .list-txt-line li::before {
    font-size: 1.3rem;
    width: 45px;
  }
  .sbox-layout.layout-type3 .txt-layout .sbox-layout-info {
    flex: 1;
  }
  
  .sbox-layout.layout-type2 .sbox-layout-info .list-txt-line li,
  .list-txt-line.sp-column li {
    padding-left: 0 !important;
    padding-top: 20px;
    margin-bottom: 8px !important;
  }
  .sbox-layout.layout-type2 .sbox-layout-info .list-txt-line li::before,
  .list-txt-line.sp-column li::before {
    top: 7px;
  }
  .sbox-layout-info .list-txt-line.li-top li::before {
    transform: translateY(-50%);
    top: 7px;
  }
  .area-list-layout .list-layout-grid {
    gap: 0 10px;
    margin-bottom:  10px;
  }
  .sbox-layout.layout-type2 .img-layout.img_1x1 {
    width: calc(50% - 5px);
    min-width: inherit;
  }
  .sbox-layout.layout-type5 .img-layout.img_1x1 {
    width: 55.8%;
    min-width: inherit;
    max-width: none;
  }
  .sbox-layout .txt-layout .bottom-box {
    flex-direction: column;
    align-items: start;
    padding-top: 0;
  }
  .txt-layout-sponly {
    display: block;
    margin: 0;
    padding-top: 10px;
  }
  .img-H11-sub.pc {
    display: none;
  }
  .area-list-layout2 .box-img.img-square {
    width: 200px;
  }
  .area-list-layout2 .box-img.item2 {
    height: 420px;
  }
  .box-grid.style01 {
    padding: 0 5px;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 1px;
  }
  .sbox-layout.layout-type4 {
    padding: 5px 5px 0 5px;
  }
  .sbox-layout.layout-type4::before {
    height: calc(100% - 10px);
    top: 5px;
  }

  .sbox-layout.layout-type4:nth-child(4n-3) {
    padding-left: 5px;
  }
  .sbox-layout.layout-type4:nth-child(4n) {
    padding-right: 5px;
  }
  .sbox-layout.layout-type4:nth-child(3n-2) {
    padding-left: 0;
  }
  .sbox-layout.layout-type4:nth-child(3n) {
    padding-right: 0;
  }
  .sbox-layout.layout-type4:nth-child(4n)::before,
  .sbox-layout.layout-type4:nth-last-child(-n+3)::after {
    content: "";
  }
  .sbox-layout.layout-type4:nth-child(3n)::before,
  .sbox-layout.layout-type4:nth-last-child(-n+1)::after {
    content: none;
  }
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(1) {
    padding-left: 0;
  }
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(4){
    padding-left: 5px;
  }
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(5),
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(7),
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(9),
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(15),
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(21),
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(27) {
    padding-left: 0;
  }
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(8),
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(14),
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(17),
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(20),
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(26) {
    padding-right: 0;
  }
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(9),
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(12),
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(15),
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(16),
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(18),
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(21),
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(19),
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(24),
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(27),
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(28) {
    padding-right: 5px;
  }
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(7),
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(10),
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(13),
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(16),
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(17),
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(19),
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(20),
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(22),
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(25),
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(28) {
    padding-left: 5px;
  }
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(8)::before,
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(14)::before,
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(17)::before,
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(20)::before,
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(26)::before,
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(27)::after {
    content: none;
  }
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(9)::before,
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(15)::before,
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(19)::before,
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(21)::before,
  .box-grid.style01.has-tate-no5 .sbox-layout.layout-type4:nth-child(27)::before {
    content:"";
  }
  .box-grid.style01.no-tate.has-9 .sbox-layout.layout-type4:nth-last-child(-n + 3)::after {
    content: none;
  }
  .sbox-layout.layout-type6 .img-layout.img_1x1{
    min-width: 55.8%;
  }
  .list-layout-grid.column-4 {
    grid-template-columns: 1fr 1fr;
    gap: 2%;
  }
}

@media screen and (max-width: 480px) {
  .sbox-layout .txt-layout .sbox-layout-info,
  .sbox-layout .txt-layout,
  .sbox-layout .sttl-layout {
    min-width: inherit;

  }
  .sbox-layout .txt-layout .thumb-layout {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding-top: 10px;
  }
  .sbox-layout .txt-layout .thumb-layout img {
    width: 55%;
  }
  .sbox-layout-info .list-txt-line li {
    margin-bottom: 5px;
  }
  .sbox-layout .sttl-layout {
    font-size: 80%;
    width: 100%;
  }
  .sbox-layout .sttl-layout .f-qck {
    font-size: 1.3rem;
  }
  .sbox-layout .img-layout.img_1x1,
  .sbox-layout.layout-type3 .img-layout.img_1x1,
  .sbox-layout.layout-type2 .img-layout.img_1x1 {
    min-width: 140px;
  }
  .sbox-layout.layout-type3 .txt-layout .thumb-layout,
  .sbox-layout .txt-layout .bottom-box .thumb-layout {
    width: 100%;
    max-width: none;
  }
  .sbox-layout .txt-layout .thumb-layout img {
    width: 53%;
  }
  .sbox-layout.layout-type3 .txt-layout .thumb-layout img {
    max-width: 80px;
  }
  .sbox-layout.layout-type3 .layout-between .sbox-layout-info .list-txt-line li {
    padding-top: 23px;
  }
  .sbox-layout.layout-type3 .txt-layout .thumb-layout {
    padding-bottom: 10px;
  }
  .area-list-layout2 {
    width: 100%;
  }
  .area-list-layout2 td {
    padding-right: 10px;
    padding-bottom: 10px;
  }
  .area-list-layout2 td:nth-child(1) {
    width: 165px;
  }
  .area-list-layout2 td:nth-child(2) {
    padding-right: 0;
  }
  .area-list-layout2 .box-img.img-square {
    width: 165px;
  }
  .area-list-layout2 .box-img.item2 {
    height: 340px;
  }
  .sp-column.sbox-layout {
    flex-direction: column;
    align-items: center;
  }
  .sp-column.sbox-layout .img-layout.img_1x1 {
    min-width: inherit;
    max-width: 90%;
    width: fit-content;
  }
  .sp-column.sbox-layout .img-layout.img_1x1.img-cercle {
    max-width: 50%;
  }
  .sp-column.sbox-layout .txt-layout {
    padding-left: 0;
    padding-top: 10px;

  }
}

/* list-gift ------------------- */
.list-gift {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.list-gift .sbox-gift {
  display: flex;
  flex-direction: column;
  width: calc(33.33333% - 20px);
}
.list-gift .sbox-gift .img {
  display: inline-block;
  aspect-ratio: 1 / 1;
  width: 100%;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .list-gift {
    gap: 10px;
  }
  .list-gift .sbox-gift {
    width: calc(50% - 10px);
  }

}
@media screen and (max-width: 640px) {
  .list-gift .sbox-gift .txt {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}
@media screen and (max-width: 480px) {
  .list-gift .sbox-gift {
    width: 100%;
  }
}
/* bnr-original -------------- */
.area-bnr {
  max-width: 800px;
}
.bnr-original {
  display: block;
  border-radius: 15px;
  overflow: hidden;
}
.bnr-original .inner {
  display: flex;
}
.bnr-original .inner .bnr-original-01 {
  width: 47.79%;
}
.bnr-original .inner .008-093-2-bn2 {
  width: 100%;
}
.bnr-original .inner .bnr-original-02 {
  width: 52.21%;
}
@media screen and (max-width: 480px) {
  .bnr-original .inner {
    flex-direction: column;
  }
  .bnr-original .inner .bnr-original-01,
  .bnr-original .inner .bnr-original-02 {
    width: 100%;
    text-align: center;
  }
  .bnr-original .inner .bnr-original-01 {
    background: #edd71d;
  }
  .bnr-original .inner .bnr-original-02 {
    background: #333;
  }
  .bnr-original .inner .bnr-original-01 img,
  .bnr-original .inner .bnr-original-02 img {
    width: 80%;
  }
}
/* review ------------------------------------------ */
.p-product-review {
  padding-top: 90px;
}
@media screen and (max-width: 767px) {
  .p-product-review {
    padding-top: 60px;
    margin-bottom: 30px;
  }
}
.p-product-review__bg {
  margin-bottom: 40px;
  background: #f5f5f5;
}
.p-product-review__wrap {
  box-sizing: border-box;
  padding: 75px 140px;
}
@media screen and (max-width: 1023px) {
  .p-product-review__wrap {
    padding: 30px 60px;
  }
}
@media screen and (max-width: 767px) {
  .p-product-review__wrap {
    padding: 30px 40px;
  }
}
@media screen and (max-width: 1023px) {
  .p-product-review__wrap::-webkit-scrollbar {
    height: 8px;
  }
}
@media screen and (max-width: 1023px) {
  .p-product-review__wrap::-webkit-scrollbar-track {
    background: #f5f5f5;
  }
}
@media screen and (max-width: 1023px) {
  .p-product-review__wrap::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background: #8f8f8f;
  }
}
.p-product-review__item {
  box-sizing: border-box;
}
.p-product-review__user {
  box-sizing: border-box;
  margin-top: 20px;
  margin-bottom: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 50px;
  background: url(https://img.shop-pro.jp/tmpl_img/89/icon-user.png) no-repeat;
  background-size: 40px 40px;
}
@media screen and (max-width: 767px) {
  .p-product-review__user {
    margin-top: 0;
    background-size: 35px 35px;
  }
}
.p-product-review__user-name {
  margin-right: 5px;
  font-weight: bold;
}
.p-product-review__heading {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .p-product-review__heading {
    width: 265px;
  }
}
.p-product-review__rates {
  display: flex;
  flex-wrap: wrap;
  margin-right: 15px;
}
.p-product-review__rate {
  width: 18px;
  height: 18px;
  vertical-align: -0.3em;
  fill: currentColor;
  fill: #d5d5d5;
}
.p-product-review__rate.is-color {
  fill: #dcad0a;
}
.p-product-review__ttl {
  margin-bottom: 15px;
  line-height: 1.4;
  font-size: 18px;
  font-weight: bold;
}
.p-product-review__body {
  overflow: hidden;
  line-height: 1.75;
}
.p-product-review__img {
  margin-top: 20px;
  width: 140px;
}
/* ????????ャ?? 菴?篆? */
.p-product-review-reply {
  box-sizing: border-box;
  margin-top: 20px;
}
.p-product-review-reply__ttl {
  font-weight: bold;
}
.p-product-review-reply__body {
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .p-product-review-reply__body {
    white-space: initial;
  }
}
.p-product-review-reply__date {
  font-size: 12px;
}
.p-product-review__none {
  padding: 30px;
  text-align: center;
}
.p-product-review__btn-wrap {
  margin-top: 45px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-product-review__btn-wrap {
    margin-top: 30px;
  }
}
.p-product-review__btn {
  box-sizing: border-box;
  display: inline-block;
  padding: 15px;
  width: 250px;
  border: 1px solid #948775;
  background: #948775;
  color: #ffffff;
  text-align: center;
  transition: all ease 0.2s;
}
.p-product-review__btn:hover, .p-product-review__btn:focus {
  background: #6f614f;
  color: #ffffff;
  text-decoration: none;
}
/* p-product-recommend */
.p-product-recommend {
  overflow: hidden;
  padding-top: 180px;
}
@media screen and (max-width: 767px) {
  .p-product-recommend {
    padding-top: 90px;
  }
}
.p-product-recommend-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.p-product-recommend-list__item {
  box-sizing: border-box;
  position: relative;
  width: calc(33.33333% - 20px);
  word-break: break-all;
}
.p-product-recommend-list__item:hover .c-item-list__txt {
  opacity: 1;
}

@media screen and (max-width: 1023px) {
  .p-product-recommend-list {
    gap: 20px;
  }
  .p-product-recommend-list__item {
    margin-bottom: 20px;
    width: calc(50% - 20px);
  }
  .p-product-recommend-list__item .c-item-list__btn {
      top: 15px;
      right: 15px;
  }
}
@media screen and (max-width: 767px) {
    .p-product-recommend-list {
        gap: 15px;
    }
    .p-product-recommend-list__item {
        width: calc(50% - 15px* 0.5);
    }
}
@media screen and (max-width: 480px) {
  .p-product-recommend-list {
        gap: 5px;
   }
  .p-product-recommend-list__item {
        width: calc(50% - 5px* 0.5);
   }
  .p-product-recommend-list__item .c-item-list__btn {
        top: 5px;
        right: 5px;
        left: auto;
   }
}