@charset "UTF-8";
/* =============================================
 ###　基本構成
============================================= */
img {
  width: 100%;
  height: auto;
}

[type=hidden],
[type=text],
[type=search],
[type=tel],
[type=url],
[type=email],
[type=password],
[type=datetime],
[type=date],
[type=month],
[type=week],
[type=time],
[type=datetime-local],
[type=number],
select,
textarea {
  padding: 9px;
}

input[type=text],
input[type=reset],
input[type=number],
input[type=password],
input[type=email],
input[type=tel] {
  border: 1px solid #525252;
  border-radius: 2px;
}

textarea {
  border: 1px solid #525252;
  border-radius: 2px;
}

@media screen and (min-width: 992px) {
  a,
  button[type=button],
  button[type=reset],
  button[type=submit],
  input[type=button],
  input[type=submit],
  label[class*=btn_] {
    transition: 0.4s;
  }
}
/*@include sp {
	a[class*=btn_]:active,
	button[type=button]:active,
	button[type=reset]:active,
	button[type=submit]:active,
	input[type=reset]:active,
	input[type=button]:active {
		position:relative;
		top:1px;
		left:1px;
	}
}*/
/* =============================================
 ###　FUNCTIONAL CLASS
============================================= */
.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}

/* =============================================
 ###　FUNCTIONAL CLASS (PORTING BOOTSTRAP)
============================================= */
.is_pc {
  display: block !important;
}

@media screen and (max-width: 991px) {
  .is_pc {
    display: none !important;
  }
}
.is_sp {
  display: none !important;
}

@media screen and (max-width: 991px) {
  .is_sp {
    display: block !important;
  }
}
.t-center {
  text-align: center;
}

.t-justify {
  text-align: justify;
}

.d-flex {
  display: flex;
}

@media screen and (max-width: 991px) {
  .d-sp-flex--between {
    display: flex;
    justify-content: space-between;
  }
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.mt-3,
.my-3 {
  margin-top: 10px !important;
  margin-top: 1rem !important;
}

.mt-4,
.my-4 {
  margin-top: 15px !important;
  margin-top: 1.5rem !important;
}

.mt-5,
.my-5 {
  margin-top: 30px !important;
  margin-top: 3rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 10px !important;
  margin-bottom: 1rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 15px !important;
  margin-bottom: 1.5rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 30px !important;
  margin-bottom: 3rem !important;
}

@media (min-width: 992px) {
  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }
}
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col,
.col-auto,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm,
.col-sm-auto,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.inner-grid-width,
.col-md-9,
.col-md-10,
.outer-grid-width,
.col-md-11,
.col-md-12,
.col-md,
.col-md-auto,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg,
.col-lg-auto,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

@media (min-width: 992px) {
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
}
@media (min-width: 992px) {
  .col-md-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
}
@media (min-width: 992px) {
  .col-md-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
}
.zoom_hover,
.zoom_hover:hover .zoom_hover_target {
  position: relative;
  overflow: hidden;
  display: block;
}

.zoom_hover .image_wrap,
.zoom_hover:hover .zoom_hover_target .image_wrap {
  overflow: hidden;
}

.zoom_hover img,
.zoom_hover:hover .zoom_hover_target img {
  display: block;
  transition: 0.5s;
  transform: scale(1);
}

.zoom_hover.zoom_up:hover img,
.zoom_hover:hover .zoom_up.zoom_hover_target:hover img {
  transform: scale(1.1);
}

.zoom_hover.zoom_up:hover .label_image,
.zoom_hover:hover .zoom_up.zoom_hover_target:hover .label_image {
  transform: scale(1);
}

.zoom_hover.js_zoom_up img,
.zoom_hover:hover .js_zoom_up.zoom_hover_target img {
  transform: scale(1.1);
}

.zoom_hover.zoom_down,
.zoom_hover:hover .zoom_down.zoom_hover_target {
  transform: scale(1.1);
}

.zoom_hover.zoom_down:hover img,
.zoom_hover:hover .zoom_down.zoom_hover_target:hover img {
  transform: scale(1);
}

.zoom_hover,
.zoom_hover:hover .zoom_hover_target {
  display: block;
}

.zoom_hover .zoom_hover_target,
.zoom_hover:hover .zoom_hover_target .zoom_hover_target {
  overflow: hidden;
  position: relative;
}

.zoom_hover .zoom_hover_target img,
.zoom_hover:hover .zoom_hover_target .zoom_hover_target img {
  transition: 0.5s;
  display: block;
}

.zoom_hover:hover .zoom_hover_target img {
  transform: scale(1.1);
}

.clearfix {
  display: inline-block;
  min-height: 1%;
}

.clearfix {
  display: block;
}

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

/* =============================================
 ###　SLICK
============================================= */
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  visibility: visible;
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* =============================================
 ###　LAYOUT
============================================= */
/* --------------------------------------------
 LAYOUT
-------------------------------------------- */
@media screen and (min-width: 992px) {
  .fs-l-page {
    width: 100%;
    margin: 0 auto;
    min-height: auto !important;
    /*  padding-bottom:36px;*/
    position: relative;
    padding-top: 75px;
    padding-bottom: 0;
    /*  overflow-x: hidden;*/
  }
}
@media screen and (max-width: 991px) {
  .fs-l-page {
    padding-top: 70px;
  }
}
.fs-preview-header {
  display: none;
}

#fs-page-error-container {
  text-align: center;
}

@media screen and (min-width: 992px) {
  .fs-c-breadcrumb,
  .fs-l-main,
  .ctm_l-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1279px) {
  .fs-c-breadcrumb,
  .fs-l-main,
  .ctm_l-container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media screen and (max-width: 991px) {
  .fs-c-breadcrumb,
  .fs-l-main,
  .ctm_l-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media screen and (min-width: 992px) {
  .fs-l-main {
    margin-bottom: 10rem;
  }
}
@media screen and (max-width: 991px) {
  .fs-l-main {
    margin-bottom: 5rem;
  }
}
.ctm_l-remove {
  display: none;
}

@media screen and (min-width: 992px) {
  .ctm_system-container {
    max-width: 768px;
    padding: 0;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 991px) {
  .ctm_system-container {
    padding: 0;
    margin-bottom: 45px;
  }
}
/* PAGE SPECIFIC Layout */
@media screen and (min-width: 992px) {
  #fs_ProductDetails .fs-c-breadcrumb,
  #fs_ProductDetails .fs-l-main,
  #fs_ProductDetails .ctm_l-container {
    /*      min-width: $content-max;*/
  }
}
@media screen and (min-width: 992px) {
  #fs_ProductCategory .fs-l-main {
    /* 250807 */
    /*    max-width: none;*/
  }
}
@media screen and (max-width: 991px) {
  #fs_ProductCategory .fs-l-main {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (min-width: 992px) {
  #fs_ProductCategory .ctm_group-header,
  #fs_ProductCategory .ctm_group-nav,
  #fs_ProductCategory .ctm_page-header,
  #fs_ProductCategory .ctm_page--guide,
  #fs_ProductCategory .ctm_page--ranking,
  #fs_ProductCategory .fs-c-productList {
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
  }
}
@media screen and (max-width: 991px) {
  #fs_ProductCategory .ctm_group-header,
  #fs_ProductCategory .ctm_group-nav,
  #fs_ProductCategory .ctm_page-header,
  #fs_ProductCategory .ctm_page--guide,
  #fs_ProductCategory .ctm_page--ranking,
  #fs_ProductCategory .fs-c-productList {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
/* --------------------------------------------
 BREADCRUMB
-------------------------------------------- */
.fs-l-main + .fs-c-breadcrumb {
  display: none;
}

@media screen and (max-width: 991px) {
  .fs-l-main + .fs-c-breadcrumb {
    display: block;
  }
}
.fs-c-breadcrumb__list {
  box-sizing: border-box;
  list-style: none;
  margin: 0 0 3rem;
  padding: 0;
}

.fs-c-breadcrumb__list--subgroup {
  display: none;
}

.fs-c-breadcrumb .fs-c-breadcrumb__list li {
  font-size: 1.2rem;
  /*R*/
}

/* =============================================
 ###　FS SYSTEM COMPONENT
============================================= */
.fs-c-requiredMark {
  line-height: 1.5;
}

ol.fs-c-orderedList {
  list-style: decimal;
}

/* --------------------------------------------
 BTN
-------------------------------------------- */
.btn1 a {
  display: block;
  position: relative;
  border: 1px solid #525252;
  text-align: center;
  padding: 23px 0;
  line-height: 1;
  margin: 0 auto;
}

.btn1 a:hover {
  background-color: #525252;
  color: #fff;
}

.fs-c-button--primary {
  display: block;
  background-color: #525252;
  color: #fff;
  text-align: center;
  font-size: 1.3rem;
  line-height: 1.5;
  padding: 15px 0;
  width: 100%;
  border: none;
  border: 1px solid #525252;
}

.fs-c-button--primary:hover {
  opacity: 0.8;
}

@media screen and (min-width: 992px) {
  .fs-c-button--primary {
    font-size: 1.3rem;
    width: 228px;
  }
}
.fs-c-button--secondary {
  display: block;
  border: 1px solid #525252;
  /* background-color: #fff; */
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.5;
  padding: 10px 0;
  width: 100%;
}

@media screen and (min-width: 992px) {
  .fs-c-button--secondary {
    width: 228px;
    padding: 15px 0;
  }
}
.fs-c-button--secondary:hover {
  opacity: 0.8;
}

.fs-c-button--standard {
  text-align: center;
  /*    padding: 7px 15px;*/
  padding: 15px;
  /*TW*/
  width: 100%;
  border: none;
  display: block;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #525252;
  font-size: 1.3rem;
  background-color: #fff;
  border-radius: 0;
}

@media screen and (min-width: 992px) {
  .fs-c-button--standard {
    width: 228px;
    padding: 15px 0;
  }
}
.fs-c-button--standard:hover {
  opacity: 0.8;
}

.fs-c-button--plain {
  display: block;
  text-align: center;
  padding: 0;
  width: 100%;
  color: #000;
  border: none;
  border-radius: 5px;
}

@media screen and (min-width: 992px) {
  .fs-c-button--plain {
    padding: 0;
  }
}
.fs-c-button--plain:hover {
  opacity: 0.8;
}

.fs-c-button--loginAndPurchase,
.fs-c-button--confirmOrder,
.fs-c-button--purchaseHere,
.fs-c-button--registerAndPurchase {
  margin: 0 auto;
  max-width: 100%;
}

.fs-c-buttonContainer--memberRegister {
  display: -ms-flex;
  display: flex;
  justify-content: space-around;
}

@media screen and (min-width: 992px) {
  .fs-c-buttonContainer--memberRegister {
    display: -ms-flex;
    display: flex;
    justify-content: space-around;
  }
}
.fs-c-button--change--small {
  padding: 11px 0;
  font-size: 1.3rem;
  background-color: #525252;
  color: #fff;
  border-radius: 0;
}

@media screen and (min-width: 992px) {
  .fs-c-button--change--small {
    font-weight: normal;
    width: 200px;
    padding: 7px 0;
    transition: 0.3s;
  }
}
.fs-c-button--change--small:hover {
  opacity: 0.8;
}

/*お届け先リストから選ぶ*/
.fs-c-button--chooseDestination {
  width: 100%;
  padding: 11px 0;
  font-size: 1.3rem;
  border-radius: 0;
}

@media screen and (min-width: 992px) {
  .fs-c-button--chooseDestination {
    font-weight: normal;
    width: auto;
    padding: 7px 20px;
  }
}
.fs-c-button--chooseDestination:hover {
  opacity: 0.8;
}

/* --------------------------------------------
 BUTTUN TEXT→BTN
-------------------------------------------- */
.fs-c-button--guestPurchase,
.fs-c-button--viewOrderHistoryDetail,
.fs-c-button--myPageTop {
  display: block;
  background-color: #fff;
  text-align: center;
  font-size: 1.4rem;
  width: 62%;
  border: 1px solid #525252;
  padding: 23px 0;
  line-height: 1;
  margin: 0 auto;
  margin-right: auto;
  border-radius: 0;
}

@media screen and (min-width: 992px) {
  .fs-c-button--guestPurchase,
  .fs-c-button--viewOrderHistoryDetail,
  .fs-c-button--myPageTop {
    width: 228px;
  }
}
.fs-c-button--guestPurchase:hover,
.fs-c-button--viewOrderHistoryDetail:hover,
.fs-c-button--myPageTop:hover {
  background-color: #525252;
  color: #fff;
}

/* --------------------------------------------
 PRODUCT BUTTUN WISHLIST
-------------------------------------------- */
.fs-c-button--addToWishList--icon {
  background-image: url(../img/common/icon_products_fav.svg);
  background-repeat: no-repeat;
  background-size: contain;
  text-indent: -9999em;
  width: 24px;
  height: 24px;
}

@media screen and (min-width: 992px) {
  .fs-c-button--addToWishList--icon {
    width: 32px;
    height: 32px;
  }
}
.fs-c-button--removeFromWishList--icon {
  background-image: url(../img/common/icon_products_fav_on.svg);
  background-repeat: no-repeat;
  background-size: contain;
  text-indent: -9999em;
  width: 24px;
  height: 24px;
}

@media screen and (min-width: 992px) {
  .fs-c-button--removeFromWishList--icon {
    width: 32px;
    height: 32px;
  }
}
/* --------------------------------------------
 INPUT PASSWORD BUTTON
-------------------------------------------- */
.fs-c-button--particular.fs-c-button--displayPassword::before {
  display: block;
  content: "";
  width: 18px;
  height: 18px;
  font-family: "fs-icon";
  content: "\e918";
  font-size: 1.8rem;
  /*R*/
  line-height: 1;
}

.fs-c-button--particular.fs-c-button--hidePassword::before {
  display: block;
  content: "";
  width: 18px;
  height: 18px;
  font-family: "fs-icon";
  content: "\e917";
  font-size: 1.8rem;
  /*R*/
  line-height: 1;
}

/* --------------------------------------------
 BTN カートから削除
-------------------------------------------- */
.fs-c-button--cancel--cart {
  font-weight: normal;
  margin-left: 0;
  width: calc(50% - 20px);
  display: inline-block;
}

.fs-c-button--cancel--cart span {
  display: inline-block;
  position: relative;
  padding-left: 20px;
  font-size: 1.3rem;
  white-space: nowrap;
}

.fs-c-button--cancel--cart .fs-c-button__label {
  display: block;
  position: relative;
  padding-left: 20px;
}

.fs-c-button--cancel--cart .fs-c-button__label:after {
  content: "";
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  font-family: "fs-icon";
  content: "\e911";
  color: #808080;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  /*R*/
  line-height: 1;
}

/* --------------------------------------------
 BTN あとで買う
-------------------------------------------- */
.fs-c-button--buyItLater {
  font-weight: normal;
  margin-left: 0;
  display: inline-block;
  padding: 0;
  width: calc(50% - 20px);
}

.fs-c-button--buyItLater span {
  display: inline-block;
  position: relative;
  padding-left: 20px;
  font-size: 1.3rem;
  white-space: nowrap;
}

.fs-c-button--buyItLater .fs-c-button__label {
  display: block;
  position: relative;
}

.fs-c-button--buyItLater .fs-c-button__label:after {
  content: "";
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  font-family: "fs-icon";
  content: "\e919";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  /*R*/
  line-height: 1;
}

/* --------------------------------------------
 BTN 変更
-------------------------------------------- */
.fs-c-button--changeInfomation {
  color: #fff;
  background-color: #525252;
  padding: 11px 3em;
  width: auto;
  font-size: 1.2rem;
  font-weight: normal;
  white-space: nowrap;
  width: 50%;
}

@media screen and (min-width: 992px) {
  .fs-c-button--changeInfomation {
    padding: 7px 2em;
  }
}
/* --------------------------------------------
 BTN 削除
-------------------------------------------- */
.fs-c-button--delete {
  background-color: #fff;
  padding: 11px 3em;
  width: 50%;
  font-size: 1.2rem;
  font-weight: normal;
  border: 1px solid #313131;
  white-space: nowrap;
}

@media screen and (min-width: 992px) {
  .fs-c-button--delete {
    padding: 7px 2em;
  }
}
.fs-c-button--addToAddressbook {
  display: inline-block;
  padding: 10px 30px;
  font-size: 1.4rem;
  background-color: #525252;
  color: #fff;
  border: none;
}

@media screen and (min-width: 992px) {
  .fs-c-button--addToAddressbook {
    width: auto;
  }
}
.fs-c-buttonContainer--topPage {
  margin: 30px 18px 0;
}

@media screen and (min-width: 992px) {
  .fs-c-buttonContainer--topPage {
    margin: 50px auto 0;
    text-align: center;
  }
  .fs-c-buttonContainer--topPage .fs-c-button--secondary {
    margin-left: auto;
    margin-right: auto;
  }
}
/* --------------------------------------------
 ボタン　2列表示
-------------------------------------------- */
.fs-c-buttonContainer--pair {
  justify-content: space-between;
}

@media screen and (min-width: 992px) {
  .fs-c-buttonContainer--pair {
    justify-content: center;
  }
}
.fs-c-buttonContainer--pair .fs-c-button--primary,
.fs-c-buttonContainer--pair .fs-c-button--standard {
  width: 48%;
  margin: 0;
}

@media screen and (min-width: 992px) {
  .fs-c-buttonContainer--pair .fs-c-button--primary,
  .fs-c-buttonContainer--pair .fs-c-button--standard {
    width: 228px;
    margin-left: 10px;
    margin-right: 10px;
  }
}
/* --------------------------------------------
 FORM
-------------------------------------------- */
.fs-c-dropdown select {
  border-color: #525252;
  font-size: 1.4rem;
  /*FORM*/
}

.fs-c-dropdown::after {
  border-left: none;
}

.fs-c-dropdown__menu {
  border-color: #525252;
  border-radius: 0;
  outline: none;
  background: none;
}

.fs-c-productSelection {
  margin-bottom: 3rem;
}

.fs-c-productSelection__name {
  font-size: 1.3rem;
}

.fs-c-productSelection__field input[type=text],
.fs-c-productSelection__field input[type=reset],
.fs-c-productSelection__field input[type=number],
.fs-c-productSelection__field input[type=password],
.fs-c-productSelection__field input[type=email],
.fs-c-productSelection__field input[type=tel],
.fs-c-productSelection__field textarea {
  border-color: #525252;
  border-radius: 0;
  outline: none;
  background: none;
}

/* --------------------------------------------
 MARK
-------------------------------------------- */
/* COMMON */
.fs-c-productMarks {
  margin: 7px 0;
  display: flex;
  flex-wrap: wrap;
}

.fs-c-productMark__mark {
  margin: 0 3px 3px 0;
  color: #fff;
  background: #525252;
}

@media screen and (min-width: 992px) {
  .fs-c-productMark__mark {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 991px) {
  .fs-c-productMark__mark {
    font-size: 1rem;
    /*R*/
  }
}
.fs-c-productMark__mark.mark_sale {
  color: #fff;
  background: #c9002e;
}

.fs-c-mark--preorder {
  color: #fff;
  background: #525252;
  display: inline-block;
  line-height: 1;
  margin: 0 2px 2px 0;
}

@media screen and (min-width: 992px) {
  .fs-c-mark--preorder {
    margin-left: 0.5rem;
    padding: 4px 18px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 991px) {
  .fs-c-mark--preorder {
    padding: 2px 9px;
    font-size: 1rem;
    /*R*/
  }
}
.fs-c-mark--preorder.mark_sale {
  color: #fff;
  background: #c9002e;
}

/* 送料無料アイコン
-------------------------------------------- */
.fs-c-productMark__mark.mark_FreeShipping {
  background-color: #ff8b91;
  border: 1px solid #ff8b91;
}

/* 包装不可アイコン
-------------------------------------------- */
.fs-c-productMark__mark.mark_wrapping_unavailable {
  background-color: #707070;
  display: none;
  border: 1px solid #707070;
}

.fs-body-product .fs-c-productMark__mark.mark_wrapping_unavailable {
  display: block;
}

/* 有料ラッピング不可
-------------------------------------------- */
.fs-c-productMark__mark.mark_no_paid_wrapping_unavailable {
  background-color: #707070;
  display: none;
  border: 1px solid #707070;
}

.fs-body-product .fs-c-productMark__mark.mark_no_paid_wrapping_unavailable {
  display: block;
}

/* NEWアイコン
-------------------------------------------- */
.fs-c-productMark__mark.mark_NEW {
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
}

/* 残りわずか
-------------------------------------------- */
.fs-c-productMark__mark.mark_Lowstock {
  background-color: #fff;
  color: #ff0000;
  border: 1px solid #ff0000;
}

/* お問い合わせ商品
-------------------------------------------- */
.fs-c-productMark__mark.mark_Inquireditem {
  background-color: #000;
  color: #fff;
  border: 1px solid #000;
}

/* --------------------------------------------
 FS SYSTEM MODAL
-------------------------------------------- */
.fs-c-modal,
.fs-c-modal--medium,
.fs-c-modal--small {
  line-height: 1.5;
  background: rgba(0, 0, 0, 0.7);
  transition: all 1s 0 ease;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2147483600;
  display: flex;
  align-items: flex-start;
  opacity: 1;
  overflow: auto;
  transform: translate3d(0, 0, 0);
  padding: 16px 0 40px;
  -webkit-overflow-scrolling: touch;
}

.fs-c-modal__inner {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  margin: auto;
  max-width: calc(100vw - 16px);
  background: #ffffff;
  border-radius: 3px;
  padding: 10px 20px;
  box-sizing: border-box;
  width: 100%;
}

@media screen and (min-width: 992px) {
  .fs-c-modal__inner {
    width: 70%;
  }
}
.fs-c-modal__inner.is-warning {
  border: 2px solid #f6d342;
}

.fs-c-modal__inner.is-warning .fs-c-modal__header {
  background: #f6d342;
  color: #ffffff;
}

.fs-c-modal__inner.is-warning .fs-c-modal__close {
  color: #ffffff;
}

.fs-c-modal__header {
  display: block;
  align-items: stretch;
  justify-content: space-between;
  background-color: #fff;
  border-bottom: 1px solid #d3d3d3;
  position: relative;
  padding: 10px;
  margin-bottom: 10px;
}

@media screen and (min-width: 992px) {
  .fs-c-modal__header {
    padding: 20px;
  }
}
.fs-c-modal__close {
  color: #333333;
  cursor: pointer;
  white-space: nowrap;
  padding: 3px;
  position: absolute;
  right: 0;
  top: 0;
}

.fs-c-modal__close::before {
  font-family: "fs-icon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e911";
  display: block;
  font-size: 0.9em;
  /*R*/
  line-height: 1;
}

.fs-c-modal__close:hover {
  color: #4c4c4c;
}

.fs-c-modal__close::before {
  height: 1em;
  box-sizing: content-box;
}

#fs_modal_systemerror {
  text-align: center;
}

#fs_modal_systemerror .fs-c-buttonContainer {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}

.fs-c-modal__contents {
  flex-grow: 1;
  max-height: calc(100% - 80px);
  overflow: auto;
  padding: 0;
}

@media screen and (min-width: 992px) {
  .fs-c-modal__contents {
    padding: 10px 0;
  }
}
.fs-c-modal__contents .fs-c-inputTable .fs-c-inputTable__dataCell {
  padding-left: 0;
  padding-right: 0;
}

.fs-c-modal__contents .fs-c-inputTable__headerCell + .fs-c-inputTable__dataCell {
  width: 70%;
}

.fs-c-modal__contents .fs-c-inputTable__dataCell {
  width: 100%;
}

.fs-c-modal__contents .fs-c-inputTable__dataCell textarea {
  width: 100%;
  height: 8em;
}

.fs-c-modal__contents #fs_input_phoneNumber {
  width: auto;
}

.fs-c-modal__contents .fs-c-buttonContainer--pair {
  display: -ms-flex;
  display: flex;
  justify-content: center;
  padding: 0;
}

@media screen and (min-width: 992px) {
  .fs-c-modal__contents .fs-c-buttonContainer--pair {
    margin-bottom: 0;
    display: -ms-flex;
    display: flex;
  }
  .fs-c-modal--changeShippingOption .fs-c-modal__contents .fs-c-buttonContainer--pair {
    margin-top: 40px;
  }
}
.fs-c-modal__contents .fs-c-buttonContainer--pair .fs-c-button--addAddressee {
  margin: 0;
}

.fs-c-modal__contents .fs-c-buttonContainer--pair .fs-c-button--cancel {
  margin-left: 10px;
  margin-right: 10px;
}

.fs-c-modal--checkout-point .fs-c-checkout-usePoint__lead {
  margin-bottom: 20px;
}

.fs-c-modal--checkout-point .fs-c-checkout-pointSettingList {
  margin-bottom: 20px;
}

.fs-c-modal--changeShippingOption .fs-c-checkout-settings__body > * {
  margin: 0 0 20px;
}

.fs-c-modal--checkout-deliveryMethod .fs-c-checkout-deliveryMethod__body > * {
  margin: 0 0 30px;
}

.fs-c-modal--checkout-deliveryMethod .fs-c-checkout-deliveryMethod__option__title {
  font-weight: bold;
  font-size: 1.8rem;
}

.fs-c-modal--checkout-deliveryMethod .fs-c-checkout-deliveryMethod__option__message {
  margin-bottom: 20px;
}

.fs-c-modal--changeShippingOption .fs-c-checkout-settings {
  margin-top: 2em;
}

.fs-c-modal--changeShippingOption .fs-c-checkout-settings__title {
  margin-bottom: 0.6em;
  padding-bottom: 0.6em;
  text-align: center;
  font-size: 1.6rem;
  border-bottom: 1px solid #d3d3d3;
}

.fs-c-modal--changeShippingOption dl.fs-c-checkout-deliveryScheduleSetting > dt,
.fs-c-modal--checkout-deliveryMethod .fs-c-checkout-deliveryMethod__option__setting dt {
  background-color: #f7f7f7;
  padding: 10px;
  margin-bottom: 15px;
}

.fs-c-modal--changeShippingOption dl.fs-c-checkout-deliveryScheduleSetting > dd,
.fs-c-modal--checkout-deliveryMethod .fs-c-checkout-deliveryMethod__option__setting dd {
  margin-bottom: 20px;
}

.fs-c-modal__contentsLead {
  margin-bottom: 24px;
}

.fs-c-modal__contents .fs-c-inputTable--inModal {
  table-layout: auto;
  margin-bottom: 20px;
  border-top: none;
}

.fs-c-modal__contents .fs-c-inputTable--inModal > tbody > tr {
  padding: 0;
}

@media screen and (min-width: 992px) {
  .fs-c-modal__contents .fs-c-inputTable--inModal > tbody > tr {
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    flex-direction: row;
  }
}
.fs-c-modal--medium .fs-c-modal__inner {
  margin: auto;
  width: 94vw;
}

@media screen and (min-width: 992px) {
  .fs-c-modal--medium .fs-c-modal__inner {
    width: 751px;
    max-width: 90vw;
  }
}
.fs-c-modal--small {
  align-items: flex-start;
  justify-content: center;
}

.fs-c-modal--small .fs-c-modal__inner {
  flex-grow: 0;
}

.fs-c-modal__title {
  padding: 0 20px;
  font-size: 1.8rem;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  text-align: center;
  font-weight: bold;
}

@media screen and (min-width: 992px) {
  .fs-c-modal__title {
    font-size: 1.8rem;
  }
}
.fs-c-modal__close::before {
  font-size: 2em;
  padding: 5px;
  background-color: #000;
  top: 5px;
  color: #fff;
}

/* =============================================
 ###　CONTENT PARTS
============================================= */
/* --------------------------------------------
 PAGE HEADER
-------------------------------------------- */
.ctm_page-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  font-weight: 600;
}

@media screen and (min-width: 992px) {
  .ctm_page-header {
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 991px) {
  .ctm_page-header {
    margin-top: 2rem;
    margin-bottom: 2rem;
    /**/
  }
}
@media screen and (min-width: 992px) {
  .ctm_page-header .ctm_heading--page {
    margin-right: 2rem;
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 991px) {
  .ctm_page-header .ctm_heading--page {
    margin-right: 1rem;
    font-size: 2rem;
  }
}
/* --------------------------------------------
 PAGER PORTING
-------------------------------------------- */
.ctm_pager {
  width: 100%;
  padding: 30px 15px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 991px) {
  .ctm_pager {
    padding: 0 15px;
  }
}
.ctm_pager > div {
  padding: 0 6px;
  display: block;
  text-align: center;
}

.ctm_pager > div a {
  display: block;
  text-decoration: none;
  position: relative;
  color: #222;
  font-size: 1.8rem;
  font-weight: bold;
}

.ctm_pager > div.prev a {
  padding-left: 1em;
}

.ctm_pager > div.next a {
  padding-right: 1em;
}

.ctm_pager > div.prev a:after {
  display: inline-block;
  content: "";
  width: 5px;
  height: 5px;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -4px;
  border-top: 2px solid #222;
  border-right: 2px solid #222;
  transform: rotate(225deg);
}

.ctm_pager > div.next a:after {
  display: inline-block;
  content: "";
  width: 5px;
  height: 5px;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -4px;
  border-top: 2px solid #222;
  border-right: 2px solid #222;
  transform: rotate(45deg);
}

/* --------------------------------------------
 FS INPUT STYLE
-------------------------------------------- */
.fs-c-inputInformation__message {
  text-align: center;
  background-color: #f7f7f7;
  padding: 2rem;
  margin-bottom: 30px;
  line-height: 1.5;
}

.fs-c-inputInformation__message p {
  text-align: center;
}

.fs-c-inputInformation__message .fs-c-orderedList li {
  text-align: left;
}

/* =============================================
 ###　ショッピングカートパーツ（システム）
============================================= */
/* カート商品情報ブロック */
.fs-c-cartTable__dataCell--point::before,
.fs-c-cartTable__dataCell--quantity::before,
.fs-c-cartTable__dataCell--subtotal::before {
  display: inline-block;
  content: attr(data-cell-label);
  font-weight: normal;
  font-size: 1.4rem;
  margin-right: 8px;
  min-width: 2em;
}

.fs-c-cartPayment__button {
  margin: 0 auto 15px;
}

.fs-c-payWithAmazon .fs-c-payWithAmazon__message {
  font-size: 1.4rem;
}

.fs-c-cartTable {
  border-top: 1px solid #d3d3d3;
  margin-bottom: 30px;
}

@media screen and (min-width: 992px) {
  .fs-c-cartTable {
    border: none;
    margin-bottom: 0;
  }
  .fs-c-cartTable thead tr {
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px;
    background-color: #f7f7f7;
  }
}
.fs-c-cartTable > thead {
  display: none;
}

@media screen and (min-width: 992px) {
  .fs-c-cartTable > thead {
    display: none;
  }
}
.fs-c-cartTable__row {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
  margin-bottom: 4rem;
  padding: 20px 0 0;
  position: relative;
}

@media screen and (min-width: 992px) {
  .fs-c-cartTable__row {
    width: 100%;
    border: none;
    position: relative;
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    padding: 35px 35px 25px 60%;
    margin-bottom: 15px;
    border: 1px solid #d3d3d3;
  }
}
.fs-c-cartTable__dataCell {
  padding: 0;
  margin-bottom: 10px;
  width: 100%;
  border: none;
  line-height: 1.5;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fs-c-cartTable__dataCell:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 992px) {
  .fs-c-cartTable__dataCell {
    border: none;
    margin-bottom: 0;
  }
}
.fs-c-cartTable__headerCell {
  display: none;
}

.fs-c-cartTable__dataCell--action {
  width: 100%;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px #b9b9b9 solid;
}

@media screen and (min-width: 992px) {
  .fs-c-cartTable__dataCell--action {
    margin-top: 1rem;
    padding-top: 1rem;
  }
}
.fs-c-cartTable__product {
  align-items: center;
  justify-content: space-between;
}

.fs-c-cartTable__productImage {
  width: 100px;
}

@media screen and (min-width: 992px) {
  .fs-c-cartTable__productImage {
    width: 100px;
  }
}
.fs-c-cartTable__productImage .fs-c-productImage__image {
  width: 100%;
}

.fs-c-cartTable__product > .fs-c-cartTable__productImage {
  padding: 0;
}

.fs-c-cartTable__productName {
  margin-bottom: 10px;
  font-size: 1.4rem;
  font-weight: normal;
}

@media screen and (min-width: 992px) {
  .fs-c-cartTable__productName {
    font-size: 1.4rem;
  }
}
.fs-c-cartTable__unitPrice {
  text-align: right;
}

.fs-c-cartTable__unitPrice .fs-c-price {
  font-size: 1.4rem;
  font-weight: bold;
  display: inline-block;
}

@media screen and (min-width: 992px) {
  .fs-c-cartTable__unitPrice .fs-c-price {
    font-size: 1.4rem;
  }
}
.fs-c-cartTable__unitPrice .fs-c-productPrice__addon {
  margin-left: 1rem;
  font-size: 1.1rem;
  font-weight: bold;
  display: flex;
}

.fs-c-cartTable__unitPrice .fs-c-productPrice__addon:before {
  content: "(";
}

.fs-c-cartTable__unitPrice .fs-c-productPrice__addon:after {
  content: ")";
}

.fs-c-cartTable__dataCell--quantity {
  border-bottom: none;
  padding: 5px 0;
  -moz-column-gap: 1em;
       column-gap: 1em;
  margin-left: auto;
  width: calc(100% - 140px);
  justify-content: space-between;
}

.fs-c-cartTable__dataCell--quantity:before {
  content: attr(data-cell-label);
  display: inline-flex;
}

@media screen and (min-width: 992px) {
  .fs-c-cartTable__dataCell--quantity {
    justify-content: flex-start;
    width: auto;
  }
}
.fs-c-cartTable__dataCell--subtotal {
  border-top: 1px #b9b9b9 solid;
  border-bottom: none;
  margin-bottom: 0;
  padding: 1.5rem 0 0;
}

.fs-c-cartTable__dataCell--subtotal span.fs-c-price__value:after {
  content: " (税込)";
}

@media screen and (min-width: 992px) {
  .fs-c-cartTable__dataCell--subtotal {
    border-top: none;
    border-bottom: none;
    margin-bottom: 0;
    padding: 1rem 0 0;
  }
}
.fs-c-cartTable__dataCell--point {
  margin-bottom: 0;
  border-top: none;
  padding: 5px 0;
}

@media screen and (min-width: 992px) {
  .fs-c-cartTable__dataCell--point {
    padding: 1rem 0 0;
  }
}
@media screen and (min-width: 992px) {
  .fs-c-cartTable__price {
    display: inline-block;
    white-space: nowrap;
  }
}
.fs-c-cartTable__dataCell--review {
  text-align: right;
}

.fs-c-deliveryInfoList dt {
  background-color: #c8c8c8;
  padding: 10px;
}

.fs-c-deliveryInfoList dd {
  padding: 10px;
  background-color: #fff;
}

.fs-c-orderPaymentTable {
  width: 100%;
}

.fs-c-orderPaymentTable th {
  text-align: left;
  padding: 10px;
  background-color: #c8c8c8;
  width: 50%;
  font-weight: normal;
}

.fs-c-orderPaymentTable td {
  background-color: #fff;
  padding: 10px;
}

.fs-c-cartDiscountInfo__info {
  font-weight: bold;
  color: #c9002e;
}

@media screen and (min-width: 992px) {
  .fs-c-cartDiscountInfo__info {
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 991px) {
  .fs-c-cartDiscountInfo__info {
    margin-bottom: 1rem;
    font-size: 2rem;
  }
}
/* カートページ */
@media screen and (min-width: 992px) {
  .fs-c-cartTableContainer {
    margin-bottom: 15px;
  }
}
@media screen and (min-width: 992px) {
  .fs-l-cart__contentsArea {
    display: -ms-flex;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.fs-l-cart__mainColumn {
  margin-bottom: 35px;
}

.fs-l-cart__sideColumn {
  padding: 2rem 3rem;
  background-color: #eeedec;
  margin-bottom: 3rem;
}

@media screen and (min-width: 992px) {
  .fs-l-cart__mainColumn {
    width: 63.7931034483%;
  }
  .fs-l-cart__sideColumn {
    width: 29.3103448276%;
    padding: 3rem 3rem;
  }
  .fs-l-cart__sideColumn .fs-c-button--continueShopping {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
}
.ctm_l-cart__subColumn {
  padding: 0;
  background: none;
}

.ctm_l-cart__subColumn .fs-l-cart__sideColumn {
  margin-bottom: 3rem;
  padding: 2rem 3rem;
  background-color: #eeedec;
}

@media screen and (min-width: 992px) {
  .ctm_l-cart__subColumn {
    width: 29.3103448276%;
  }
  .ctm_l-cart__subColumn .fs-l-cart__sideColumn {
    width: 100%;
    padding: 3rem 3rem;
  }
}
.fs-l-cart__sideColumn .fs-c-orderTotalTable {
  margin-bottom: 0;
}

.fs-l-cart__sideColumn .fs-c-purchaseHere {
  text-align: center;
}

@media screen and (min-width: 992px) {
  .fs-l-cart__sideColumn .fs-c-purchaseHere {
    margin: 18px 0;
  }
}
.fs-l-cart__sideColumn .fs-c-button--purchaseHere {
  width: 100%;
  line-height: 2rem;
  /*C*/
}

.fs-l-cart__sideColumn .fs-c-button--loginAndPurchase {
  width: 100%;
  line-height: 2rem;
  /*C*/
}

.fs-l-cart__sideColumn .fs-c-button--unregisteredUserPurchase {
  width: 100%;
  line-height: 2rem;
  /*C*/
}

.fs-l-cart__sideColumn .fs-c-button--registerAndPurchase {
  width: 100%;
  line-height: 2rem;
  /*C*/
}

.fs-c-estimatedDeliveryDate .fs-c-estimatedDeliveryDate__ctrl {
  margin-top: 1em;
  margin-bottom: 18px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}

.fs-c-purchaseHere__message {
  margin: 0 auto 10px;
  font-size: 1.5rem;
  font-weight: bold;
}

.fs-c-cartTable__dataCell--product {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (min-width: 992px) {
  .fs-c-cartTable__dataCell--product {
    display: block;
    width: 52%;
    position: absolute;
    top: 25px;
    left: 25px;
  }
}
.fs-c-cartTable__dataCell--product .fs-c-cartTable__productInfo {
  width: calc(100% - 110px);
  margin-left: 10px;
  text-align: left;
}

@media screen and (min-width: 992px) {
  .fs-c-cartTable__dataCell--product .fs-c-cartTable__productInfo {
    width: calc(100% - 110px);
    margin-left: 10px;
  }
}
.fs-c-cartTable__dataCell--quantity .fs-c-quantity {
  float: none;
  display: inline-block;
  text-align: center;
}

@media screen and (min-width: 992px) {
  .fs-c-cartTable__dataCell--quantity .fs-c-quantity {
    width: 50px;
    max-width: 50px;
  }
}
.fs-c-cartTable__actionButton {
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media screen and (min-width: 992px) {
  .fs-c-cartTable__actionButton {
    justify-content: flex-start;
  }
}
.fs-c-cartTable__actionButton > div {
  margin-left: 10px;
  margin-right: 10px;
}

.fs-c-cartTable__actionButton > div:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 992px) {
  .fs-c-cartTable__actionButton > div {
    margin-left: 0;
    margin-right: 10px;
  }
}
.fs-c-cartTable__actionButton button {
  text-align: left;
}

@media screen and (min-width: 992px) {
  .fs-c-cartTable__actionButton button {
    margin-bottom: 10px;
  }
}
.fs-c-cartDiscountInfo--postage {
  margin-bottom: 30px;
  margin-left: 20px;
  margin-right: 20px;
}

@media screen and (min-width: 992px) {
  .fs-c-cartDiscountInfo--postage {
    margin-left: 0;
    margin-right: 0;
  }
}
.fs-c-cartDiscountInfo__note {
  font-size: 1.3rem;
}

@media screen and (min-width: 992px) {
  .fs-c-cartDiscountInfo__note {
    font-size: 1.5rem;
  }
}
.fs-c-productListItem__control form {
  width: 100%;
  margin-top: 10px;
}

.fs-c-wishlistProduct__footer {
  width: 100%;
  text-align: center;
  display: none;
}

@media screen and (min-width: 992px) {
  .fs-c-wishlistProduct__footer {
    width: 100%;
    margin: 0 auto;
  }
}
.fs-c-payWithAmazon .fs-c-payWithAmazon__message {
  margin-bottom: 25px;
  line-height: 1.7;
}

/* ==============================================
	## 合計金額表示（システムパーツ）
=================================================*/
.fs-c-totalAndActions .fs-c-checkout-preview__title {
  border-bottom: none;
  padding-top: 20px;
}

.fs-c-orderTotalTable {
  border: none;
  width: 100%;
  margin-bottom: 20px;
}

.fs-c-orderTotalTable th,
.fs-c-orderTotalTable td {
  border: none;
  border-bottom: 1px solid #b9b9b9;
  font-weight: bold;
}

.fs-c-orderTotalTable tr:last-of-type th,
.fs-c-orderTotalTable tr:last-of-type td {
  border-bottom: none;
}

.fs-c-orderTotalTable > tbody > tr > th {
  text-align: left;
  padding: 2rem 2rem 2rem 0;
  font-size: 1.4rem;
}

@media screen and (min-width: 992px) {
  .fs-c-orderTotalTable > tbody > tr > th {
    font-size: 1.4rem;
    padding: 20px 0;
  }
}
.fs-c-orderTotalTable > tbody > tr > td {
  padding: 20px;
  font-weight: bold;
  font-size: 1.4rem;
}

@media screen and (min-width: 992px) {
  .fs-c-orderTotalTable > tbody > tr > td {
    font-size: 1.4rem;
    padding: 20px 0;
  }
}
/* =============================================
 ###　その他システム（システム）
============================================= */
/*結果無し*/
.fs-c-noResultMessage {
  margin-bottom: 30px;
  text-align: center;
  width: 100%;
}

/*ページ見出し*/
.fs-c-heading--page {
  line-height: 1.5;
  font-weight: 500;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  text-align: center;
}

@media screen and (min-width: 992px) {
  .fs-c-heading--page {
    margin: 6rem 0;
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 991px) {
  .fs-c-heading--page {
    margin: 3rem 0;
    font-size: 2rem;
  }
}
/*買い物を続ける*/
.fs-c-continueShopping {
  display: flex;
  width: 100%;
  justify-content: flex-end;
}

.fs-c-continueShopping .fs-c-button--continueShopping {
  font-size: 1.5rem;
}

@media screen and (min-width: 992px) {
  .fs-c-continueShopping .fs-c-button--continueShopping {
    margin: 0;
    width: 100%;
    /*    width: calc(340 / 1160* 100%);*/
  }
}
@media screen and (max-width: 991px) {
  .fs-c-continueShopping .fs-c-button--continueShopping {
    margin: 4rem 0 5rem;
  }
}
/*ログイン誘導リンク*/
.ctm_productMembersLoginLinkBlock {
  text-align: center;
}

.fs-c-productMembersLoginLink {
  margin: 2rem 0;
  display: inline-block;
  text-align: center;
  text-decoration: underline;
}

.fs-c-productMembersLoginLink:hover {
  text-decoration: none;
}

/* ==============================================
 ### STYLE SYSTEM 会員登録
=================================================*/
@media screen and (min-width: 992px) {
  .fs-c-inputTable .fs-c-dropdown.fs-c-inputDate__year,
  .fs-c-inputTable .fs-c-dropdown.fs-c-inputDate__month,
  .fs-c-inputTable .fs-c-dropdown.fs-c-inputDate__date {
    width: 6em;
  }
}
.fs-c-linkedAccountInfoField {
  margin: 20px;
  font-size: 1.3rem;
  line-height: 1.5;
}

.fs-c-memberPolicyAgreeField,
.fs-c-privacyPolicyAgreeField {
  text-align: center;
  margin: 20px;
  font-size: 1.3rem;
  line-height: 1.5;
}

@media screen and (min-width: 992px) {
  .fs-c-linkedAccountInfoField,
  .fs-c-memberPolicyAgreeField,
  .fs-c-privacyPolicyAgreeField {
    font-size: 1.5rem;
  }
}
.fs-c-memberPolicyAgreeField,
.fs-c-privacyPolicyAgreeField a {
  text-decoration: underline;
}

/* =============================================
 ### STYLE SYSTEM ショッピングカートログイン
============================================= */
/* フォームフィールド */
.fs-c-inputGroup,
.fs-c-inputGroup--inline,
.fs-c-inputGroup--vertical {
  border: 1px solid #525252;
  font-size: 1.6rem;
  /*FORM*/
}

@media screen and (min-width: 992px) {
  .fs-c-fsLogin .fs-c-inputField__field {
    width: 320px;
  }
}
/* 年月日フォームサイズ */
@media screen and (min-width: 992px) {
  .fs-c-inputTable .fs-c-dropdown.fs-c-inputDate__year,
  .fs-c-inputTable .fs-c-dropdown.fs-c-inputDate__month,
  .fs-c-inputTable .fs-c-dropdown.fs-c-inputDate__date {
    width: 6em;
  }
}
/* ??? */
.fs-c-defaultUsers {
  padding: 20px;
  margin-bottom: 30px;
  margin-left: 20px;
  margin-right: 20px;
  border: 1px solid #d3d3d3;
}

@media screen and (min-width: 992px) {
  .fs-c-defaultUsers {
    width: 751px;
    margin: 0 auto 50px;
    padding: 50px;
  }
}
/* FS非会員エリア */
.fs-c-newUsers {
  padding: 20px;
  margin-bottom: 30px;
  border: 1px solid #d3d3d3;
}

@media screen and (min-width: 992px) {
  .fs-c-newUsers {
    width: 751px;
    margin: 0 auto 30px;
    padding: 50px;
  }
}
.fs-c-newUsers__message {
  margin-bottom: 30px;
  text-align: center;
  font-size: 1.3rem;
  line-height: 1.5;
}

@media screen and (min-width: 992px) {
  .fs-c-newUsers__message {
    font-size: 1.5rem;
  }
}
/* FSエリア見出し */
.fs-c-subSection__title {
  font-size: 1.4rem;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  text-align: center;
  margin: 0 0 20px;
  padding: 0;
  font-weight: bold;
}

@media screen and (min-width: 992px) {
  .fs-c-subSection__title {
    font-size: 1.6rem;
  }
}
/* ??? */
.entry,
.password,
.forgot-password,
.entry-mail,
.login-member,
.login-cart {
  background-color: #eeedec;
  padding: 20px;
  border: 1px solid #9e9e9e;
}

@media screen and (min-width: 992px) {
  .entry,
  .password,
  .forgot-password,
  .entry-mail,
  .login-member,
  .login-cart {
    width: 500px;
    margin: 0 auto;
    padding: 50px 100px;
    box-sizing: border-box;
  }
}
.entry .fs-c-button--primary,
.password .fs-c-button--primary,
.forgot-password .fs-c-button--primary,
.entry-mail .fs-c-button--primary,
.login-member .fs-c-button--primary,
.login-cart .fs-c-button--primary {
  width: 100%;
}

.entry .o_devider,
.password .o_devider,
.forgot-password .o_devider,
.entry-mail .o_devider,
.login-member .o_devider,
.login-cart .o_devider {
  display: block;
  text-align: center;
  font-size: 2rem;
  position: relative;
  margin-top: 30px;
  margin-bottom: 30px;
}

.entry .o_devider:before,
.entry .o_devider:after,
.password .o_devider:before,
.password .o_devider:after,
.forgot-password .o_devider:before,
.forgot-password .o_devider:after,
.entry-mail .o_devider:before,
.entry-mail .o_devider:after,
.login-member .o_devider:before,
.login-member .o_devider:after,
.login-cart .o_devider:before,
.login-cart .o_devider:after {
  content: "";
  width: 30%;
  height: 6px;
  border-top: 1px solid #000;
  display: inline-block;
  margin: 0 10px;
}

/* ログインパーツ */
.fs-c-inputInformation {
  margin-bottom: 30px;
}

@media screen and (min-width: 992px) {
  .fs-c-inputInformation {
    margin-bottom: 60px;
  }
}
.fs-c-inputInformation__field {
  margin-bottom: 20px;
}

/* ログイン等入力レイアウトテーブル */
.fs-c-inputTable {
  width: 100%;
}

@media screen and (min-width: 992px) {
  .fs-c-inputTable {
    border-top: 1px solid #b9b9b9;
  }
}
.fs-c-inputTable tr {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  flex-direction: column;
}

@media screen and (min-width: 992px) {
  .fs-c-inputTable tr {
    display: table-row;
    border-bottom: 1px solid #b9b9b9;
  }
}
.fs-c-inputTable .fs-c-inputTable__headerCell {
  text-align: left;
  padding: 10px;
  display: block;
  line-height: 1.5;
  font-weight: bold;
  background-color: #eeedec;
}

@media screen and (min-width: 992px) {
  .fs-c-inputTable .fs-c-inputTable__headerCell {
    display: table-cell;
    width: 30%;
    padding: 20px;
    padding-top: 28px;
    background-color: transparent;
  }
}
.fs-c-inputTable .fs-c-inputTable__headerCell label {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 0;
}

@media screen and (min-width: 992px) {
  .fs-c-inputTable .fs-c-inputTable__headerCell label {
    font-size: 1.4rem;
  }
}
.fs-c-inputTable .fs-c-inputTable__dataCell {
  padding: 10px 20px;
  margin-bottom: 10px;
  display: block;
  line-height: 1.5;
  /*FORM*/
}

@media screen and (min-width: 992px) {
  .fs-c-inputTable .fs-c-inputTable__dataCell {
    display: table-cell;
    width: 70%;
    padding: 20px;
    /*FORM*/
  }
}
.fs-c-inputTable .fs-c-inputTable__dataCell input[type=text],
.fs-c-inputTable .fs-c-inputTable__dataCell input[type=tel],
.fs-c-inputTable .fs-c-inputTable__dataCell select {
  border: 1px solid #525252;
  background-color: #fff;
}

@media screen and (min-width: 992px) {
  .fs-c-inputTable .fs-c-dropdown {
    width: 20em;
  }
  .fs-c-inputTable .fs-c-dropdown #fs_input_creditCardExpirationMonth,
  .fs-c-inputTable .fs-c-dropdown #fs_input_creditCardExpirationYear {
    width: 10em;
  }
}
/* ??? */
@media screen and (min-width: 992px) {
  .fs-c-inputTextGroup {
    justify-content: flex-start;
  }
}
@media screen and (min-width: 992px) {
  .fs-c-inputTextGroup .fs-c-inputTextGroup__item {
    width: 15em;
    flex: 0 1 auto;
  }
}
/* FSフォーム部品 */
input[type=text]#fs_input_password,
input[type=text]#fs_input_currentPassword,
input[type=text]#fs_input_newPassword {
  border: none;
}

input[type=password] {
  border: 1px solid #525252;
  background-color: #fff;
}

#fs_input_phoneNumber {
  width: 18em;
}

/* パスワードをお忘れですか...etc... */
.fs-c-inputInformation__link {
  text-align: center;
  margin-top: 10px;
  font-size: 1.4rem;
}

@media screen and (min-width: 992px) {
  .fs-c-inputInformation__link {
    font-size: 1.4rem;
  }
}
/* 連携サービスでログイン... */
.fs-c-otherServiceLogin {
  margin: 0;
  padding: 20px;
  background-color: #eeedec;
  margin-bottom: 30px;
}

@media screen and (min-width: 992px) {
  .fs-c-otherServiceLogin {
    margin-bottom: 60px;
  }
}
.fs-c-otherServiceLogin .fs-c-linkedServiceLogin {
  margin-bottom: 30px;
}

.fs-c-otherServiceLogin .fs-c-linkedServiceLogin:last-of-type {
  margin-bottom: 0;
}

.fs-c-otherServiceLogin .fs-c-anotherLogin__button {
  text-align: center;
}

.fs-c-otherServiceLogin .fs-c-anotherLogin__button img {
  width: auto;
}

.fs-c-linkedServiceLogin .fs-c-linkedServiceLogin__title {
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
}

.fs-c-anotherLogin__message h2.ttl2 {
  margin-bottom: 10px;
}

.fs-c-anotherLogin__message--amazon,
.fs-c-anotherLogin__message p {
  margin-bottom: 10px;
  text-align: center;
  font-size: 1.3rem;
  line-height: 1.5;
}

@media screen and (min-width: 992px) {
  .fs-c-anotherLogin__message--amazon,
  .fs-c-anotherLogin__message p {
    font-size: 1.5rem;
  }
}
/* ??? */
.fs-c-guestPurchase {
  margin: 0 20px;
  text-align: center;
}

@media screen and (min-width: 992px) {
  .fs-c-guestPurchase {
    margin: 0 auto 50px;
  }
}
/* ??? */
.ctm_cart_login-note {
  text-align: center;
  margin-top: 10px;
}

@media screen and (min-width: 992px) {
  .ctm_cart_login-note {
    margin-top: -30px;
  }
}
/* ??? */
.login-devider {
  text-align: center;
  margin: 50px 0;
}

.login-devider span {
  display: inline-block;
  font-size: 2.1rem;
}

.login-devider span:after,
.login-devider span:before {
  content: "";
  width: 100px;
  height: 3px;
  border-top: 1px solid #000;
  display: inline-block;
}

.login-devider span:after {
  margin-left: 1em;
}

.login-devider span:before {
  margin-right: 1em;
}

/* ボタン */
.fs-c-inputInformation__button {
  display: -ms-flex;
  display: flex;
  padding: 0;
  justify-content: center;
}

@media screen and (min-width: 992px) {
  .fs-c-inputInformation__button {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 991px) {
  .fs-c-inputInformation__button {
    margin-left: auto;
    margin-right: auto;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    width: 62%;
  }
}
@media screen and (max-width: 991px) {
  .fs-c-inputInformation__button > div {
    width: 100%;
  }
}
.fs-c-inputInformation__button .fs-c-button--primary,
.fs-c-inputInformation__button .fs-c-button--secondary,
.fs-c-inputInformation__button .fs-c-button--standard {
  margin: 0 auto;
}

@media screen and (min-width: 992px) {
  .fs-c-inputInformation__button .fs-c-button--primary,
  .fs-c-inputInformation__button .fs-c-button--secondary,
  .fs-c-inputInformation__button .fs-c-button--standard {
    width: 228px;
    margin-left: 10px;
    margin-right: 10px;
  }
}
@media screen and (max-width: 991px) {
  .fs-c-inputInformation__button .fs-c-button--primary,
  .fs-c-inputInformation__button .fs-c-button--secondary,
  .fs-c-inputInformation__button .fs-c-button--standard {
    padding: 15px;
    margin-bottom: 30px;
    width: 100%;
  }
}
.fs-c-anotherLogin__button--amazon {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 312px;
}

/* ==============================================
 ### STYLE SYSTEM 会員登録完了
=================================================*/
.fs-c-registerSuccessMessage p {
  margin-bottom: 1em;
}

/* ==============================================
 ### STYLE SYSTEM お客様情報入力
=================================================*/
.fs-c-agreementConfirmation {
  margin: 0;
  padding: 20px;
  border-top: 1px solid #d2d2d2;
}

.fs-c-agreementConfirmation a {
  text-decoration: underline;
}

.fs-c-agreementConfirmationArea__message {
  margin-bottom: 30px;
  text-align: center;
  background-color: #f7f7f7;
  padding: 20px;
  font-size: 1.3rem;
  line-height: 1.5;
}

@media screen and (min-width: 992px) {
  .fs-c-agreementConfirmationArea__message {
    font-size: 1.5rem;
  }
}
.fs-c-agreementConfirmation__message {
  margin-bottom: 1em;
  font-size: 1.3rem;
  line-height: 1.5;
}

@media screen and (min-width: 992px) {
  .fs-c-agreementConfirmation__message {
    font-size: 1.5rem;
  }
}
.fs-c-agreementConfirmation__checkbox {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.5;
}

@media screen and (min-width: 992px) {
  .fs-c-agreementConfirmation__checkbox {
    font-size: 1.5rem;
  }
}
.fs-c-agreementConfirmation__password {
  margin-bottom: 30px;
  font-size: 1.3rem;
  line-height: 1.5;
}

@media screen and (min-width: 992px) {
  .fs-c-agreementConfirmation__password {
    font-size: 1.5rem;
  }
}
.fs-c-agreementConfirmation__addon {
  margin-left: 0;
  margin-bottom: 0;
}

@media screen and (min-width: 992px) {
  .fs-c-agreementConfirmation__addon {
    width: 300px;
  }
}
.fs-c-button--next,
.fs-c-button--registerAndContinue {
  width: 100%;
}

@media screen and (min-width: 992px) {
  .fs-c-button--next,
  .fs-c-button--registerAndContinue {
    width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
}
input[type=checkbox].fs-c-checkbox__checkbox {
  display: none;
}

.fs-c-checkbox__checkbox:checked + label > .fs-c-checkbox__checkMark {
  background: #fff;
  border-color: #9e9e9e;
  color: #000;
  transition: all 0.5s 0s ease;
}

.fs-c-checkbox__checkMark::before {
  color: #000;
  top: 2px;
  left: 2px;
}

.fs-c-suggestedAddress__list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  background-color: #eeedec;
}

.fs-c-suggestedAddress__list li {
  padding: 15px;
}

.agreementConfirmation-merit {
  padding: 0 15px 10px;
  background-color: #f7f7f7;
}

@media screen and (min-width: 992px) {
  .agreementConfirmation-merit {
    padding: 0 30px 20px;
  }
}
.agreementConfirmation-merit .ttl {
  text-align: center;
  padding: 10px;
  font-weight: bold;
  color: #c9002e;
  font-size: 1.8rem;
}

.agreementConfirmation-merit .description ul {
  list-style-type: disc;
  margin-left: 1em;
}

.fs-c-agreementConfirmation__message--newsletterUnchecked {
  background-color: #f7f7f7;
  padding: 15px;
}

.fs-c-privacyPolicyAgreeField {
  border-top: 1px solid #d2d2d2;
  padding: 20px;
}

.fs-c-privacyPolicyAgreeField .fs-c-inputField__field {
  text-align: center;
}

.fs-c-privacyPolicyAgreeField a {
  text-decoration: underline;
}

/* ==============================================
 ### STYLE SYSTEM マイページ
=================================================*/
#fs_MyPageTop .fs-c-wishlistProduct {
  display: none;
}

.ctm_mypage-member-status {
  /*  border: 5px solid #ededed;*/
  text-align: center;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  margin-bottom: 50px;
}

.ctm_mypage-member-status .member-total-points {
  background: #ededed;
  padding: 5px;
  margin-bottom: 10px;
}

.ctm_mypage-member-status .member-total-points-value {
  font-weight: bold;
  display: inline-block;
}

.ctm_mypage-member-status .member-total-points-expiration {
  background: #ededed;
  padding: 5px;
}

.ctm_mypage-member-status .member-total-points-expiration-value {
  font-weight: bold;
  display: inline-block;
}

.fs-clientInfo {
  display: none;
}

.fs-clientInfo.is-ready {
  display: block;
}

.fs-c-accountService {
  border-top: 1px solid #b9b9b9;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
}

.fs-c-accountService + .fs-c-accountService {
  border-top: none;
}

.fs-c-accountService li {
  border-bottom: 1px solid #b9b9b9;
}

.fs-c-accountService li a {
  display: block;
  font-size: 1.5rem;
  padding: 20px 10px;
  position: relative;
}

.fs-c-accountService li a:after {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  border-top: 1px solid #9e9e9e;
  border-right: 1px solid #9e9e9e;
  transform: rotate(45deg);
  top: 50%;
  right: 10px;
  margin-top: -4px;
}

/* ==============================================
 ### STYLE SYSTEM ご注文完了
=================================================*/
.fs-c-checkoutSuccess {
  margin: 0 2rem;
}

@media screen and (min-width: 992px) {
  .fs-c-checkoutSuccess {
    margin: 0;
    width: 100%;
  }
}
.fs-c-checkoutSuccess h2 {
  text-align: center;
  margin-bottom: 2rem;
}

@media screen and (min-width: 992px) {
  .fs-c-checkoutSuccess p {
    text-align: center;
  }
}
/* ==============================================
 ### STYLE SYSTEM ご注文手続き(単数)
=================================================*/
.ctm_cart-container {
  line-height: 1.5;
}

@media screen and (min-width: 992px) {
  .ctm_cart-container {
    display: -ms-flex;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /*    width: 1160px;*/
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
  }
}
.fs-c-checkout-destination__body {
  display: block;
}

.fs-c-checkout-destination__body .fs-c-checkout-destination__control {
  flex-direction: column;
  margin-left: 0;
}

@media screen and (min-width: 992px) {
  .fs-c-checkout-destination__body .fs-c-checkout-destination__control {
    align-items: flex-end;
    margin-top: 0;
    margin-left: 0;
    flex-direction: row;
    justify-content: center;
  }
}
.fs-c-checkout-destination__body .fs-c-checkout-destination__button {
  margin: 0;
}

.fs-c-checkout-shippingOption {
  margin-bottom: 1em;
}

.fs-c-checkout-shippingInfo__body .fs-c-checkout-shippingOptionPreview__label,
.fs-c-checkout-shippingInfo__body .fs-c-checkout-heading {
  margin-bottom: 0.2em;
  font-weight: bold;
}

.fs-c-checkout-shippingInfo__body .fs-c-checkout-shippingDestination__control {
  margin: 20px auto;
  display: flex;
  justify-content: center;
  gap: 0 20px;
}

@media screen and (max-width: 991px) {
  .fs-c-checkout-shippingInfo__body .fs-c-checkout-shippingDestination__control {
    flex-direction: column;
    gap: 15px 0;
  }
}
.fs-c-checkout-shippingParcel__title {
  margin-bottom: 0.2em;
  font-weight: bold;
}

.fs-c-checkout-shippingParcel__productList {
  margin-bottom: 1em;
}

.fs-c-checkout-shippingDetail .fs-c-checkout-heading-lv2 {
  margin-bottom: 0.2em;
  font-weight: bold;
}

.fs-c-checkout-shippingDetail .fs-c-checkout-heading-lv2:before {
  content: "・";
}

ul.fs-c-checkout-shippingParcel__productList .fs-c-checkout-shippingParcel__product {
  padding-bottom: 1em;
  margin-bottom: 1em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px 10px;
}

ul.fs-c-checkout-shippingParcel__productList .fs-c-checkout-shippingParcel__product + .fs-c-checkout-shippingParcel__product {
  boder-top: 1px solid #b9b9b9;
}

ul.fs-c-checkout-shippingParcel__productList .fs-c-checkout-shippingParcel__product .fs-c-checkout-shippingParcel__productImage {
  width: 100px;
}

ul.fs-c-checkout-shippingParcel__productList .fs-c-checkout-shippingParcel__product .fs-c-checkout-shippingParcel__productInfo {
  width: calc(100% - 110px);
}

.fs-c-listedProductName__variation,
.fs-c-listedProductName__selection,
.fs-c-checkout-shippingParcel__productSelection {
  font-size: 1.2rem;
}

.fs-c-checkout-shippingParcel__productSelection .fs-c-checkout-shippingParcel__productSelection__choice:before {
  content: "(";
}

.fs-c-checkout-shippingParcel__productSelection .fs-c-checkout-shippingParcel__productSelection__choice:after {
  content: ")";
}

.fs-c-checkout-shippingParcel__quantity,
.fs-c-checkout-shippingParcel__unitPrice {
  margin-top: 0.5em;
  display: flex;
  justify-content: flex-end;
}

.fs-c-quantityDisplay .fs-c-quantityDisplay__label {
  margin-right: 1em;
}

/* 25-09-03 ご注文手続き調整 */
.fs-c-checkout-shippingOption .fs-c-checkout-deliveryTemperatureMessage.case-roomTemperature {
  display: none;
}

.fs-c-checkout-shippingDetail__shippingCarrier__comment {
  display: none;
}

.fs-c-checkout-shippingDetail__deliveryDetail .fs-c-checkout-shippingDetail__deliveryDetailMessage {
  margin-bottom: 1em;
}

.fs-c-checkout-shippingDetail__shippingCarrier {
  margin-bottom: 0.5em;
}

.fs-c-checkout-shippingDetail__button.fs-c-buttonContainer {
  margin: 20px auto;
  display: flex;
  justify-content: center;
  gap: 0 20px;
}

@media screen and (min-width: 992px) {
  .fs-c-checkout-destination__body .fs-c-checkout-destination__button {
    margin-left: 20px;
  }
}
.fs-c-checkout-destination__body .fs-c-checkout-destination__button .fs-c-button--change--small {
  margin: 0;
  margin-bottom: 15px;
  min-width: 100px;
}

@media screen and (min-width: 992px) {
  .fs-c-checkout-destination__body .fs-c-checkout-destination__button .fs-c-button--change--small {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 992px) and (max-width: 1068px) {
  .fs-body-checkout .fs-c-button--confirmOrder,
  .fs-body-checkout-amazon .fs-c-button--confirmOrder {
    width: 100%;
  }
}
/*.checkoutWrap {
  display: flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start; }
  @media screen and (min-width: 992px) {
    .checkoutWrap {
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
    }
}*/
.fs-l-checkout__mainColumn {
  width: 100%;
  border-top: 1px solid #b9b9b9;
  margin-bottom: 40px;
}

@media screen and (min-width: 992px) {
  .fs-l-checkout__mainColumn {
    width: 63.7931034483%;
    border-left: 1px solid #b9b9b9;
    border-right: 1px solid #b9b9b9;
    margin-bottom: 0;
  }
}
.fs-l-checkout__sideColumn {
  width: 100%;
  padding: 3rem;
  background-color: #eeedec;
}

@media screen and (min-width: 992px) {
  .fs-l-checkout__sideColumn {
    width: 29.3103448276%;
    position: sticky;
    top: 76px;
  }
  .fs-l-checkout__sideColumn .fs-c-button--continueShopping {
    margin-left: auto;
    margin-right: auto;
  }
}
.fs-l-checkout__mainColumn > div > div {
  border-bottom: 1px solid #b9b9b9;
  padding: 20px;
}

.fs-l-checkout__mainColumn > div > div.fs-c-checkout-widgets__message {
  border: none;
  padding: 0;
}

/* 販売時注釈メッセージ */
.ctm_order_messege {
  margin-bottom: 2em;
  text-align: center;
  font-size: 12px;
}

@media screen and (min-width: 992px) {
  .ctm_order_messege {
    margin-top: -2em;
    font-size: 14px;
  }
}
.ctm_order_messege .c_red {
  color: #c9002e;
}

/* 見出し */
.fs-c-checkout-preview__title {
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  border-bottom: 1px solid #b9b9b9;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

/* お客様の情報 */
.fs-c-checkout-customerInfo {
  margin-bottom: 20px;
}

.fs-c-checkout-customerInfo .fs-c-checkout-customerInfo__name {
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.fs-c-checkout-customerInfo li {
  margin-bottom: 5px;
}

.fs-c-checkout-customerInfo li rt {
  font-size: 1.2rem;
}

/* お届け先情報 */
.fs-c-checkout-destination .fs-c-checkout-destination__name {
  font-size: 1.4rem;
}

.fs-c-checkout-shippingInfo ruby > rt,
.fs-c-checkout-destination li rt {
  font-size: 1.2rem;
}

/*お届け先変更　モーダル*/
.fs-c-checkout-addresseeList {
  margin-bottom: 30px;
}

.fs-c-checkout-addresseeList .fs-c-checkout-addressee {
  border-bottom: 1px solid #9e9e9e;
  padding: 20px 0;
}

@media screen and (min-width: 992px) {
  .fs-c-checkout-addresseeList .fs-c-checkout-addressee {
    overflow: hidden;
    *zoom: 1;
  }
}
.fs-c-checkout-addresseeList .fs-c-checkout-addressee .fs-c-checkout-addressee__data__address {
  margin-bottom: 20px;
}

.fs-c-checkout-addresseeList .fs-c-checkout-addressee .fs-c-checkout-addressee__control {
  display: -ms-flex;
  display: flex;
  justify-content: flex-end;
}

.fs-c-checkout-addresseeList .fs-c-checkout-addressee .fs-c-checkout-addressee__control button {
  margin-left: 10px;
  margin-right: 10px;
  width: 100px;
  background-color: #525252;
  color: #fff;
  padding: 8px 0;
}

@media screen and (min-width: 992px) {
  .fs-c-checkout-addresseeList .fs-c-checkout-addressee .fs-c-checkout-addressee__control {
    float: right;
  }
}
@media screen and (min-width: 992px) {
  .fs-c-checkout-addresseeList .fs-c-checkout-addressee__data {
    width: 70%;
  }
}
/*お支払い方法*/
.fs-c-checkout-paymentMethod--cashOnDelivery .fs-c-commissionTable {
  border-bottom: 1px solid #b9b9b9;
  border-left: 1px solid #b9b9b9;
  width: 100%;
}

.fs-c-checkout-paymentMethod--cashOnDelivery .fs-c-commissionTable thead th {
  background-color: #f7f7f7;
  border-top: 1px solid #b9b9b9;
  border-right: 1px solid #b9b9b9;
  padding: 5px;
}

.fs-c-checkout-paymentMethod--cashOnDelivery .fs-c-commissionTable td {
  border-top: 1px solid #b9b9b9;
  border-right: 1px solid #b9b9b9;
  padding: 5px;
}

.fs-c-checkout-paymentMethod__creditCardRegistration .fs-c-buttonContainer--inputCreditCardData {
  width: 100%;
  margin: 10px auto;
}

@media screen and (min-width: 992px) {
  .fs-c-checkout-paymentMethod__creditCardRegistration .fs-c-buttonContainer--inputCreditCardData {
    width: auto;
    margin: 0;
  }
}
.fs-c-creditCardIcons {
  display: -ms-flex;
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
}

.fs-c-creditCardIcons li {
  margin-left: 10px;
}

/*お届け先*/
.fs-c-checkout-destination__list {
  margin-bottom: 20px;
}

.fs-c-checkout-destination__list .fs-c-checkout-destination__name {
  margin-bottom: 20px;
}

@media screen and (min-width: 992px) {
  .fs-c-checkout-destination__destination {
    display: block;
  }
}
.fs-c-checkout-destination__button {
  width: 100%;
}

@media screen and (min-width: 992px) {
  .fs-c-checkout-destination__button {
    width: auto;
    margin-left: 20px;
  }
}
/*ポイント*/
.fs-c-checkout-pointInfo .fs-c-checkout-pointInfo__usePoint {
  margin-bottom: 20px;
}

/*配送方法*/
.fs-c-checkout-delivery__method__title {
  font-weight: bold;
  margin-bottom: 10px;
}

.fs-c-checkout-delivery__method__message {
  margin-bottom: 20px;
}

.fs-c-checkout-delivery__method__deliveryDateTime {
  margin-bottom: 20px;
}

/*のし・ギフト包装*/
.wrapping-message {
  margin-bottom: 20px;
}

.wrapping-message .text {
  margin-bottom: 20px;
}

.wrapping-message .text a {
  text-decoration: underline;
}

.wrapping-message .note {
  font-size: 1.6rem;
}

.fs-c-checkout-wrappingInfo__info {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-auto-rows: auto;
  grid-auto-flow: row;
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  align-items: baseline;
  margin: 2rem 0;
}

.fs-c-checkout-wrappingInfo__info > dd {
  font-size: 1.5rem;
}

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

/*ご注文内容*/
.fs-c-checkout-preview .fs-c-cartTable {
  border-top: none;
}

.fs-c-checkout-preview .fs-c-cartTable .fs-c-cartTable__row {
  border-bottom: none;
  padding: 0;
}

@media screen and (min-width: 992px) {
  .fs-c-checkout-preview .fs-c-cartTable .fs-c-cartTable__row {
    border: 1px solid #b9b9b9;
  }
}
.fs-c-checkout-preview .fs-c-cartTable .fs-c-cartTable__headerCell {
  display: table-cell;
  padding: 10px;
  font-weight: normal;
}

@media screen and (min-width: 992px) {
  .fs-c-checkout-preview .fs-c-cartTable .fs-c-cartTable__headerCell {
    white-space: nowrap;
  }
}
.fs-c-checkout-preview .fs-c-cartTable .fs-c-cartTable__headerCell,
.fs-c-checkout-preview .fs-c-cartTable .fs-c-cartTable__dataCell {
  margin-bottom: 0;
  padding: 10px;
}

@media screen and (min-width: 992px) {
  .fs-c-checkout-preview .fs-c-cartTable .fs-c-cartTable__dataCell {
    width: inherit;
  }
}
.fs-c-checkout-preview .fs-c-cartTable .fs-c-cartTable__dataCell:last-of-type {
  border: none;
}

@media screen and (min-width: 992px) {
  .fs-c-checkout-preview .fs-c-cartTable .fs-c-cartTable__dataCell--product {
    position: relative;
    top: auto;
    left: auto;
  }
}
.fs-c-checkout-preview .fs-c-cartTable .fs-c-cartTable__dataCell--quantity {
  padding: 10px;
  border-bottom: 1px solid #b9b9b9;
  width: 100%;
}

@media screen and (min-width: 992px) {
  .fs-c-checkout-preview .fs-c-cartTable .fs-c-cartTable__dataCell--quantity {
    justify-content: space-between;
  }
}
.fs-c-checkout-preview .fs-c-cartTable .fs-c-cartTable__dataCell--subtotal {
  padding: 10px;
  border-bottom: 1px solid #b9b9b9;
  width: 100%;
}

.fs-c-checkout-preview .fs-c-cartTable .fs-c-cartTable__message--preorder {
  font-size: 1.3rem;
  padding: 5px;
}

@media screen and (min-width: 992px) {
  .fs-c-checkout-preview .fs-c-cartTable .fs-c-cartTable__productName {
    margin-bottom: 10px;
    padding: 5px;
  }
}
@media screen and (min-width: 992px) {
  .fs-c-checkout-preview .fs-c-cartTable .fs-c-cartTable__productInfo {
    /*    width: 100%;*/
  }
}
@media screen and (min-width: 992px) {
  .fs-c-checkout-preview .fs-c-cartTable .fs-c-cartTable__unitPrice .fs-c-priceDisplay {
    font-size: 1.6rem;
  }
}
.fs-c-checkout-preview .fs-c-confirmOrder {
  display: flex;
  flex-direction: column-reverse;
  gap: 1.5em 0;
}

.fs-c-checkout-preview .fs-c-confirmOrder.fs-c-confirmOrder--creditCard {
  font-size: 12px;
}

.fs-c-checkout-preview .fs-c-confirmOrder.fs-c-confirmOrder--creditCard .c_red {
  color: #c9002e;
}

@media screen and (min-width: 992px) {
  .fs-c-checkout-preview .fs-c-confirmOrder {
    margin: 0;
  }
}
@media screen and (max-width: 991px) {
  .fs-c-checkout-preview .fs-c-confirmOrder .confirmOrder__button {
    margin-left: 20px;
    margin-right: 20px;
  }
}
/*クーポン*/
.fs-c-checkout-couponInfo__body .fs-c-checkout-couponCodeInput > *:not(:last-child) {
  margin-right: 0;
}

.fs-c-checkout-couponInfo input[type=text] {
  border: 1px solid #b9b9b9;
}

.fs-c-checkout-couponInfo .fs-c-checkout-couponInfo__message {
  margin-bottom: 20px;
}

.fs-c-checkout-couponInfo .fs-c-checkout-couponCodeInput {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  margin: 0 0 20px;
}

@media screen and (min-width: 992px) {
  .fs-c-checkout-couponInfo .fs-c-checkout-couponCodeInput__title {
    width: 100%;
  }
}
.fs-c-checkout-couponInfo .fs-c-checkout-couponCodeInput__input {
  width: 100%;
}

@media screen and (min-width: 992px) {
  .fs-c-checkout-couponInfo .fs-c-checkout-couponCodeInput__input {
    width: 300px;
    margin-right: 10px !important;
  }
}
.fs-c-checkout-couponInfo .fs-c-couponCodeInput__button {
  width: 100%;
  margin-top: 20px;
}

@media screen and (min-width: 992px) {
  .fs-c-checkout-couponInfo .fs-c-couponCodeInput__button {
    margin-top: 0;
    width: auto;
  }
}
.fs-c-checkout-couponInfo .fs-c-button--useCoupon {
  padding: 11px 0;
  font-size: 1.5rem;
  width: 100%;
}

@media screen and (min-width: 992px) {
  .fs-c-checkout-couponInfo .fs-c-button--useCoupon {
    width: 100px;
    font-weight: normal;
    padding: 8px 0;
  }
}
.fs-c-checkout-couponInfo .fs-c-checkout-couponList li:not(last-of-child) {
  margin-bottom: 20px;
}

.fs-c-checkout-couponInfo .fs-c-checkout-couponList__item > * + * {
  margin-left: 0;
}

.fs-c-checkout-couponInfo .fs-c-checkout-couponList__couponName {
  font-weight: bold;
}

.fs-c-checkout-couponInfo .fs-c-checkout-couponList__couponDiscount {
  color: #c9002e;
}

.fs-c-checkout-couponInfo .fs-c-checkout-couponStatus {
  border-radius: 0;
  border: 1px solid #cccccc;
  color: #ffffff;
  font-size: 1.4rem;
  width: 100%;
  height: auto;
  max-width: 100%;
  white-space: normal;
  padding: 10px 0;
  text-align: center;
}

.fs-c-checkout-couponInfo .fs-c-checkout-couponStatus.is-inactive {
  color: #898989;
}

@media screen and (min-width: 992px) {
  .fs-c-checkout-couponInfo .fs-c-checkout-couponStatus {
    /*    width: 314px;*/
  }
}
/* ==============================================
 ### STYLE SYSTEM 注文履歴
=================================================*/
.fs-body-my-orders {
  /**/
}

@media screen and (min-width: 992px) {
  .fs-body-my-orders .fs-c-history {
    overflow: hidden;
    *zoom: 1;
  }
}
.fs-body-my-orders .fs-c-history__termCtrl {
  padding: 10px;
}

.fs-body-my-orders .fs-c-history__info {
  border: 1px solid #d3d3d3;
  margin-bottom: 30px;
}

@media screen and (min-width: 992px) {
  .fs-body-my-orders .fs-c-history__info {
    width: 33%;
    float: right;
  }
}
.fs-body-my-orders .fs-c-history__infoSummary {
  margin-top: 20px;
}

.fs-body-my-orders .fs-c-history__total {
  margin-top: 20px;
}

.fs-body-my-orders .fs-c-history__total dt {
  border-top: 1px solid #9e9e9e;
  padding: 15px;
  font-weight: bold;
}

.fs-body-my-orders .fs-c-history__total dd {
  border-top: 1px solid #9e9e9e;
  text-align: right;
  padding: 15px;
}

.fs-body-my-orders .fs-c-history__term {
  text-align: center;
}

.fs-body-my-orders .fs-c-pairList {
  grid-column-gap: 0;
  grid-row-gap: 0;
}

.fs-body-my-orders .fs-c-pairList > dt::after {
  display: none;
}

.fs-body-my-orders .fs-c-history__listContainer {
  margin-bottom: 50px;
}

@media screen and (min-width: 992px) {
  .fs-body-my-orders .fs-c-history__listContainer {
    width: 65%;
    float: left;
  }
}
.fs-body-my-orders .fs-c-listControl {
  border-bottom: 1px solid #000;
  padding: 5px;
  text-align: right;
}

.fs-body-my-orders .fs-c-orderHistory {
  margin-bottom: 30px;
}

.fs-body-my-orders .fs-c-orderHistoryItem {
  border: 1px solid #d3d3d3;
  margin-top: 20px;
}

@media screen and (min-width: 992px) {
  .fs-body-my-orders .fs-c-orderHistoryItem {
    padding: 0;
  }
}
.fs-body-my-orders .fs-c-orderHistoryItem .fs-c-productImage__image {
  margin-left: auto;
  margin-right: auto;
}

.fs-body-my-orders .fs-c-orderHistoryItem__header {
  margin-bottom: 30px;
}

@media screen and (min-width: 992px) {
  .fs-body-my-orders .fs-c-orderHistoryItem__header {
    background-color: #eeedec;
    margin-bottom: 0;
    padding-bottom: 20px;
  }
}
.fs-body-my-orders .fs-c-orderHistoryItem__header dl {
  margin: 0;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #d3d3d3;
  padding: 15px 5px;
  background-color: #eeedec;
}

@media screen and (min-width: 992px) {
  .fs-body-my-orders .fs-c-orderHistoryItem__header dl {
    display: block;
    border: none;
    padding: 20px;
    background-color: transparent;
  }
}
.fs-body-my-orders .fs-c-orderHistoryItem__header dl dt {
  margin: 0;
  padding: 0;
  font-weight: bold;
}

@media screen and (min-width: 992px) {
  .fs-body-my-orders .fs-c-orderHistoryItem__header dl dt {
    text-align: center;
  }
}
.fs-body-my-orders .fs-c-orderHistoryItem__header dl dd {
  margin: 0;
  padding: 0;
}

.fs-body-my-orders .fs-c-orderHistoryItem__orderInfo {
  margin-bottom: 20px;
}

@media screen and (min-width: 992px) {
  .fs-body-my-orders .fs-c-orderHistoryItem__orderInfo {
    display: -ms-flex;
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
}
.fs-body-my-orders .fs-c-orderHistoryItem__header__button {
  margin-left: auto;
  margin-right: auto;
  /*    max-width: 280px;*/
}

@media screen and (min-width: 992px) {
  .fs-body-my-orders .fs-c-orderHistoryItem__header__button {
    padding: 0 20px;
  }
}
.fs-body-my-orders .fs-c-orderHistoryItem__body {
  border-top: 1px solid #d3d3d3;
}

.fs-body-my-orders .fs-c-orderHistoryItem__product {
  padding: 20px;
  border-bottom: 1px solid #d3d3d3;
}

.fs-body-my-orders .fs-c-orderHistoryItem__product:last-of-type {
  border: none;
}

@media screen and (min-width: 992px) {
  .fs-body-my-orders .fs-c-orderHistoryItem__product {
    display: -ms-flex;
    display: flex;
    align-items: center;
  }
}
.fs-body-my-orders .fs-c-orderHistoryItem__product > div {
  margin-bottom: 10px;
}

.fs-body-my-orders .fs-c-orderHistoryItem__product > div.fs-c-orderHistoryItem__button {
  display: none;
}

@media screen and (min-width: 992px) {
  .fs-body-my-orders .fs-c-orderHistoryItem__product > div {
    margin-bottom: 0;
    padding: 10px;
  }
}
.fs-body-my-orders .fs-c-orderHistoryItem__productImage {
  width: 50%;
  margin: 0 auto 20px;
}

@media screen and (min-width: 992px) {
  .fs-body-my-orders .fs-c-orderHistoryItem__productImage {
    width: 25%;
    max-width: 100px;
  }
}
.fs-body-my-orders .fs-c-orderHistoryItem__productName {
  width: 100%;
  text-align: center;
  font-weight: bold;
}

@media screen and (min-width: 992px) {
  .fs-body-my-orders .fs-c-orderHistoryItem__productName {
    width: 40%;
    text-align: left;
  }
}
@media screen and (min-width: 992px) {
  .fs-body-my-orders .fs-c-orderHistoryItem__unitPrice {
    width: 20%;
  }
}
.fs-body-my-orders .fs-c-orderHistoryItem__unitPrice .fs-c-priceDisplay {
  justify-content: center;
}

.fs-body-my-orders .fs-c-orderHistoryItem__productQuantity {
  text-align: center;
}

@media screen and (min-width: 992px) {
  .fs-body-my-orders .fs-c-orderHistoryItem__productQuantity {
    width: 15%;
  }
}
.fs-body-my-orders .fs-c-orderHistoryItem__button {
  margin-left: 0;
  justify-content: flex-end;
}

@media screen and (min-width: 992px) {
  .fs-body-my-orders .fs-c-orderHistoryItem__button {
    width: 25%;
    padding: 10px 0;
  }
}
@media screen and (min-width: 992px) {
  .my-orders-article {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    min-width: none;
    max-width: none;
  }
}
/* ==============================================
 ### STYLE SYSTEM 注文履歴詳細
=================================================*/
.fs-body-my-orders-details .fs-c-orderDetail h2.fs-c-heading {
  font-size: 1.6rem;
  font-weight: bold;
  padding: 5px;
}

@media screen and (min-width: 992px) {
  .fs-body-my-orders-details .fs-c-orderDetail h2.fs-c-heading {
    font-size: 1.7rem;
  }
}
.fs-body-my-orders-details .fs-c-orderDetail h3 {
  font-size: 1.6rem;
}

@media screen and (min-width: 992px) {
  .fs-body-my-orders-details .fs-c-orderDetail h3 {
    font-size: 1.7rem;
  }
}
.fs-body-my-orders-details .fs-c-orderDetail__data {
  margin-bottom: 30px;
}

@media screen and (min-width: 992px) {
  .fs-body-my-orders-details .fs-c-orderDetail__data {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 50px;
  }
}
.fs-body-my-orders-details .fs-c-orderDetailList {
  border-left: 1px solid #9e9e9e;
  border-bottom: 1px solid #9e9e9e;
  @inlcude clearfix;
}

.fs-body-my-orders-details .fs-c-orderDetailList dt {
  float: left;
  width: 8em;
  clear: both;
  margin: 0;
  padding: 10px;
  background-color: #eeedec;
  border-top: 1px solid #9e9e9e;
  border-right: 1px solid #9e9e9e;
}

.fs-body-my-orders-details .fs-c-orderDetailList dd {
  margin: 0;
  margin-left: 8em;
  padding: 10px;
  border-top: 1px solid #9e9e9e;
  border-right: 1px solid #9e9e9e;
}

.fs-body-my-orders-details .fs-c-orderDetail__addresseeInfo {
  margin-bottom: 50px;
}

@media screen and (min-width: 992px) {
  .fs-body-my-orders-details .fs-c-orderPerAddressee {
    overflow: hidden;
    *zoom: 1;
  }
}
.fs-body-my-orders-details .fs-c-orderPerAddressee__heading {
  background-color: #eeedec;
  padding: 10px;
}

.fs-body-my-orders-details .fs-c-orderPerAddressee__headingNumber {
  margin-right: 15px;
}

.fs-body-my-orders-details .fs-c-orderPerAddressee__addressee {
  padding: 10px;
}

@media screen and (min-width: 992px) {
  .fs-body-my-orders-details .fs-c-orderPerAddressee__addressee {
    padding: 20px;
    margin-bottom: 30px;
  }
  .fs-body-my-orders-details .fs-c-orderPerAddressee__cartTable .fs-c-cartTable__productImage .fs-c-productImage__image {
    max-width: 75px;
  }
}
.fs-body-my-orders-details .fs-c-orderPerAddressee__addressee dt {
  font-weight: bold;
  margin-bottom: 5px;
}

.fs-body-my-orders-details .fs-c-orderPerAddressee__addressee dd {
  margin: 0;
  margin-bottom: 10px;
}

.fs-body-my-orders-details .fs-c-cartTable__row .fs-c-cartTable__dataCell--product {
  margin-bottom: 0;
  display: block;
}

.fs-body-my-orders-details .fs-c-cartTable__row .fs-c-cartTable__dataCell--quantity {
  margin-bottom: 0;
  padding: 20px;
  display: block;
}

.fs-body-my-orders-details .fs-c-cartTable__row .fs-c-cartTable__dataCell--subtotal {
  margin-bottom: 0;
  padding: 20px;
  display: block;
}

@media screen and (min-width: 992px) {
  .fs-body-my-orders-details .fs-c-orderPerAddressee__cartTable {
    width: 65%;
    float: left;
  }
}
.fs-body-my-orders-details .fs-c-orderPerAddressee__cartTable .fs-c-cartTable__productInfo {
  width: calc(100% - 110px);
}

.fs-body-my-orders-details .fs-c-orderPerAddressee__orderDeliveryInfo {
  padding-bottom: 10px;
}

@media screen and (min-width: 992px) {
  .fs-body-my-orders-details .fs-c-orderPerAddressee__orderDeliveryInfo {
    float: right;
    width: 32%;
    margin: 0;
    border: 1px solid #d3d3d3;
    padding: 0 20px 20px;
  }
}
.fs-body-my-orders-details .fs-c-orderDetailInfo__heading {
  font-size: 1.7rem;
}

.fs-body-my-orders-details .fs-c-orderDetail__orderInfo {
  margin-bottom: 50px;
}

@media screen and (min-width: 992px) {
  .fs-body-my-orders-details .fs-c-orderDetail__orderInfo {
    overflow: hidden;
    *zoom: 1;
  }
}
@media screen and (min-width: 992px) {
  .fs-body-my-orders-details .fs-c-orderDetail__orderInfo .fs-c-orderDetailInfo__cartTable {
    width: 65%;
    float: left;
  }
}
.fs-body-my-orders-details .fs-c-orderDetail__orderInfo .fs-c-orderDetailInfo__cartTable .fs-c-cartTable__productInfo {
  width: 100%;
}

.fs-body-my-orders-details .fs-c-orderDetail__orderInfo .fs-c-orderDetailInfo__orderTotal {
  padding-bottom: 10px;
}

@media screen and (min-width: 992px) {
  .fs-body-my-orders-details .fs-c-orderDetail__orderInfo .fs-c-orderDetailInfo__orderTotal {
    float: right;
    width: 32%;
    margin: 0;
    border: 1px solid #d3d3d3;
    padding: 0 20px 20px;
  }
}
.fs-body-my-orders-details .fs-c-deliveryInfoList {
  margin-left: 10px;
  margin-right: 10px;
}

.fs-body-my-orders-details .fs-c-orderPaymentTable {
  margin: 10px;
  margin-left: 10px;
  width: calc(100% - 20px);
}

@media screen and (min-width: 992px) {
  .fs-body-my-orders-details .fs-c-orderPaymentTable {
    width: 100%;
    margin: 0;
  }
}
/* ==============================================
  ### PAGE SYSTEM お届け先追加
=================================================*/
.fs-body-my-addressbook .fs-c-noResultMessage__title {
  padding: 30px;
  text-align: center;
}

.fs-body-my-addressbook .fs-c-addressBookList__addButton {
  margin-bottom: 50px;
  margin-left: 18px;
  margin-right: 18px;
}

@media screen and (min-width: 992px) {
  .fs-body-my-addressbook .fs-c-addressBookList__addButton {
    justify-content: flex-end;
  }
}
.fs-body-my-addressbook .fs-c-addressBookList__count {
  background-color: #eeedec;
  padding: 10px;
  text-align: right;
}

.fs-body-my-addressbook .fs-c-addressBookList__list {
  margin-bottom: 50px;
  width: 100%;
}

.fs-body-my-addressbook .fs-c-addressBookList__list tr {
  border-bottom: 1px solid #d3d3d3;
}

.fs-body-my-addressbook .fs-c-addressBookList__list td {
  padding: 10px;
  vertical-align: middle;
}

@media screen and (min-width: 992px) {
  .fs-body-my-addressbook .fs-c-addressBookList__list td {
    border-bottom: 1px solid #d3d3d3;
  }
}
@media screen and (min-width: 992px) {
  .fs-body-my-addressbook .fs-c-addressBookList__list td:first-child {
    white-space: nowrap;
    width: 20%;
  }
}
.fs-body-my-addressbook .fs-c-addressBookList__list .fs-c-buttonContainer {
  display: -ms-flex;
  display: flex;
  justify-content: center;
}

@media screen and (min-width: 992px) {
  .fs-body-my-addressbook .fs-c-addressBookList__list .fs-c-buttonContainer {
    margin: 0 auto;
    justify-content: flex-end;
  }
}
.fs-body-my-addressbook .fs-c-addressBookList__list .fs-c-buttonContainer .fs-c-button--changeInfomation {
  margin-right: 10px;
}

/* =============================================================================
 ### PAGE SYSTEM ポイント履歴
============================================================================= */
.fs-body-my-points .fs-c-history__info {
  margin-bottom: 50px;
}

.fs-body-my-points .fs-c-listControl {
  margin-bottom: 20px;
  border-bottom: 1px solid #000;
  text-align: right;
}

.fs-body-my-points .fs-c-pointSummary {
  background-color: #f7f7f7;
  padding: 10px 20px 20px;
  border: 1px solid #d3d3d3;
  display: -ms-flex;
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: center;
}

@media screen and (min-width: 992px) {
  .fs-body-my-points .fs-c-pointSummary {
    width: 500px;
    margin: 0 auto;
    padding: 50px;
    box-sizing: border-box;
  }
}
.fs-body-my-points .fs-c-pointSummary dt {
  width: 60%;
  padding: 10px;
  border-bottom: 1px solid #ededed;
}

.fs-body-my-points .fs-c-pointSummary dd {
  width: 40%;
  margin: 0;
  padding: 10px;
  text-align: right;
  border-bottom: 1px solid #ededed;
}

.fs-body-my-points .fs-c-pointSummary .fs-c-pointSummary__label--availablePoint {
  font-size: 1.7rem;
}

.fs-body-my-points .fs-c-pointSummary .fs-c-pointSummary__value--availablePoint {
  font-size: 2rem;
  font-weight: bold;
  color: #c9002e;
}

.fs-body-my-points .fs-c-pointSummary .fs-c-pointSummary__label--limitedPoint {
  text-align: right;
}

.fs-body-my-points .fs-c-dropdown {
  margin-bottom: 30px;
  width: 50%;
}

@media screen and (min-width: 992px) {
  .fs-body-my-points .fs-c-dropdown {
    width: 30%;
  }
}
.fs-body-my-points .fs-c-dropdown::after {
  border-left: 1px solid #ededed;
}

.fs-body-my-points .fs-c-pointListTable {
  width: 100%;
  margin-bottom: 20px;
}

@media screen and (min-width: 992px) {
  .fs-body-my-points .fs-c-pointListTable {
    border-collapse: collapse;
    border-top: 1px solid #d3d3d3;
    border-left: 1px solid #d3d3d3;
  }
}
@media screen and (min-width: 992px) {
  .fs-body-my-points .fs-c-pointListTable th {
    padding: 10px;
    background-color: #eeedec;
    border-bottom: 1px solid #d3d3d3;
    border-right: 1px solid #d3d3d3;
  }
}
.fs-body-my-points .fs-c-pointListTable td {
  justify-content: space-between;
  padding: 10px;
  border-bottom: 1px solid #d3d3d3;
}

@media screen and (min-width: 992px) {
  .fs-body-my-points .fs-c-pointListTable td {
    border-right: 1px solid #d3d3d3;
    vertical-align: middle;
  }
}
.fs-body-my-points .fs-c-pointListTable + .fs-c-listControl {
  border-top: 1px solid #000;
  border-bottom: none;
}

/* ==============================================
 ### STYLE SYSTEM LINE ID連携
=================================================*/
.fs-c-lineIdLinkMessage {
  margin-bottom: 30px;
}

.fs-c-buttonContainer--lineIdLink {
  text-align: center;
  margin-bottom: 30px;
}

.fs-c-button__image--lineIdLink {
  width: 180px;
}

/* ==============================================
 ### STYLE SYSTEM LINE ID連携完了
=================================================*/
.fs-c-lineIdLinkCompleteMessage {
  margin-bottom: 30px;
}

/* ==============================================
 ### PAGE SYSTEM クレジットカード
=================================================*/
.fs-body-my-cards .fs-c-inputInformation__field {
  margin-bottom: 30px;
}

.fs-body-my-cards .fs-c-creditCardListItem {
  border: 1px solid #b9b9b9;
  margin-bottom: 30px;
}

.fs-body-my-cards .fs-c-creditCardListItem.is-active {
  border-width: 5px;
}

.fs-body-my-cards .fs-c-creditCardListItem:last-of-type {
  margin-bottom: 0;
}

.fs-body-my-cards .fs-c-creditCardListItem .fs-c-creditCardListItem__cardInfo {
  margin-bottom: 20px;
}

@media screen and (min-width: 992px) {
  .fs-body-my-cards .fs-c-creditCardListItem .fs-c-button--delete {
    width: 228px;
  }
}
/* ==============================================
 ### PAGE SYSTEM パスワード認証
=================================================*/
.fs-body-auth .fs-c-inputField {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 991px) {
  .fs-body-auth .fs-c-inputField {
    padding: 10px 20px;
  }
}
/* ==============================================
 ### 商品グループ共通設定
=================================================*/
.fs-c-subgroup {
  display: none;
}

.fs-c-productList {
  margin-bottom: 50px;
  width: 94.6%;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 992px) {
  .fs-c-productList {
    width: 100%;
    margin-bottom: 100px;
  }
}
.fs-c-productList .fs-c-button--viewProductDetail {
  display: none !important;
}

/* ==============================================
	## 並び替え・ページャーパーツ（システムパーツ）
=================================================*/
.fs-c-productList__controller {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 10px;
  position: relative;
  border-bottom: 1px solid #d3d3d3;
}

@media screen and (min-width: 992px) {
  .fs-c-productList__controller {
    margin-bottom: 45px;
    flex-direction: row;
  }
}
/* ==============================================
	 # ページネーション
=================================================*/
.fs-c-pagination {
  display: none;
}

@media screen and (min-width: 992px) {
  .fs-c-pagination {
    display: -ms-flex;
    display: flex;
  }
}
.fs-c-productList__list + .fs-c-productList__controller .fs-c-pagination {
  display: -ms-flex;
  display: flex;
  justify-content: center;
}

.fs-c-pagination .fs-c-pagination__item {
  flex: 0 1 auto;
  font-size: 1.2rem;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  padding: 10px;
  display: block;
}

.fs-c-pagination .fs-c-pagination__item.is-active {
  border-bottom: 1px solid #000;
  background-color: transparent;
}

.fs-c-pagination .fs-c-pagination__item--next,
.fs-c-pagination .fs-c-pagination__item--prev {
  background-color: transparent;
}

.fs-c-pagination .fs-c-pagination__item--next {
  text-align: right;
}

.fs-c-pagination .fs-c-pagination__item--prev {
  text-align: left;
}

.fs-c-pagination .fs-c-pagination__item--next::before {
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  content: "→";
  display: inline-block;
  font-size: 1rem;
  line-height: 1;
  color: #000;
}

.fs-c-pagination .fs-c-pagination__item--prev::before {
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  content: "←";
  display: inline-block;
  font-size: 1rem;
  line-height: 1;
  color: #000;
}

/* ==============================================
	 # 並べ替えボタン
=================================================*/
.fs-c-sortItems {
  order: 1;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

@media screen and (min-width: 992px) {
  .fs-c-sortItems {
    position: absolute;
    top: 0;
    left: 150px;
    /*    width: 35%;*/
    width: 25em;
  }
}
.fs-c-productList__list + .fs-c-productList__controller .fs-c-sortItems {
  display: none;
}

@media screen and (min-width: 992px) {
  .fs-c-productList__list + .fs-c-productList__controller .fs-c-sortItems {
    display: flex;
  }
}
.fs-c-sortItems .fs-c-sortItems__label {
  width: 20%;
  font-size: 1.2rem;
  padding-bottom: 10px;
}

@media screen and (min-width: 992px) {
  .fs-c-sortItems .fs-c-sortItems__label {
    width: 6em;
    padding-bottom: 8px;
  }
}
.fs-c-sortItems .fs-c-sortItems__label:after {
  content: "：";
}

.fs-c-sortItems .fs-c-sortItems__list {
  display: -ms-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
}

.fs-c-sortItems .fs-c-sortItems__list li {
  width: 33.33%;
  text-align: center;
  padding-bottom: 10px;
}

@media screen and (min-width: 992px) {
  .fs-c-sortItems .fs-c-sortItems__list li {
    padding-bottom: 8px;
  }
}
.fs-c-sortItems .fs-c-sortItems__list li.is-active {
  border-bottom: 1px solid #000;
}

.fs-c-sortItems .fs-c-sortItems__list li .fs-c-sortItems__list__item__label {
  font-size: 1.2rem;
}

/* ==============================================
	 # 件数表示
=================================================*/
.fs-c-listControl {
  text-align: center;
  width: 100%;
  margin-bottom: 40px;
}

@media screen and (min-width: 992px) {
  .fs-c-listControl {
    display: -ms-flex;
    display: flex;
    justify-content: space-between;
    margin-bottom: 0;
  }
}
.fs-c-productList__list + .fs-c-productList__controller .fs-c-listControl .fs-c-listControl__status {
  display: none;
}

@media screen and (min-width: 992px) {
  .fs-c-productList__list + .fs-c-productList__controller .fs-c-listControl .fs-c-listControl__status {
    display: block;
  }
}
.fs-c-listControl .fs-c-listControl__status__total {
  display: inline-block;
  position: relative;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-size: 1.7rem;
  padding-bottom: 4px;
}

.fs-c-listControl .fs-c-listControl__status__total:after {
  content: "件";
  font-size: 1rem;
}

.fs-c-listControl .fs-c-listControl__status__total__label {
  display: none;
}

.fs-c-listControl .fs-c-listControl__status__indication {
  display: none;
}

/* ==============================================
	## 商品一覧（システムパーツグループ）
=================================================*/
.fs-c-productList__list {
  display: -ms-flex;
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media screen and (min-width: 992px) {
  .fs-c-productList__list {
    margin-left: -26px;
    border: none;
    justify-content: flex-start;
    gap: 0;
  }
}
.fs-c-productList__list__item {
  width: 49%;
  position: relative;
  margin: 0;
  padding-top: 30px;
  margin-bottom: 30px;
  box-sizing: border-box;
}

@media screen and (min-width: 992px) {
  .fs-c-productList__list__item {
    width: calc(25% - 26px);
    margin-left: 26px;
    margin-bottom: 40px;
    border: none;
  }
}
.fs-c-productList__list__item img {
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 44.4vw;
}

@media screen and (min-width: 992px) {
  .fs-c-productList__list__item img {
    /*    max-width: 68%; */
    max-height: 280px;
  }
}
.fs-c-productList__list__item .fs-c-productMarks {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

.fs-c-productList__list__item .fs-c-productMarks .fs-c-mark--coolDeliveryAvailable {
  display: none;
}

.fs-c-productList__list__item .ctm_product_discount-rate {
  text-align: center;
}

/* ==============================================
	## 商品画像・拡大パーツ（システムパーツ）
=================================================*/
.fs-c-productListItem__imageContainer {
  margin-bottom: 10px;
}

/* ==============================================
	## 商品名パーツ（システムパーツ
=================================================*/
.fs-c-productListItem__productName {
  margin: 0;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 10px;
}

@media screen and (min-width: 992px) {
  .fs-c-productListItem__productName {
    margin-bottom: 5px;
    font-size: 1.6rem;
  }
}
.fs-c-productListItem__productName a {
  color: #000;
}

.fs-c-productListItem__productName span {
  display: block;
  font-weight: normal;
}

@media screen and (min-width: 992px) {
  .fs-c-productListItem__productName span {
    line-height: 1.5;
  }
}
.fs-c-productListItem__productName .fs-c-productName__copy {
  color: #313131;
  font-size: 1.1rem;
  margin-bottom: 1em;
}

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

.fs-c-productName__name {
  line-height: 1.6em;
}

/*----------------------------------------------
	## 非表示（システムパーツ）
------------------------------------------------*/
.fs-c-productListItem__control.fs-c-buttonContainer {
  display: none;
}

/*----------------------------------------------
	## 商品価格パーツ（システムパーツ）
------------------------------------------------*/
.fs-c-productListItem__prices {
  display: block;
  text-align: center;
}

.fs-c-productListItem__prices .fs-c-productPrice--listed .fs-c-productPrice__main__price {
  text-decoration: line-through;
  color: #1c1d1d;
}

.fs-c-productListItem__prices .fs-c-productPrice--listed + .fs-c-productPrice--selling {
  color: #cc0000;
}

.fs-c-productListItem__prices .fs-c-productPrice--selling,
.fs-c-productListItem__prices .fs-c-productPrice--preorder {
  color: #1c1d1d;
}

.fs-c-productListItem__prices .fs-c-productPrice__addon {
  font-size: 1.1rem;
}

.fs-c-productListItem .fs-c-price {
  display: inline-block;
}

.fs-c-productListItem .fs-c-productPrice__main__label {
  display: block;
  font-size: 1.4rem;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  text-align: center;
}

.fs-c-productListItem .fs-c-productPrice__main__price {
  font-size: 1.4rem;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  text-align: center;
}

.ctm_product_discount-rate {
  position: relative;
  margin-left: 10px;
}

.ctm_product_discount-rate span {
  padding: 2px;
  background-color: #cc0000;
  color: #fff;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-size: 1.2rem;
  line-height: 1;
}

.fs-c-productListItem__productDescription {
  margin-bottom: 0.33em;
  font-size: 1.2rem;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  line-height: normal;
  text-align: center;
  color: #898989;
}

.fs-c-productList__list .fs-c-button--subscribeToArrivalNotice--list {
  display: none;
}

.fs-c-productListItem__outOfStock {
  text-align: center;
  color: #cc0000;
  border: 1px solid #cc0000;
  padding: 5px;
  border-radius: 0;
  margin-top: 20px;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
}

.fs-c-productListItem__control .fs-c-button--particular {
  display: block;
  z-index: 10;
  position: absolute;
  left: 5px;
  top: 35px;
}

.fs-c-button--viewProductDetail {
  display: none !important;
}

.fs-c-button--removeFromWishList--icon {
  background-image: url(https://hirakawa.itembox.design/item/img/common/favdone_itemdetail.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 17px;
  height: 16px;
  text-indent: -9999em;
}

@media screen and (min-width: 992px) {
  .fs-c-button--removeFromWishList--icon {
    width: 20px;
    height: 20px;
  }
}
.fs-c-button--addToWishList--icon {
  background-image: url(https://hirakawa.itembox.design/item/img/common/fav_itemdetail.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 17px;
  height: 16px;
  text-indent: -9999em;
}

@media screen and (min-width: 992px) {
  .fs-c-button--addToWishList--icon {
    width: 20px;
    height: 20px;
  }
}
.fs-c-button--subscribeToArrivalNotice--list {
  width: 100%;
}

/*----------------------------------------------
	## 予約コメントパーツ（システムパーツ）
------------------------------------------------*/
.fs-c-productListItem__preorderMessage {
  color: red;
  text-align: center;
  margin-bottom: 10px;
  display: none;
}

/*----------------------------------------------
	## 販売期間表示（システムパーツ）
------------------------------------------------*/
.fs-c-productListItem__salesPeriodNotice {
  margin-top: 10px;
  text-align: center;
  font-size: 1.2rem;
}

.fs-c-productListItem__salesPeriod {
  border: 1px dotted #d3d3d3;
  padding: 5px;
  text-align: center;
  font-size: 1.2rem;
  display: none;
}

.fs-c-productList__list .fs-c-productListItem__salesPeriod {
  margin-top: 10px;
}

.fs-c-productListItem__salesPeriod dt {
  text-align: center;
  font-weight: bold;
}

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

/* =============================================
 ###　 PRODUCT GROUP PAGE CONTENT
============================================= */
.ctm_group-header {
  margin-bottom: 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  font-weight: 600;
}

@media screen and (min-width: 992px) {
  .ctm_group-header .ctm_heading--page {
    margin-right: 2rem;
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 991px) {
  .ctm_group-header .ctm_heading--page {
    margin-top: 3rem;
    margin-right: 1rem;
    font-size: 2rem;
  }
}
.ctm_search-header {
  margin-bottom: 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-weight: 600;
}

@media screen and (max-width: 991px) {
  .ctm_search-header {
    margin-top: 3rem;
  }
}
@media screen and (min-width: 992px) {
  .ctm_search-header {
    margin-bottom: 7rem;
  }
}
@media screen and (min-width: 992px) {
  .ctm_search-header .ctm_heading--page {
    margin-right: 2rem;
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 991px) {
  .ctm_search-header .ctm_heading--page {
    margin-right: 1rem;
    font-size: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .ctm_group-nav {
    margin-bottom: 8rem;
  }
}
@media screen and (max-width: 991px) {
  .ctm_group-nav {
    margin-bottom: 3rem;
  }
}
@media screen and (min-width: 992px) {
  .ctm_group-nav .ctm_group-nav__label {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .ctm_group-nav .ctm_group-nav__label {
    padding: 0.8rem 4.6rem 0.8rem 1.6rem;
    border: 1px #525252 solid;
    font-size: 1.4rem;
    position: relative;
  }
}
.ctm_group-nav .ctm_group-nav__label:after {
  content: "";
  display: block;
  position: absolute;
  top: 11px;
  right: 20px;
  border-top: 9px solid #525252;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  height: 0;
  width: 0;
  transition: all 0.3s;
}

.ctm_group-nav .ctm_group-nav__label.openAcc:after {
  transform: rotate(180deg);
}

@media screen and (min-width: 992px) {
  .ctm_group-nav .ctm_group-nav__body {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
  }
}
@media screen and (max-width: 991px) {
  .ctm_group-nav .ctm_group-nav__body {
    margin-top: 2rem;
    display: none;
    border: #b9b9b9 solid;
    border-width: 1px 0;
    padding: 2rem 0;
  }
}
.ctm_group-nav .ctm_group-nav__body > a {
  position: relative;
}

@media screen and (min-width: 992px) {
  .ctm_group-nav .ctm_group-nav__body > a {
    padding: 0.6rem 1.2rem;
    border: 1px #525252 solid;
    width: calc(20% - 1.6rem);
    display: block;
    text-align: center;
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 991px) {
  .ctm_group-nav .ctm_group-nav__body > a {
    padding: 1rem 0;
    display: block;
    font-size: 1.5rem;
    line-height: 2.4rem;
  }
}
.ctm_group-nav .ctm_group-nav__body > a:after {
  content: "";
  display: block;
  position: absolute;
  border: #525252 solid;
  transform: rotate(45deg);
  transition: all 0.3s;
}

@media screen and (min-width: 992px) {
  .ctm_group-nav .ctm_group-nav__body > a:after {
    right: 10px;
    width: 7px;
    height: 7px;
    border-width: 1px 1px 0 0;
    top: calc(50% - 4px);
  }
}
@media screen and (max-width: 991px) {
  .ctm_group-nav .ctm_group-nav__body > a:after {
    right: 7px;
    width: 7px;
    height: 7px;
    border-width: 1px 1px 0 0;
    top: calc(50% - 4px);
  }
}
/* =============================================
 ###　SLICK THEME ITEMLIST CAROUSEL
============================================= */
.ctm_itemlist--carousel {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.ctm_itemlist--carousel .slick-track,
.ctm_itemlist--carousel .slick-list {
  transform: translate3d(0, 0, 0);
}

.ctm_itemlist--carousel .slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.ctm_itemlist--carousel .slick-list:focus {
  outline: none;
}

.ctm_itemlist--carousel .slick-list.dragging {
  cursor: pointer;
}

.ctm_itemlist--carousel .slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.ctm_itemlist--carousel .slick-track:before,
.ctm_itemlist--carousel .slick-track:after {
  content: "";
  display: table;
}

.ctm_itemlist--carousel .slick-track:after {
  clear: both;
}

.slick-loading .ctm_itemlist--carousel .slick-track {
  visibility: hidden;
}

.ctm_itemlist--carousel .slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
}

.ctm_itemlist--carousel [dir=rtl] .slick-slide {
  float: right;
}

.ctm_itemlist--carousel .slick-slide img {
  display: block;
}

.ctm_itemlist--carousel .slick-slide.slick-loading img {
  display: none;
}

.ctm_itemlist--carousel .slick-slide.dragging img {
  pointer-events: none;
}

.ctm_itemlist--carousel.slick-initialized .slick-slide {
  display: block;
}

.ctm_itemlist--carousel .slick-loading .slick-slide {
  visibility: hidden;
}

.ctm_itemlist--carousel .slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.ctm_itemlist--carousel .slick-arrow.slick-hidden {
  display: none;
}

.ctm_itemlist--carousel {
  position: relative;
  z-index: 0;
}

.ctm_itemlist--carousel a {
  display: block;
}

.ctm_itemlist--carousel .slick-loading .slick-list {
  background: #fff url("/system/images/loading.svg") center center no-repeat;
}

.ctm_itemlist--carousel .slick-prev,
.ctm_itemlist--carousel .slick-next {
  position: absolute;
  z-index: 9999;
  display: block;
  height: 40px;
  width: 40px;
  line-height: 0px;
  font-size: 0px;
  background: rgba(30, 30, 30, 0.3);
  color: transparent;
  top: 50%;
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}

.ctm_itemlist--carousel .slick-prev:hover,
.ctm_itemlist--carousel .slick-prev:focus,
.ctm_itemlist--carousel .slick-next:hover,
.ctm_itemlist--carousel .slick-next:focus {
  outline: none;
  color: transparent;
}

.ctm_itemlist--carousel .slick-prev:hover:before,
.ctm_itemlist--carousel .slick-prev:focus:before,
.ctm_itemlist--carousel .slick-next:hover:before,
.ctm_itemlist--carousel .slick-next:focus:before {
  opacity: 1;
}

.ctm_itemlist--carousel .slick-prev.slick-disabled:before,
.ctm_itemlist--carousel .slick-next.slick-disabled:before {
  opacity: 0.25;
}

.ctm_itemlist--carousel .slick-prev:before,
.ctm_itemlist--carousel .slick-next:before {
  cursor: pointer;
  font-family: "fs-icon";
  color: white;
  font-size: 40px;
  /*R*/
  line-height: 1;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ctm_itemlist--carousel .slick-prev {
  left: 4px;
}

[dir=rtl] .ctm_itemlist--carousel .slick-prev {
  left: auto;
  right: 4px;
}

.ctm_itemlist--carousel .slick-prev:before {
  content: "\e90b";
}

[dir=rtl] .ctm_itemlist--carousel .slick-prev:before {
  content: "\e90c";
}

.ctm_itemlist--carousel .slick-next {
  right: 4px;
}

[dir=rtl] .ctm_itemlist--carousel .slick-next {
  left: 4px;
  right: auto;
}

.ctm_itemlist--carousel .slick-next:before {
  content: "\e90c";
}

[dir=rtl] .ctm_itemlist--carousel .slick-next:before {
  content: "\e90b";
}

.ctm_itemlist--carousel .slick-dots {
  line-height: 1;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 4px;
  margin: 0;
}

.ctm_itemlist--carousel .slick-dots li {
  position: relative;
  display: inline-block;
  height: 8px;
  width: 8px;
  margin: 3px;
  padding: 0;
  cursor: pointer;
}

.ctm_itemlist--carousel .slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 8px;
  width: 8px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.ctm_itemlist--carousel .slick-dots li button:hover,
.ctm_itemlist--carousel .slick-dots li button:focus {
  outline: none;
}

.ctm_itemlist--carousel .slick-dots li button:hover:before,
.ctm_itemlist--carousel .slick-dots li button:focus:before {
  opacity: 1;
}

.ctm_itemlist--carousel .slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "●";
  width: 8px;
  height: 8px;
  font-family: "fs-icon";
  font-size: 6px;
  /*R*/
  line-height: 8px;
  text-align: center;
  color: #aaa;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ctm_itemlist--carousel .slick-dots li.slick-active button:before {
  color: #aaa;
  opacity: 0.75;
}

/* --------------------------------------------
 ACC CUSTOM
-------------------------------------------- */
.ctm_acc {
  border-bottom: #b9b9b9 1px solid;
}

.ctm_acc-item .ctm_acc__label {
  position: relative;
  cursor: pointer;
  border-top: #b9b9b9 1px solid;
  padding: 1.7rem 0;
  font-size: 1.7rem;
  font-weight: 600;
}

.ctm_acc-item .ctm_acc__label:after {
  content: "";
  display: block;
  position: absolute;
  border: #221714 solid;
  transform: rotate(135deg);
  transition: all 0.3s;
  visibility: visible;
}

@media screen and (min-width: 992px) {
  .ctm_acc-item .ctm_acc__label:after {
    right: 5px;
    width: 17px;
    height: 17px;
    border-width: 2px 2px 0 0;
    top: calc(50% - 12px);
  }
}
@media screen and (max-width: 991px) {
  .ctm_acc-item .ctm_acc__label:after {
    right: 20px;
    width: 12px;
    height: 12px;
    border-width: 1px 1px 0 0;
    top: calc(50% - 12px);
  }
}
.ctm_acc-item .ctm_acc__label.openAcc:after {
  top: calc(50% - 5px);
  transform: rotate(-45deg);
}

.ctm_acc-item .ctm_acc__content {
  display: none;
  padding-bottom: 3rem;
}

/* =============================================
 ###　ITEMS LINE BLOCK
============================================= */
/* --------------------------------------------
 CC RECOMMEND-LIST
-------------------------------------------- */
@media screen and (min-width: 992px) {
  .ctm_recommendblock,
  .ctm_l-featured-products {
    margin-top: 12rem;
    margin-bottom: 12rem;
  }
}
@media screen and (max-width: 991px) {
  .ctm_recommend--products {
    padding-left: 0;
    padding-right: 0;
    margin-top: 5rem;
    margin-bottom: 5rem;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    width: calc(100% + 3rem);
  }
}
@media screen and (min-width: 992px) {
  .ctm_recommend--history {
    margin-top: 6rem;
    margin-bottom: 6rem;
  }
}
@media screen and (max-width: 991px) {
  .ctm_recommend--history {
    margin-top: 5rem;
    margin-bottom: 5rem;
    padding-left: 0;
    padding-right: 0;
  }
}
/* FS CAROUSEL */
@media screen and (min-width: 992px) {
  .fs-c-wishlistProduct {
    margin-top: 8rem;
    margin-bottom: 8rem;
  }
}
@media screen and (max-width: 991px) {
  .fs-c-wishlistProduct {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
}
.fs-c-wishlistProduct__title {
  margin-bottom: 3rem;
  line-height: 1.5;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-weight: bold;
}

@media screen and (min-width: 992px) {
  .fs-c-wishlistProduct__title {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 991px) {
  .fs-c-wishlistProduct__title {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
  }
}
/* FS CAROUSEL */
.fs-c-featuredProduct {
  margin-top: 8rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 1160px;
}

@media screen and (max-width: 991px) {
  .fs-c-featuredProduct {
    margin-top: 0;
    /*      margin-bottom: 5rem;*/
    margin-left: -1rem;
    margin-right: -1rem;
    width: calc(100% + 2rem);
  }
}
.fs-c-featuredProduct__header {
  margin-bottom: 3rem;
}

@media screen and (min-width: 992px) {
  .fs-c-featuredProduct__header {
    border-bottom: 0;
  }
}
@media screen and (max-width: 991px) {
  .fs-c-featuredProduct__header {
    padding-left: 15px;
    padding-right: 15px;
    border-bottom: 0;
  }
}
.fs-c-featuredProduct__title {
  display: none;
}

.fs-body-cart .fs-c-featuredProduct__title {
  display: block;
  text-align: center;
  display: block;
  padding-bottom: 0;
  font-family: "Shippori Mincho", "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-size: 2.5rem;
}

/**/
.fs-c-productListCarousel {
  display: flex;
  justify-content: center;
  align-items: center;
}

.fs-c-productListCarousel .fs-c-productListCarousel__ctrl {
  display: none !important;
}

.fs-c-productListCarousel__list__item {
  margin: 0 12px;
}

@media screen and (min-width: 992px) {
  .fs-c-productListCarousel__list__item {
    flex-basis: 212px;
    max-width: 212px;
    min-width: 212px;
  }
}
@media screen and (max-width: 991px) {
  .fs-c-productListCarousel__list__item {
    flex-basis: 120px;
    max-width: 120px;
    min-width: 120px;
  }
}
.fs-c-slick.slick-initialized.fs-c-productListCarousel__list .slick-slide {
  width: auto;
}

.fs-c-productListCarousel__list__item img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 68%;
}

@media screen and (max-width: 991px) {
  .fs-c-productListCarousel__list__item img {
    max-width: 100%;
    max-height: 55.6vw;
  }
}
/* ITEMLIST CAROUSEL */
/*@media screen and (min-width: 992px) {
  .ctm_itemlist--carousel {
    width: 100%;
    display: -webkit-flex;
    display: flex;
  }
}
@media screen and (max-width: 991px) {
  .ctm_itemlist--carousel.slick-initialized .slick-list {
    padding-left: 15px;
    padding-right: 15px; } }
.ctm_itemlist--carousel.slick-initialized .ctm_itemlist--carousel__ctrl {
  display: none !important; }
.ctm_itemlist--carousel.slick-initialized .slick-arrow {
  display: none !important; }

@media screen and (min-width: 992px) {
  .ctm_recommend__list__item {
    flex-basis: calc(208 / 1160* 100%);
    margin: 0 12px;
    max-width: 212px; } }
@media screen and (max-width: 991px) {
  .ctm_recommend__list__item {
    margin-right: 12px;
    flex-basis: 120px;
    max-width: 120px;
    min-width: 120px; } }*/
/* =============================================
 ### PAGE SYSTEM AMAZON
============================================= */
.fs-body-checkout-amazon .fs-c-checkout-loginGuidance {
  border: 1px solid #d3d3d3;
  margin-bottom: 30px;
  padding: 20px;
}

.fs-body-checkout-amazon .fs-c-checkout-loginGuidance__message {
  text-align: center;
  margin-bottom: 20px;
}

.fs-body-checkout-amazon .fs-c-checkout-preview {
  padding: 20px 0 0;
}

.fs-body-checkout-amazon .fs-c-checkout-preview .fs-c-checkout-preview__body {
  padding: 20px;
}

.fs-body-checkout-amazon #fs-amazonPaymentInfo-container {
  margin-bottom: 20px;
}

@media screen and (min-width: 992px) {
  .fs-body-checkout-amazon .fs-c-agreementConfirmation {
    padding: 10px 0;
  }
}
@media screen and (min-width: 992px) {
  .fs-body-checkout-amazon .fs-c-agreementConfirmation .fs-c-agreementConfirmation__addon {
    width: 100%;
  }
}
/* =============================================
 ### PAGE SYSTEM Cart Login
============================================= */
.fs-body-cart-login .fs-c-guestPurchase {
  line-height: 1.5;
}

@media screen and (max-width: 991px) {
  .fs-body-cart-login .fs-c-guestPurchase {
    margin: 0;
  }
}
/* =============================================
 ### PAGE SYSTEM CustomerDetails
============================================= */
@media screen and (max-width: 991px) {
  .fs-body-customerDetails .fs-c-button--registerAndContinue {
    /*      padding: 15px;
          width: 100%;*/
  }
}
/* =============================================
 ### PAGE SYSTEM newsletter
============================================= */
.fs-body-newsletter-subscribe .fs-c-privacyPolicyAgreeField {
  border-top: none;
}

/* =============================================
 ### PAGE SYSTEM newsletter
============================================= */
.fs-body-register .fs-c-privacyPolicyAgreeField {
  border-top: none;
}

/* =============================================
 ### PAGE SYSTEM Contact
============================================= */
.ctm_contactform {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.4rem;
}

.ctm_contactform dl#formarea dt {
  margin-top: 2em;
  margin-bottom: 1em;
}

.ctm_contactform #formarea .field_name {
  width: 100%;
}

.ctm_contactform #formarea table.field_name td {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ctm_contactform #formarea .field_name input {
  width: calc(50% - 3em);
}

.ctm_contactform #formarea .field_caution {
  margin: 0.5em 0 0;
  font-weight: 400;
}

.ctm_contactform #formarea textarea {
  width: 100%;
}

.ctm_page--guide .ctm_contactform .fs-c-inputInformation__button {
  margin-bottom: 0;
}

.ctm_page--guide .fs-c-inputInformation__button {
  margin-top: 5em;
}

.ctm_page--guide .fs-c-inputInformation__button input.fs-c-button--primary {
  width: 228px;
  padding: 15px 0;
  background-color: #525252;
  border: 1px solid #525252;
}

@media screen and (max-width: 991px) {
  .ctm_page--guide .fs-c-inputInformation__button input.fs-c-button--primary {
    padding: 15px;
  }
}
/* =============================================
 ### ログイン連携
============================================= */
.fs-c-linkServicesList__item {
  margin-bottom: 50px;
  border: 1px solid #bababa;
  padding: 20px;
}

@media screen and (min-width: 992px) {
  .fs-c-linkServicesList__item {
    display: flex;
    align-items: center;
  }
}
.fs-c-linkService__service {
  font-size: 1.8rem;
  border-bottom: 1px solid #bababa;
  margin-bottom: 10px;
  padding: 5px;
  font-weight: bold;
}

@media screen and (min-width: 992px) {
  .fs-c-linkService__service {
    border: none;
    width: 10em;
    margin-bottom: 0;
    border-right: 1px solid #bababa;
  }
}
.fs-c-linkService__status {
  text-align: center;
  padding: 20px;
  background-color: #eeedec;
  margin-bottom: 10px;
}

@media screen and (min-width: 992px) {
  .fs-c-linkService__status {
    width: 30%;
    background: none;
    margin-bottom: 0;
  }
}
.fs-c-linkService__button {
  padding: 0 30px;
}

@media screen and (min-width: 992px) {
  .fs-c-linkService__button {
    margin-left: auto;
  }
}
.fs-body-my-linkedAccounts .fs-c-buttonContainer--pair {
  width: 100%;
}

@media screen and (min-width: 992px) {
  .fs-body-my-linkedAccounts .fs-c-buttonContainer--pair {
    width: 80%;
    margin: 0 auto;
  }
}
.fs-body-my-linkedAccounts .fs-c-buttonContainer--pair button {
  width: 100%;
}

/* ----------------------

241003　A8タグ調整

-----------------------*/
#a8sales img {
  width: 0;
  height: 0;
}

/* ----------------------

241010　A8タグ調整

-----------------------*/
@media screen and (min-width: 992px) {
  .fs-body-cart .ctm_cart_mainColumn {
    width: 63.7931034483%;
  }
  .fs-body-cart .ctm_cart_mainColumn .fs-l-cart__mainColumn {
    width: 100%;
  }
}
.fs-body-cart .ctm_cart_addcontent1 .ctm_cart_addcontent1_item {
  border: 1px solid #b9b9b9;
  padding: 15px;
  margin-bottom: 20px;
}

.fs-body-cart .ctm_cart_addcontent1 .ctm_cart_addcontent1_item .ttl {
  font-weight: bold;
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.fs-body-cart .ctm_cart_addcontent1 .ctm_cart_addcontent1_item .ttl .add {
  font-weight: normal;
  font-size: 1.4rem;
}

.fs-body-cart .ctm_cart_addcontent1 .ctm_cart_addcontent1_item.postage dl {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.fs-body-cart .ctm_cart_addcontent1 .ctm_cart_addcontent1_item.postage dt {
  width: 8em;
}

.fs-body-cart .ctm_cart_addcontent1 .ctm_cart_addcontent1_item.postage dd {
  width: calc(100% - 8em);
}

.fs-body-cart .ctm_cart_addcontent1 .ctm_cart_addcontent1_item .c_red {
  color: #c9002e;
}

/* ----------------------

241018　注文確認修正

-----------------------*/
.fs-c-modal--wrappingSettings .fs-c-inputInformation__message {
  background-color: #fff;
}

.bg01 {
  padding: 2rem;
  background-color: #f7f7f7;
}

.fs-c-modal--wrappingSettings .flexbox .ttl {
  font-weight: bold;
  margin-bottom: 20px;
}

.fs-c-modal--wrappingSettings .flexbox .text {
  text-align: left;
  margin-bottom: 20px;
}

@media screen and (min-width: 992px) {
  .fs-c-modal--wrappingSettings .flexbox {
    display: flex;
    justify-content: space-between;
  }
  .fs-c-modal--wrappingSettings .flexbox .text {
    width: 48%;
    text-align: left;
  }
  .fs-c-modal--wrappingSettings .flexbox .image {
    width: 48%;
  }
}
.fs-c-modal--wrappingSettings .messagecard {
  margin-bottom: 20px;
}

.fs-c-modal--wrappingSettings .messagecard .ttl {
  margin-bottom: 20px;
}

/* ==============================================
 ### 24-12-26 長期休暇告知
=================================================*/
.fs-body-cart .ctm_vacation_notice {
  margin-bottom: 30px;
}

.fs-body-cart .ctm_vacation_notice .ttl {
  font-weight: bold;
  font-size: 1.6rem;
  margin-bottom: 10px;
}

/* =============================================
 ### 25-04-02 お気に入り一覧
============================================= */
.fs-body-my-wishlist .fs-c-productListItem__control {
  display: flex;
  flex-wrap: wrap;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  align-items: center;
}

.fs-body-my-wishlist .fs-c-button--subscribeToArrivalNotice--list,
.fs-body-my-wishlist .fs-c-button--addToCart--list {
  display: none;
}

.fs-body-my-wishlist .fs-c-productListItem__purchaseDisabledMessage {
  display: block;
  order: 1;
  text-align: center;
  width: 100%;
  border: 1px solid #c9002e;
  color: #c9002e;
  padding: 5px;
  line-height: 1;
  margin-top: 100px;
}

.fs-body-my-wishlist .fs-c-noImage {
  display: block;
  height: auto;
  width: 100%;
  text-align: center;
  padding-top: 70px;
  padding-bottom: 70px;
}

@media screen and (min-width: 992px) {
  .fs-body-my-wishlist .fs-c-noImage {
    padding-top: 95px;
    padding-bottom: 95px;
  }
  .fs-body-my-wishlist .fs-c-productListItem__purchaseDisabledMessage {
    margin-top: 150px;
  }
}
/* =============================================
 ###　お問い合わせ商品　価格非表示
============================================= */
/* お問い合わせ商品タグがついている場合商品一覧価格非表示 */
.fs-c-productList__list__item:has(.mark_Inquireditem) .fs-c-productListItem__prices {
  display: none;
}

/* レイアウト：商品詳細 お問い合わせ商品【ctm】の場合、商品価格非表示 */
.main__Inquireditem .ctm_productPrice {
  display: none;
}

/* =============================================
 ###　注文確認　ラッピング設定モーダル
============================================= */
.fs-c-modal--wrappingSettings .fs-c-inputInformation__message {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}
.fs-c-modal--wrappingSettings .giftbox {
  display: grid;
  gap: 20px;
}
.fs-c-modal--wrappingSettings .giftbox .list {
  display: flex;
}
.fs-c-modal--wrappingSettings .giftbox .list a {
  text-decoration: underline;
}
.fs-c-modal--wrappingSettings .giftbox .text {
  text-align: left;
}
.fs-c-modal--wrappingSettings .giftbox .text.bg_gray {
  background-color: #f7f7f7;
  padding: 10px;
}
@media screen and (min-width: 992px) {
  .fs-c-modal--wrappingSettings .fs-c-inputTable .fs-c-inputTable__dataCell {
    width: 100%;
  }
  .fs-c-modal--wrappingSettings .fs-c-inputTable .fs-c-dropdown {
    width: 20em;
    margin: 0 auto;
  }
}/*# sourceMappingURL=system.css.map */