@charset "UTF-8";
/* //////////////////////////////////////////////////
                  item page
////////////////////////////////////////////////// */
/* ====================
m.$noto-sans: 'Noto Sans JP', sans-serif;
m.$montserrat: 'Montserrat', sans-serif;
==================== */
/* ====================
 - 599px：スマートフォン
 - 600px〜959px：タブレット
 - 960px〜1199px：小型PC
 - 1200px〜：大型PC
==================== */
/* ---------------------
body {
  background-color: #bebeff;
  @include m.media(tab) {
    background-color: #ffbebe;
  }
  @include m.media(pc-s) {
    background-color: #cacaca;
  }
  @include m.media(pc-l) {
    background-color: #cacaca;
  }
}
--------------------- */
/* ------------------------------------------------
fs_re_item page
------------------------------------------------ */
@media screen and (max-width: 768px) {
  .fs-c-variationPanelList__list__item {
    min-width: initial;
  }
  .fs-c-variationPanelList__list {
    overflow-x: initial;
  }
}
/* ------------------------------------------------
common 追加分
------------------------------------------------ */
/* ------------------------------------------------
レイアウト
------------------------------------------------ */
.fs-l-productLayout {
  border-bottom: 1px solid #ccc;
  padding-bottom: 5rem;
  grid-row-gap: 16px;
}
.fs-l-productLayout .itempage__desc-wrap {
  margin-top: 16px;
}

@media screen and (min-width: 960px) {
  .fs-l-productLayout {
    display: grid;
    grid-template-columns: calc(60% - 8px) calc(40% - 8px);
    grid-gap: 16px;
    align-items: start;
    grid-template-rows: auto auto 1fr;
  }
  .fs-l-productLayout .itempage__head {
    grid-column: 1/3;
    grid-row: 1;
  }
  .fs-l-productLayout .itempage__imege-wrap {
    grid-column: 1/2;
    grid-row: 2/3;
  }
  .fs-l-productLayout .itempage__cart-wrap {
    grid-column: 2/3;
    grid-row: 2/4;
  }
  .fs-l-productLayout .itempage__desc-wrap {
    grid-column: 1/2;
    grid-row: 3/4;
    margin-top: 0;
  }
  .fs-l-sideArea {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .fs-l-pageMain {
    max-width: 1200px;
  }
  .fs-l-sideArea + .fs-l-pageMain {
    max-width: 1200px;
  }
}
/* ------------------------------------------------
itempage__head
商品ページマークパーツ
------------------------------------------------ */
.fs-c-productMark > li {
  margin-top: 2px;
}
.fs-c-productMark > li .fs-c-productMark__mark {
  border-radius: 2px;
}
.fs-c-productMark > li .fs-c-productMark__mark--2 {
  background: #f7f7f7;
}
.fs-c-productMark > li .fs-c-productMark__mark--2 a {
  color: #545454;
}

.fs-c-productNumber {
  border: none;
  padding: 0;
}
.fs-c-productNumber .fs-c-productNumber__number {
  font-weight: initial;
}

.fs-c-productNameHeading {
  margin-bottom: 4px;
}

.itempage__head .fs-c-productNameHeading .fs-c-productNameHeading__copy {
  display: block;
  margin-bottom: 4px;
  font-weight: initial;
  font-size: 1.4rem;
  font-weight: 600;
}
.itempage__head .fs-c-productNameHeading .fs-c-productNameHeading__name {
  font-weight: initial;
}

@media screen and (min-width: 960px) {
  .fs-l-product2 .fs-l-productLayout {
    grid-template-rows: auto auto;
  }
  .itempage__head {
    grid-column: 1/3;
  }
  .itempage__head .fs-c-productNameHeading .fs-c-productNameHeading__copy {
    font-size: 1.5rem;
    letter-spacing: 1px;
    margin-bottom: 8px;
  }
}
/* ------------------------------------------------
サムネイル
------------------------------------------------ */
.fs-c-productCarouselMainImage__thumbnailList {
  flex-wrap: nowrap;
  overflow-x: scroll;
}

.fs-c-slick .slick-prev,
.fs-c-slick .slick-next {
  border-radius: 50%;
}

.fs-c-productCarouselMainImage {
  position: relative;
}

.fs-c-button--viewExtendedImage {
  border-radius: 50%;
  background: rgba(30, 30, 30, 0.3);
  width: 40px;
  height: 40px;
}
.fs-c-button--viewExtendedImage::before {
  opacity: 0.75;
  vertical-align: middle;
}
.fs-c-button--viewExtendedImage:hover::before {
  opacity: 1;
}

.fs-c-button--plain.fs-c-button--viewExtendedImage::before {
  font-size: 3rem;
  color: #fff;
}

.fs-c-productCarouselMainImage__expandButton {
  display: none;
}

.fs-c-productCarouselMainImage__thumbnail__caption {
  display: none;
}

.fs-c-productCarouselMainImage__thumbnailList {
  scrollbar-width: none; /* Firefox 対応 */
}
.fs-c-productCarouselMainImage__thumbnailList::-webkit-scrollbar {
  display: none; /* Chrome, Safari 対応 */
}
.fs-c-productCarouselMainImage__thumbnailList > li {
  flex-basis: 15vw;
}

@media screen and (min-width: 600px) {
  .slick-list.draggable {
    height: 100% !important;
  }
  .fs-c-productCarouselMainImage__image > img {
    width: 100vw;
    max-height: none;
  }
  .fs-c-productCarouselMainImage__thumbnailList > li {
    margin: 0;
    flex-basis: 10%;
  }
}
@media screen and (min-width: 960px) {
  .fs-c-productCarouselMainImage__image > img {
    height: calc(60vw - 8px);
    width: calc(60vw - 8px);
    max-height: 712px;
    max-width: 712px;
  }
  .fs-c-productCarouselMainImage__thumbnailList {
    min-height: auto;
    flex-wrap: wrap;
    overflow-x: initial;
  }
}
/* ------------------------------------------------
サムネイル ポップアップ時
------------------------------------------------ */
.fs-c-photoswipe .pswp__caption__center {
  text-align: center;
}

/* ------------------------------------------------
タブ/アコーデイオン
------------------------------------------------ */
.itempage__desc-tabs-ttl {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: scroll;
  border-bottom: 1px solid #ccc;
  cursor: pointer;
  scrollbar-width: none; /* Firefox 対応 */
}
.itempage__desc-tabs-ttl::-webkit-scrollbar {
  display: none; /* Chrome, Safari 対応 */
}
.itempage__desc-tabs-ttl > .itempage__desc-tabs-item {
  flex: none;
  font-size: 1.3rem;
  padding: 0 16px 8px 0;
}
.itempage__desc-tabs-ttl > .itempage__desc-tabs-item:hover {
  opacity: 0.8;
}
@media screen and (min-width: 960px) {
  .itempage__desc-tabs-ttl {
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .itempage__desc-tabs-ttl > .itempage__desc-tabs-item {
    flex: 0 1 16.6666666667%;
    padding: 0 0 16px;
    text-align: center;
  }
}

.itempage__product-comment summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 16px 8px;
  cursor: pointer;
}
.itempage__product-comment summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 10px;
  height: 10px;
  margin-left: 10px;
  border-bottom: 3px solid #3d3d3d;
  border-right: 3px solid #3d3d3d;
  content: "";
  transition: transform 0.3s;
}

.itempage__product-comment[open] summary::after {
  transform: rotate(225deg);
}

.itempage__product-comment::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  border-top: 1px solid #ccc;
}

/* ------------------------------------------------
独自コメント
------------------------------------------------ */
.itempage__heading {
  font-size: 1.4rem;
  margin: 0;
}
@media screen and (min-width: 960px) {
  .itempage__heading {
    font-size: 1.4rem;
  }
}

.itempage__inner-heading {
  font-weight: bold;
  margin-bottom: 4px;
}

.itempage__comment-box {
  padding: 8px 8px 16px;
  font-size: 1.3rem;
}
@media screen and (min-width: 960px) {
  .itempage__comment-box {
    padding: 16px 8px 40px;
  }
}

.itempage__btn--standard {
  box-shadow: none;
  margin-top: 1rem;
  padding:0;
}
.itempage__btn--standard a{
  padding: 10px 16px;
  display: block;
}
/*アイテム説明*/
.item-desc__heading {
  font-weight: bold;
  margin: 16px 0;
  font-size: 1.5rem;
}
.item-desc__heading02 {
  font-weight: bold;
  margin: 36px 0 10px;
  font-size: 1.8rem;
}
.item-desc__heading03 {
  font-weight: bold;
  margin: 36px 0;
  font-size: 1.8rem;
}

@media screen and (min-width: 960px) {
  .item-desc__heading02 {
    font-weight: bold;
    margin: 36px 0 10px;
    font-size: 1.9rem;
    letter-spacing: 0.05em;
  }
}
.item-desc__text {
  margin: 1rem 0;
}

.item-desc__lead {
  font-weight: bold;
  margin: 32px 0 8px;
  font-size: 1.5rem;
}

.item-desc__txt {
  margin-bottom: 8px;
}

/*　2025.03.28アイテム説明を常時オープンにするためコメントアウト
.item-desc__close {
  position: relative;
  height: auto;
  max-height: 850px;
  overflow: hidden;
  transition: max-height 1s;
}
.item-desc__close::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 50%;
  transition: 1s;
  background: linear-gradient(to bottom, transparent 0%, transparent 50%, #ffffff 100%);
}
.item-desc__close.open:after {
  z-index: -1;
  opacity: 0;
}
*/
/* スタッフコメント用折りたたみ */
#tabs_SFcmnt .item-desc__close {
  position: relative;
  height: auto;
  max-height: 850px;
  overflow: hidden;
  transition: max-height 1s;
}
#tabs_SFcmnt .item-desc__close::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 50%;
  transition: 1s;
  background: linear-gradient(to bottom, transparent 0%, transparent 50%, #ffffff 100%);
}
#tabs_SFcmnt .item-desc__close.open:after {
  z-index: -1;
  opacity: 0;
}

/*商品説明をもっと見るボタン*/
.item-desc__more-btn {
  background: #ffffff;
  border: 1px solid #bbbbbb;
  border-radius: 2px;
  color: #3c3c3c;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  padding: 0.8em 0;
  margin: 40px auto 16px;
  text-align: center;
  display: block;
  width: 60%;
}
@media screen and (min-width: 960px) {
  .item-desc__more-btn {
    width: 40%;
  }
}

.item-desc__inner-sec:not(:first-child) {
  padding-top: 1rem;
}

.item-desc__half-img-item, .item-desc__full-img-item {
  margin-bottom: 16px;
}

@media screen and (min-width: 960px) {
  .item-desc__half-img-item, .item-desc__full-img-item {
    margin-bottom: 32px;
  }
}
.img-item-desc {
  display: block;
  margin-top: 5px;
}
.img-item-desc02 {
  display: block;
  margin-top: 5px;
  font-size: 1.4rem;
  line-height: 3.6rem;
}
.img-item-desc03 {
  display: block;
  margin: 3rem auto 8rem;
  font-size: 1.5rem;
  line-height: 3.6rem;
}
span.line{
  font-size: 1.05em;
  font-weight: bold;
  background: linear-gradient(transparent 50%, rgb(248, 247, 204) 50%);
}
.border {
  width: 1px;
  height: 9rem;
  margin: 6rem auto 8rem;
  background: #3a3a3a;
  clear: both;
}
@media screen and (min-width: 960px) {
.border {
  margin: 10rem auto;
}
}

@media screen and (min-width: 600px) {
  .item-desc__half-img-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .item-desc__half-img-wrap .item-desc__half-img-item {
    flex: 0 1 48%;
  }
}

/* スタッフコメント */
#tabs_SFcmnt .marker{
    background: linear-gradient(transparent 70%, rgba(171, 154, 134, 0.4) 70%);
    font-weight: bold;
}
#tabs_SFcmnt .mt-1em{
	margin-top: 1em;
}
.itempage__comment-box{
    padding-top: 0;
}
#tabs_SFcmnt .item-desc__close{
    max-height: 160px;
}

#tabs_SFcmnt .item-desc__heading#SFcmnt_heading{
    margin-top: 0;
    padding-right: 75px;
    min-height: 70px;
    background-image: url("https://fromfloor.itembox.design/item/SFcmnt/common/SFcmnt_staff.svg");
    background-size: contain;
    background-position: center right;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}
#tabs_SFcmnt .item-desc__heading#SFcmnt_heading.staff_k{
    background-image: url("https://fromfloor.itembox.design/item/SFcmnt/common/staff_k.svg");
}
#tabs_SFcmnt .item-desc__heading#SFcmnt_heading.staff_t{
    background-image: url("https://fromfloor.itembox.design/item/SFcmnt/common/staff_t.svg");
}
#tabs_SFcmnt .img_wrap{
    max-width: 200px;
    margin: 0 auto 14px auto;
}
#tabs_SFcmnt .itempage__inner-heading{
    margin-top: 1.8em;
    font-size:14px;
}
@media screen and (min-width: 600px) {
    #tabs_SFcmnt .img_wrap{
        float: right;
        margin: 0 0 10px 10px;
    }
}
/* ------------------------------------------------
商品詳細・仕様
------------------------------------------------ */
#tabs02 table {
  margin-bottom: 16px;
}
#tabs02 table td {
  width: 100%;
  display: block;
}
#tabs02 table th {
  width: 100%;
  display: block;
}

@media screen and (min-width: 960px) {
  #tabs02 table td {
    padding-left: 16px;
    width: auto;
    display: table-cell;
  }
  #tabs02 table th {
    vertical-align: top;
    width: auto;
    max-width: 150px;
    display: table-cell;
  }
}
#caution_wrap {
  margin-bottom: 1em;
}

/* ------------------------------------------------
お手入れ方法 care
------------------------------------------------ */
.care__img-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 2rem;
}
.care__img-list .care__img-item {
  flex: 0 1 16.6666666667%;
  padding: 5px;
}
@media screen and (min-width: 960px) {
  .care__img-list .care__img-item {
    flex: 0 1 10%;
  }
}

.care__desc-item {
  margin-bottom: 1em;
}

/* ------------------------------------------------
返品に関して tabs05
------------------------------------------------ */
.tabs05_list {
  margin-bottom: 16px;
}
.tabs05_list > li {
  list-style-type: disc;
  list-style-position: inside;
}
.tabs05_list > li.note-supplement {
  list-style-type: none;
  margin-top: 8px;
}

/* ------------------------------------------------
Q&A
------------------------------------------------ */
.qa-item {
  margin-bottom: 16px;
}

.qa-item__heading {
  margin-bottom: 4px;
  font-weight: bold;
}

/* ------------------------------------------------
レビューパーツ
------------------------------------------------ */
.fs-c-productReview__addReview.fs-c-buttonContainer.fs-c-buttonContainer--addReview--detail {
  padding: 16px 0;
  /* 202503非表示に */
  display:none;
}

.fs-c-reviewList__item {
  border-bottom: 1px solid #ccc;
}

.fs-c-reviewList__item:first-child {
  border-top: 1px solid #ccc;
}

.fs-c-aggregateRating {
  padding: 32px 0 8px;
}

/*-- レビューをみる --*/
.fs-c-productReviewed {
  max-width: 600px;
  margin: 0 auto;
}

.fs-c-productReviewed__name {
  grid-column: 2;
  grid-row: 2;
}

.fs-c-productReviewed__number {
  grid-column: 2;
  grid-row: 3;
}

.fs-c-productReviewed__prices {
  grid-column: 2;
  grid-row: 4;
}

.fs-c-productReviewed__image {
  grid-row: 1/5;
}

.fs-c-productReviewed + .fs-c-aggregateRating {
  margin: 0;
}

.fs-c-productReviewed__image {
  width: 150px;
}

.fs-c-productReviewed {
  grid-template-columns: auto 1fr;
  grid-gap: 4px 16px;
  margin: 0;
}

.fs-c-productReviewed__prices .fs-c-productPrice {
  justify-content: start;
}

@media screen and (min-width: 960px) {
  .fs-c-productReviewed__image {
    width: 200px;
  }
}
/*-- レビューを書く --*/
.fs-body-review-write .fs-c-reveiwNotes {
  border: 1px solid #ccc;
  padding: 0 16px 16px;
  font-size: 1.2rem;
}

/* ------------------------------------------------
【右側】 商品名価格情報
------------------------------------------------ */
.itempage__cart-wrap {
  display: grid;
  grid-template-rows: auto;
  grid-row-gap: 16px;
}

.fs-c-productChooseVariation {
  grid-column: 1/3;
  grid-row: 1/2;
}

/*--バリエーションが二つ+一つ目のバリエーションが色窓の時のpanel__labelを消す--*/
.fs-c-productChooseVariation__variation:first-child .fs-c-variationPanelList__panel__label {
  display: none;
}

/*--一つ目のバリエーションが色窓の時の色窓の横並び個数の制御--*/
.fs-c-productChooseVariation__variation:last-child .fs-c-variationPanelList__list {
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: initial;
  overflow-x: auto;
}
@media screen and (min-width: 600px) {
  .fs-c-productChooseVariation__variation:last-child .fs-c-variationPanelList__list {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-flow: initial;
    overflow-x: auto;
  }
}
@media screen and (min-width: 960px) {
  .fs-c-productChooseVariation__variation:last-child .fs-c-variationPanelList__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.fs-c-productChooseVariation__variation:last-child .fs-c-variationPanelList__list .fs-c-variationPanelList__list__item {
  min-width: initial;
}
.fs-c-productChooseVariation__variation:first-child .fs-c-variationPanelList__list {
  display: flex;
  flex-wrap: wrap;
}
.fs-c-productChooseVariation__variation:first-child .fs-c-variationPanelList__list .fs-c-variationPanelList__list__item {
  flex: 0 1 calc((100% - 32px) / 5);
}
@media screen and (min-width: 960px) {
  .fs-c-productChooseVariation__variation:first-child .fs-c-variationPanelList__list .fs-c-variationPanelList__list__item {
    flex: 0 1 calc((100% - 40px) / 6);
  }
}

.fs-c-variationPanelList__panel__label {
  font-weight: initial;
  font-size: 12px;
  display: block;
  text-align: center;
  line-height: 2.5;
}

.fs-c-variationLabel__label {
  font-weight: initial;
}

.fs-c-variationPanelList__panel__image {
  height: initial;
  max-height: none;
  padding: 0;
}

.fs-c-variationPanelList__panel__price {
  display: none;
}

.fs-c-variationPanelList__panel__content {
  min-height: auto;
  display: block;
  position: relative;
  background: transparent;
  padding: 3px;
}

#fs_ProductDetails .fs-c-button--primary {
  padding: 1.6em;
  width: 100%;
	background-color: rgb(136, 0, 0);
	border: none;
	border-radius: 2px;
	margin: 16px 0;

}

.fs-c-variationPanelList__radio:checked + .fs-c-variationPanelList__panel .fs-c-variationPanelList__panel__content {
  background: #707070;
  border: none;
}
/* ------------------------------------------------
【右側】 商品名価格情報 名入れ項目あり
------------------------------------------------ */
dl.fs-c-productOption {
  grid-column: 1/3;
}

/* ------------------------------------------------
売り切れの時
------------------------------------------------ */
/* -- バリエーションあり --*/
.fs-c-variationPanelList__radio:checked + .fs-c-variationPanelList__panel:where(:not(.fs-c-variationPanelList__panel--outOfStock)) {
  border-color: #707070;
}

.fs-c-variationPanelList__panel--outOfStock {
  position: relative;
}

.fs-c-variationPanelList__panel--outOfStock .fs-c-variationPanelList__panel__image {
  opacity: 0.4;
}

.fs-c-variationPanelList__panel__stock {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.fs-c-productNotice--outOfStock {
  grid-column: 1/3;
}

/* ------------------------------------------------
カラー選択時
------------------------------------------------ */
.fs-c-productChooseVariation__variation:first-child .fs-c-variationPanelList__list .fs-c-variationPanelList__radio:checked + .fs-c-variationPanelList__panel:where(:not(.fs-c-variationPanelList__panel--outOfStock)) {
  position: relative;
}

.fs-c-productChooseVariation__variation:first-child .fs-c-variationPanelList__list .fs-c-variationPanelList__radio:checked + .fs-c-variationPanelList__panel:where(:not(.fs-c-variationPanelList__panel--outOfStock))::before {
  content: "✓";
  position: absolute;
  z-index: 1;
  color: #fff;
  background-color: #667895;
  display: block;
  border-radius: 50%;
  top: 4px;
  left: 4px;
  font-size: 1.3rem;
  width: 18px;
  height: 18px;
  text-align: center;
  line-height: 18px;
}

@media screen and (min-width: 960px) {
  .fs-c-productChooseVariation__variation:first-child .fs-c-variationPanelList__list .fs-c-variationPanelList__radio:checked + .fs-c-variationPanelList__panel:where(:not(.fs-c-variationPanelList__panel--outOfStock))::before {
    content: "✓";
    width: 20px;
    height: 20px;
    line-height: 20px;
  }
}
/* ------------------------------------------------
受注生産の時
------------------------------------------------ */
.fs-c-variationPanelList__panel__caption {
  display: none;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
  background: rgba(112, 112, 112, 0.8);
  font-size: 1.1rem;
}

.fs-c-variationPanelList__radio:checked + .fs-c-variationPanelList__panel .fs-c-variationPanelList__panel__content .fs-c-variationPanelList__panel__caption {
  display: initial;
}

/* ------------------------------------------------
販売期間表示パーツ
------------------------------------------------ */
.fs-c-productSalesPeriod {
  grid-column: 1/3;
}

/* ------------------------------------------------
予約コメントパーツ
------------------------------------------------ */
.fs-c-productPreorderMessage {
  grid-column: 1/3;
}

/* ------------------------------------------------
価格表示
------------------------------------------------ */
.fs-c-productPrice {
  justify-content: end;
}

.fs-c-productPrice__main {
  font-weight: bold;
}

.fs-c-productPrices--productDetail {
  grid-row: 2 / 3;
  grid-column: 1/3;
  align-self: end;
}

.fs-c-productQuantityAndWishlist {
  grid-row: 4 / 5;
  grid-column: 1/3;
  align-self: end;
}
.fs-c-productQuantityAndWishlist .fs-c-productQuantityAndWishlist__quantity::before {
  content: "数量";
  display: block;
}

.fs-c-quantity__select {
  padding: 4px 8px;
  /* width: 80px; */
  height: 30px;
}

.fs-c-productQuantityAndWishlist__wishlist {
  align-self: end;
  padding: 0;
}
.fs-c-productQuantityAndWishlist__wishlist .fs-c-button--particular {
  box-shadow: none;
  padding: 4px 8px;
  height: 30px;
}
/* ポイントパーツ */
.fs-c-productPointDisplay{
	grid-row: 3 / 4;
	grid-column:  1 / 3;
	display: block;
	background: none;
	color: #232323;
	font-size: 1.1rem;
	text-align: right;
	margin-bottom: 5px;
	margin-top: -10px;
}

/* ------------------------------------------------
デリバリー表
------------------------------------------------ */
.deli-info-wrap {
  grid-column: 1/3;
  grid-row: 5 / 6;
}

.cart__deli-table {
  border: 1px solid #ccc;
  font-size: 1.2rem;
  border-collapse: collapse;
  width: 100%;
}
.cart__deli-table th {
  background-color: #f7f7f7;
  text-align: center;
  padding: 4px 8px;
}
.cart__deli-table td {
  padding-left: 5px;
}
.cart__deli-table .amazonpay-message {
  display: block;
  font-size: 1.1rem;
  color: #880000;
}

.shipping-imfo {
  background: #f7f7f7;
  text-align: center;
  padding: 4px 0;
  margin-top: 16px;
  margin-bottom: 16px;
}
.shipping-imfo > span {
  font-weight: bold;
  margin-left: 4px;
  letter-spacing: 1px;
}

@media screen and (min-width: 960px) {
  .cart__deli-table {
    font-size: 1.3rem;
  }
}
/* ------------------------------------------------
機能アイコン
------------------------------------------------ */
#funk__img-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 16px;
}
#funk__img-list .funk__img-item {
  flex: 0 1 calc((100% - 24px) / 7);
}

/* ------------------------------------------------
機能アイコンポップアップ
------------------------------------------------ */
/*ポップアップ*/
.popup-btn:hover, .popup-btn:focus {
  text-decoration: none;
  cursor: pointer;
}

.popup {
  display: none;
  position: fixed;
  z-index: 6;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  overflow: auto;
  /* background-color: rgba(0, 0, 0, 0.7); */
  transition: all 1s ease-in-out 0s;
}
.popup .popup-content {
  background: #FFF;
  overflow-y: auto;
  padding: 16px;
  width: 90%;
  max-width: 500px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-height: 400px;
  animation: show 0.6s linear 0s;
  filter: drop-shadow(0px 2px 6px #777);
}

@media screen and (min-width: 960px) {
  .popup .popup-content {
    max-width: 600px;
    padding: 48px 32px;
  }
}
.close-wrap {
  display: inline-block;
  position: absolute;
  right: 5px;
  top: 5px;
}
.close-wrap .closebtn {
  font-size: 5rem;
  line-height: 1;
  padding: 0 8px;
}

.closebtn:hover, .closebtn:focus {
  text-decoration: none;
  cursor: pointer;
}

.pop_container > .funk_img {
  max-width: 150px;
  margin: 0 auto;
  width: 30%;
}
.pop_container > .funk__ttl {
  font-weight: 500;
  font-size: 1.3rem;
  margin-top: 8px;
}
.pop_container > .funk_desc {
  font-size: 1.2rem;
  margin-top: 4px;
  line-height: 1.6;
}
.pop_container > .funk_itemlist_liknk {
  margin-top: 16px;
  text-align: right;
}
.pop_container > .funk_itemlist_liknk > a {
  font-size: 1.3rem;
  text-decoration: underline;
}

@media screen and (min-width: 960px) {
  .pop_container {
    display: grid;
    grid-template-columns: 100px auto;
    grid-template-rows: repeat(3, auto);
    grid-gap: 8px 32px;
  }
  .pop_container > .funk_img {
    width: 100px;
    grid-row: 1/-1;
  }
  .pop_container > .funk__ttl {
    font-size: 1.6rem;
    margin-top: 0;
    grid-row: 1/2;
    grid-column: 2/3;
  }
  .pop_container > .funk_desc {
    font-size: 1.3rem;
    margin-top: 0;
    grid-row: 2/3;
    grid-column: 2/3;
  }
  .pop_container > .funk_itemlist_liknk {
    grid-row: 3/4;
    grid-column: 2/3;
  }
}
/* ------------------------------------------------
カートボタン
------------------------------------------------ */
.fs-c-buttonContainer {
  padding: 0;
}

.fs-c-productActionButton {
  grid-row: 6 / 7;
  grid-column: 1/3;
}

.fs-c-buttonContainer--inquiryAboutProduct {
  grid-column: 1/3;
  justify-content: center;
}

/* ------------------------------------------------
サンプルボタン
------------------------------------------------ */
.itempage__sample-btn {
  padding: 1.3em;
  grid-column: 1/3;
  display: block;
}
.itempage__sample-btn > * {
  display: flex;
  align-self: flex-start;
  align-items: center;
  justify-content: center;
}
.itempage__sample-btn > * > img {
  display: inline-block;
  margin-right: 10px;
  width: 30px;
}

.itempage__sample-btn.itempage__sample-btn {
  font-size: 1.4rem;
}
.itempage__sample-btn.itempage__sample-btn > * {
  color: #3c3c3c !important;
}
/* ------------------------------------------------
<!-- 引き取りキットなどのバナー -->
------------------------------------------------ */
.itempage_other-bnr {
  grid-column: 1/3;
  justify-self: center;
  margin-top: 10px;
}

/* ------------------------------------------------
<!-- ショールームバナー -->
------------------------------------------------ */
.itempage_showroom-bnr {
  grid-column: 1/3;
  justify-self: center;
}

/* ------------------------------------------------
カート下
------------------------------------------------ */
.productdetail__infolist {
  grid-column: 1/3;
  font-size: 1.1rem;
  line-height: 1.7;
}
.productdetail__infolist a {
  color: #3c3c3c;
}
.productdetail__infolist .productdetail__infoitem--atten > a {
  color: #880000;
}

.fs-c-button--inquiryAboutProduct > span::before {
  content: "\f4ad";
  font-family: "Font Awesome 5 Free";
  margin-right: 10px;
}

@media screen and (min-width: 960px) {
  .productdetail__infolist {
    font-size: 1.2rem;
  }
}
/* ------------------------------------------------
sns
------------------------------------------------ */
.fs-p-snsArea > * {
  margin-right: 0;
}

.fs-p-snsArea {
  grid-column: 1/3;
  background-color: #f7f7f7;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0;
  padding: 8px 0 0;
  display: grid;
  grid-template-rows: repeat(2, auto);
}

.sns__caption {
  text-align: center;
  margin-bottom: 4px;
  font-size: 1.1rem;
}

.sns__icon-wrap {
  grid-row: 2/3;
  display: flex;
  justify-content: center;
}
.sns__icon-wrap > * {
  margin-right: 8px;
}

/* ------------------------------------------------
サンプル
------------------------------------------------ */
#sample_request_area {
  grid-column: 1/3;
}

/* ------------------------------------------------
商品説明（大）価格テーブル
------------------------------------------------ */
.ordercpt-price-table__wrap {
  width: 85vw;
  overflow-x: auto;
  padding: 1rem 0;
  cursor: pointer;
  scrollbar-width: none; /* Firefox 対応 */
  /* Chrome, Safari 対応 */
}
.ordercpt-price-table__wrap::-webkit-scrollbar {
  display: none;
}
.ordercpt-price-table__wrap table {
  border-collapse: collapse;
  text-align: center;
  font-size: 13px;
}
.ordercpt-price-table__wrap table th {
  border: solid 1px #ccc;
  background-color: #f7f7f7;
  height: 35px;
  padding: 0 10px;
}
.ordercpt-price-table__wrap table td {
  border: solid 1px #ccc;
  height: 35px;
  padding: 0 10px;
}
.ordercpt-price-table__wrap table td:first-child {
  background-color: #f7f7f7;
  font-weight: bold;
  padding: 0 15px;
  width: 90px;
}

.price-table__atten {
  text-align: right;
  margin-top: 0.5em;
}

.fs-p-productDescription--full {
  margin: 1rem 0 3rem 0;
}

@media screen and (min-width: 600px) {
  .ordercpt-price-table__wrap table {
    max-width: 100vw;
    font-size: 11px;
  }
  .ordercpt-price-table__wrap table:first-child {
    padding: 0 10px;
    width: auto;
  }
}
@media screen and (min-width: 960px) {
  .ordercpt-price-table__wrap {
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .ordercpt-price-table__wrap {
    scrollbar-width: auto;
  }
  .ordercpt-price-table__wrap::-webkit-scrollbar {
    display: block; /* Chrome, Safari 対応 */
  }
}
/* ------------------------------------------------
商品詳細 価格マトリクス表
------------------------------------------------ */
.itemdesc-matrix__btn {
  width: 100%;
  font-size: 1.4rem;
  background-color: #f7f7f7;
  color: #3c3c3c;
  margin: 8px 0 16px;
  padding: 16px 0;
  border-radius: 2px;
  border: 1px solid #ccc;
}

@media screen and (min-width: 960px) {
  .itemdesc-matrix__btn {
    margin: 16px 0 48px;
  }
}
.hidden {
  display: none;
}

#matrix__mask {
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 1;
}

#matrix__modal {
  background: #fff;
  width: auto;
  padding: 3rem;
  border-radius: 2px;
  color: #333;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  margin: 0 auto;
  z-index: 2;
}

/* ------------------------------------------------
オーダー入力
------------------------------------------------ */
.order-cpt__product-option-section {
  margin-bottom: 2rem;
}

.product-option__label {
  background-color: #f5f5f5;
  padding: 0.5em 1rem;
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-between;
}

.product-option__label > .product-option__info-link {
  font-size: 0.9em;
}

.label__caption {
  margin-bottom: 2rem;
}

.order-cpt__product-option-wrap {
  grid-column: 1/3;
}

.radio__item-wrap--clr {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(4, 1fr);
}
.radio__item-wrap--clr .radio__item-name {
  font-size: 11px;
}
.radio__item-wrap--clr .radio__item-img {
  padding: 0px 0px 3px;
}
.radio__item-wrap--shape {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, 1fr);
}
.radio__item-wrap--shape .radio__item-img {
  padding: 10px 10px 3px;
}

.radio__item-wrap--clr .radio__item,
.radio__item-wrap--shape .radio__item {
  text-align: center;
}

.radio__item-wrap--clr input,
.radio__item-wrap--shape input {
  display: none;
}

.radio__item-wrap--clr label,
.radio__item-wrap--shape label {
  border: 1px solid #cccccc;
  border-radius: 3px;
  display: grid;
  grid-template-rows: 1fr auto;
  flex-grow: 1;
  height: 100%;
  overflow: hidden;
  padding: 5px;
}

.radio__item-wrap--clr input:checked + .radio__item-clr,
.radio__item-wrap--shape input:checked + .radio__item-shape {
  background: #707070;
  border: none;
  color: #fff;
}

.order-cpt__product-option-section .ff-hr {
  margin: 2rem 0;
}

.order-cpt__product-option-inner {
  padding: 0 10px;
}

/*サイズ入力*/
.size__item--select {
  display: grid;
  grid-template-columns: repeat(2, auto);
  border: 1px solid #ccc;
  border-radius: 2px;
  padding: 10px;
  margin-bottom: 2rem;
}

p.size__item--select-name {
  align-self: center;
}

.radio__item-wrap--size {
  display: grid;
  grid-template-columns: repeat(2, auto);
}

.range_caption {
  font-size: 11px;
}

.size-check__info {
  grid-column: 1/3;
  margin-top: 1rem;
}

.size-input {
  width: 50%;
}

.range_wrap::after {
  content: "cm";
  display: inline-block;
}

.fs-c-productOption__comment{
	margin-bottom: 8px;
}


/* ------------------------------------------------
おすすめ商品
------------------------------------------------ */
.fs-c-featuredProduct {
  border-bottom: 1px solid #ccc;
  padding: 2.5rem 0;
}
.fs-c-featuredProduct .fs-c-featuredProduct__title {
  font-size: 1.6rem;
  border: none;
}

.fs-c-productListCarousel__list .fs-c-productName__copy {
  font-size: 0.9rem;
  color: #3c3c3c;
  margin-bottom: 4px;
}

@media screen and (min-width: 960px) {
  .fs-c-slick {
    height: auto !important;
    max-width: initial !important;
  }
  .fs-c-productListCarousel__list .fs-c-productName__copy {
    font-size: 1rem;
  }
}
/* ------------------------------------------------
お気に入りリスト商品
------------------------------------------------ */
.fs-c-wishlistProduct {
  border-bottom: 1px solid #ccc;
  padding: 2.5rem 0;
}
.fs-c-wishlistProduct .fs-c-wishlistProduct__title {
  font-size: 1.6rem;
  border: none;
}

/* ------------------------------------------------
カート
------------------------------------------------ */
.fs-c-continueShopping {
  border-bottom: 1px solid #ccc;
  padding: 2.5rem 0;
}

/* ------------------------------------------------
商品ページボトムパンくず
------------------------------------------------ */
#sub_bread {
  margin-top: 8px;
}
#sub_bread .fs-c-breadcrumb__list--subgroup {
  display: none;
}

#sub_bread_list .fs-c-breadcrumb__listItem + .fs-c-breadcrumb__listItem::before {
  content: none;
}

#sub_bread_list li {
  margin-right: 8px;
  margin-top: 8px;
}
#sub_bread_list li a {
  border: 1px solid #ccc;
  border-radius: 2px;
  padding: 4px 8px;
  display: block;
  color: #3c3c3c;
}
#sub_bread_list li a:before {
  content: "\f002";
  font-family: "Font Awesome 5 Free";
  font-size: 0.8em;
  font-weight: 600;
  margin-right: 4px;
}

@media screen and (min-width: 960px) {
  #sub_bread_list li a {
    padding: 4px 16px;
  }
}
/* ------------------------------------------------
ページ下特集シリーズバナー
------------------------------------------------ */
.under-itempage-bnr {
  padding: 2.5rem 0;
}

@media screen and (min-width: 600px) {
  .under-itempage-bnr {
    max-width: 400px;
  }
}
/* ------------------------------------------------
サンプル請求ボタン
------------------------------------------------ */
.footerSampleBtn {
  position: fixed;
  right: 8px;
  left: auto;
  bottom: 62px;
  z-index: 100;
  display: none;
  width: 50px;
}

@media screen and (min-width: 960px) {
  .footerSampleBtn {
    bottom: 113px;
    width: 65px;
  }
}
@media screen and (min-width: 1200px) {
  .footerSampleBtn {
    right: calc((100vw - 1200px) / 2 - 65px - 16px);
  }
}/*# sourceMappingURL=ff_itempage.css.map */
