@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");

/* reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: 700;
  font-family: "Helvetica", "Arial", sans-serif;
}

ol,
ul {
  list-style: none;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  position: relative;
  min-height: 100vh;
  line-height: 1.5;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  line-height: 1;
}
input,
button {
  line-height: normal;
}
a,
input,
button {
  transition: opacity 0.5s ease;
  text-decoration: none;
  color: #333;
  cursor: pointer;
}
a:hover,
input:hover,
button:hover {
  opacity: 0.8;
}

table {
  width: 100%;
  border-collapse: collapse;
}

p {
  margin: 0;
}

/* 共通
-------------------- */
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  color: #000;
  background-color: #fff;
}

h1 {
  font-size: 24px;
}
h2 {
  font-size: 20px;
}
h3 {
  font-size: 18px;
}
h4,
h5 {
  font-size: 16px;
}

.indent {
  padding-left: 1em;
  text-indent: -1em;
}

h1.ttlBlack {
  display: block;
  width: 100vw;
  margin: 0 calc(50% - 50vw) 30px;
  background: #000;
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 0;
}

#categoryHero .categoryName .eigo small,
.topMain .overlay small,
.topPickup h3,
.accountMenu .ttl,
.accountMenu .login .ttlTokuten,
.logo {
  font-family: "Times New Roman", Times, serif;
}

.pc-only {
  display: none;
}
.sp-only {
  display: inline;
}

/* ヘッダー
-------------------- */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  border-bottom: 1px solid #ccc;
  height: 50px;
}

header .logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
header .logo img {
  width: 144px;
}

/* パンくずリスト
-------------------- */
.fs-c-breadcrumb {
  display: none;
  max-width: 1000px;
  margin: 0 auto 10px;
  white-space: nowrap;
  overflow: auto;
}
.fs-c-breadcrumb ol li a {
  text-decoration: underline;
}
.fs-c-breadcrumb ol li a:hover {
  text-decoration: none;
}

/* メイン
-------------------- */
main {
  max-width: 94%;
  margin: 0 auto 80px;
}

/* トップページ
-------------------- */
main.topPage {
  text-align: center;
}
main.topPage h2 {
  margin-bottom: 20px;
}

.topMainWrap {
  display: flex;
  flex-direction: column;
  width: 100vw;
  margin: 0 calc(50% - 50vw) 40px;
}

.topMain {
  position: relative;
  width: 100%;
}

.topMain a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.topMain .overlay {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 40%;
}
.topMain.other .overlay {
  top: 45%;
  bottom: 0;
}
.topMain .overlay img {
  margin-bottom: 10px;
}
.topMain .overlay small {
  font-size: 12px;
  letter-spacing: 4px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 10px;
  display: block;
}

.topMain.other {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 1;
}
.topMain.other .overlay {
  width: 50%;
}
.topMain.other img {
  width: 100%;
}
.topMain.other .overlay span img {
  max-width: 640px;
}
.topMain.other span:first-of-type {
  font-size: 26px;
  display: block;
}

.topBrand {
  display: block;
  margin: 0 calc(50% - 50vw);
  padding: 40px 0;
  text-align: center;
}

.topBrand video {
  width: 100%;
  /* max-width: 560px; */
}

.topPickup h3 {
  color: #aaa;
  font-size: 24px;
  margin: 0 auto 20px;
  color: #666;
}

.topPickup h3 small {
  display: block;
  font-size: 12px;
  letter-spacing: 1px;
}

.topPickupBox {
  max-width: 100%;
  margin: 0 auto 50px;
  overflow: hidden;
}

.topPickupList {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
  scrollbar-width: thin;
  white-space: nowrap;
  margin: 0 auto 40px;
  counter-reset: item-rank;
}

.topPickupList a {
  flex: 0 0 40%;
  max-width: 320px;
  text-align: left;
  scroll-snap-align: start;
  position: relative;
}
.topPickupList a::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  background-color: #000;
  color: #fff;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: bold;
  counter-increment: item-rank;
  content: counter(item-rank);
}

.topPickupList a:first-child::before {
  background-color: #ffd700;
  color: #000;
}

.topPickupList img {
  width: 100%;
  height: auto;
  margin-bottom: 4px;
}

.topPage .topPickupList span,
.topPage #brandList span {
  display: block;
  font-size: 12px;
  margin-bottom: 4px;
}
.topPage span.brand {
  font-weight: bold;
}
.topPage span.category {
  color: #666;
}
.topPage span.price {
  font-weight: bold;
  color: #c00;
}
.topPage .topPickupList span.price,
.topPage #brandList span.price {
  font-size: 14px;
}

a.viewMore {
  display: block;
  color: #fff;
  transition: 0.3s;
  padding: 12px 0;
  background: #000;
  width: 80%;
  max-width: 400px;
  margin: 0 auto;
}

a.viewMore:hover {
  opacity: 0.5;
}

.topCategory {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto 50px;
}
.topCategory a {
  display: flex;
  justify-content: center;
  align-items: center;
  /* width: 100%; */
  width: 49%;
  color: #333;
  border-bottom: 1px solid #333;
  padding: 20px 0;
  position: relative;
  font-size: 12px;
}
.topCategory a:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 8px;
  border-color: transparent transparent transparent #333;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.topCategory a.extra {
  max-width: 49%;
  position: relative;
  border-bottom: none;
  padding: 0;
}
.topCategory a.extra .overlay {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}

.topCategory a.extra .overlay span {
  font-size: 11px;
  letter-spacing: 4px;
  font-weight: 700;
  color: #fff;
}

.topCategory a.extra:before {
  content: none;
}

.topFeatures a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80px;
  margin-bottom: 5px;
  /* background: #aaa; */
  background: #666;
  color: #fff;
}

#brandTabWrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 20px auto 10px;
}

#brandTabWrap .brandTab {
  font-size: 12px;
  margin: 0 4px 8px 0;
  padding: 6px 10px;
  line-height: 1;
  border: 1px solid #aaa;
  border-radius: 12px;
  cursor: pointer;
}

#brandTabWrap .brandTab.active {
  background: #000;
  color: #fff;
}

#brandTabWrap .brandTab[data-brand="BLACK SNOW"]::after,
#brandTabWrap .brandTab[data-brand="BLACK SNOW"]::after {
  font-size: 11px;
  margin-left: 5px;
}

#brandTabWrap .brandTab[data-brand="BLACK SNOW"]::after {
  content: " for men";
}

#brandTabWrap .brandTab[data-brand="BOARDEE"]::after {
  content: " for women";
}

#brandList {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

#brandList a {
  width: calc((100% - 20px) / 2);
  text-align: left;
}

#brandSeachWrap {
  margin-bottom: 50px;
}

#brandSeachWrap a {
  display: block;
  color: #fff;
  transition: 0.3s;
  padding: 12px 0;
  background: #000;
  width: 80%;
  max-width: 400px;
  margin: 0 auto 10px;
}

/* swiper
-------------------- */
.swiper-wrap {
  width: 100%;
  margin: 0 auto 20px;
  position: relative;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.swiper-wrap .swiper-button-next:after,
.swiper-wrap .swiper-button-prev:after {
  font-size: 24px;
  color: #000;
}

.swiper-wrap .swiper-pagination-bullet {
  background: #333;
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
}
.swiper-wrap .swiper-pagination-bullet-active {
  background: #000;
}
.swiper-wrap .swiper-button-next,
.swiper-wrap .swiper-button-prev {
  top: 50%;
}
.swiper-wrap .swiper-button-next {
  right: -32px;
}
.swiper-wrap .swiper-button-prev {
  left: -32px;
}

.swiper-wrap .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: -24px;
}

.swiper-wrap.swiperTop .swiper-button-next,
.swiper-wrap.swiperTop .swiper-button-prev {
  display: none;
}

/* パネルメニュー
-------------------- */
footer .menu {
  display: none;
}

header .menu {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #333;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1001;
}

.menuItem {
  color: #aaa;
  text-decoration: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: filter 0.3s ease;
  padding: 10px 0;
  font-size: 12px;
}

.menuItem .icon {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(0.5);
  transition: filter 0.3s ease;
}

.menuItem.active,
.menuItem:hover {
  filter: brightness(0) invert(1);
}

.menuItem img {
  height: 60px;
}

.menuPanel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fbfbfb;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  padding: 50px 4% 0;
  z-index: 1000;
}
.menuPanel.is-visible {
  opacity: 1;
  visibility: visible;
}

/* .menuPanel.show {
  opacity: 1;
} */

/* パネルメニュー カテゴリー
-------------------- */
.categoryBrand {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto 20px;
}
.categoryBrand a {
  width: 49%;
  margin-bottom: 10px;
}
.categoryBrand a img {
  border: 1px solid #f1f1f1;
}
.categoryBrand a:last-of-type {
  width: 100%;
}
#categoryArea .ttl {
  color: #ccc;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}
.categoryList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.categoryList a {
  width: 49%;
  display: block;
  margin-bottom: 20px;
}
.searchBoxInner {
  margin: 0 auto 40px;
}
.searchBoxInnerL {
  margin-bottom: 10px;
}

/* パネルメニュー 検索フォーム
-------------------- */

.searchBox input[type="text"] {
  padding: 4px 8px;
}

.closeBtn {
  display: block;
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  color: #333;
  background: transparent;
  border: none;
  cursor: pointer;
}

.closeBtn:hover {
  color: #ff6347;
}

.searchKeyword {
  display: flex;
  justify-content: center;
  border: 1px solid #ccc;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 10px;
}
.searchKeyword input {
  border: none;
}
.searchKeyword button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 40px;
  border: none;
  cursor: pointer;
  background: #f1f1f1;
}
.searchKeyword button::after {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url("https://bbrands.itembox.design/item/images/ic_search.svg");
  background-repeat: no-repeat;
  background-position: 0 3px;
}

.searchKeywordSuggest {
  display: flex;
  flex-wrap: wrap;
}
.searchKeywordSuggest a {
  display: block;
  font-size: 12px;
  margin: 0 4px 8px 0;
  padding: 6px 10px;
  line-height: 1;
  border: 1px solid #aaa;
  border-radius: 12px;
}
.searchKeywordSuggest a:before {
  content: "#";
}

.searchOption,
.searchTag {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: bold;
  padding: 8px 10px;
  margin-bottom: 10px;
}
.searchTag {
  margin-bottom: 0;
}
.searchTag span {
  font-weight: 700;
  white-space: nowrap;
}

.searchTag select {
  -webkit-appearance: none;
  appearance: none;
  border: none;
  min-height: auto;
  background: initial;
  cursor: pointer;
  width: 100%;
  padding: 4px;
  color: #000;
}

.searchTag .selectBox {
  width: 64%;
  position: relative;
  margin-left: auto;
  padding: 0 10px;
  border-bottom: 1px solid #ccc;
}

.searchTag .selectBox::after {
  content: "";
  position: absolute;
  top: 2px;
  right: 10px;
  width: 12px;
  height: 12px;
  border-right: 2px solid #ccc;
  border-bottom: 2px solid #ccc;
  transform: rotate(45deg);
}

.searchOption label {
  margin-right: 20px;
}
.searchOption label input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  position: relative;
  cursor: pointer;
  width: 20px;
  height: 20px;
  margin-top: -1px;
  margin-left: 10px;
  border-radius: 6px;
  border: 2px solid #ccc;
  vertical-align: middle;
}

.searchOption label input[type="checkbox"]:checked {
  background: #000;
  border: none;
}

.searchOption label input[type="checkbox"]:checked:before {
  position: absolute;
  content: "";
  top: 4px;
  left: 7px;
  transform: rotate(50deg);
  width: 6px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

.searchBtn {
  display: flex;
  flex-direction: column;
}

.clearBtn,
.submitBtn {
  display: block;
  width: 100%;
  margin: 0 auto 20px;
  padding: 10px 0;
  text-align: center;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
  background: #000;
  border: 1px solid #000;
  border-radius: 10px;
  cursor: pointer;
  transition: opacity 0.5s ease;
}
.clearBtn {
  color: #333;
  background: #ccc;
  border: 1px solid #ccc;
}

/* パネルメニュー アカウント
-------------------- */
.accountMenu .ttl,
.accountMenu .login .ttlTokuten {
  margin: 0 auto 10px;
  text-align: center;
  font-weight: 600;
  color: #777;
}

.accountMenu .logout ul li a {
  display: block;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 0;
  margin-bottom: 10px;
}

.accountMenu .login .ttlTokuten {
  font-family: initial;
}

.accountMenu .login .accountBtn {
  display: block;
  align-items: center;
  margin-bottom: 20px;
}

.accountMenu .login .accountBtn a {
  display: block;
  max-width: 100%;
  padding: 10px 0;
  margin-bottom: 20px;
  text-align: center;
  border: 1px solid #000;
  border-radius: 12px;
  font-weight: 700;
}

.accountMenu .login .accountBtn a:last-of-type {
  background: #000;
  color: #fff;
}

.accountMenu .login ul li {
  position: relative;
  padding-left: 30px;
  border-bottom: 1px solid #f1f1f1;
  margin-bottom: 20px;
}

.accountMenu .login ul li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 2px;
  display: inline-block;
  background: #59d060;
  box-sizing: border-box;
}

.accountMenu .login ul li::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 7px;
  width: 3px;
  height: 7px;
  border: solid #fff;
  border-width: 0 1px 2px 0;
  transform: rotate(45deg);
}

.accountMenu .login ul li span {
  background: linear-gradient(transparent 60%, #f9f27a 60%);
}

/* 商品一覧
-------------------- */
#categoryHero {
  max-width: 1000px;
  margin: 0 auto;
}

#categoryHero h1 {
  display: block;
  position: relative;
  margin-bottom: 20px;
}

#categoryHero h1 img {
  width: 100%;
}

#categoryHero .categoryName .eigo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 20px;
  text-align: center;
  line-height: 1.4;
}
#categoryHero .categoryName .eigo small {
  display: block;
  font-size: 11px;
  letter-spacing: 1px;
}

#categoryHero .categoryName .kana {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  padding: 4px 0;
  text-align: center;
  color: #fff;
  font-size: 12px;
  font-weight: 300;
}

#categoryHero .categoryPick {
  display: block;
  max-width: 96%;
  margin: 0 auto 4px;
}

#categoryHero .categoryPick h2 {
  display: block;
  font-size: 14px;
  font-weight: normal;
  color: #777;
}

#categoryHero .categoryPick .linkList {
  white-space: nowrap;
  overflow: auto;
  padding: 0 0 8px;
}

#categoryHero .categoryPick .linkList a {
  display: inline-block;
  margin-right: 4px;
  font-size: 12px;
  color: #333;
  border: 1px solid #aaa;
  padding: 6px 10px;
  border-radius: 12px;
  text-decoration: none;
  line-height: 1;
}
#categoryHero .categoryPick .linkList a.active {
  background: #000;
  color: #fff;
}

.fs-c-productMark__label a {
  color: #fff;
}
.fs-c-productListItem__control .fs-c-button__label {
  display: none;
}
.fs-c-productList__list__item {
  margin-bottom: 32px;
}

.fs-c-productList__list form {
  position: relative;
  min-height: 232px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fs-c-productListItem__prices.fs-c-productPrices {
  margin-top: auto;
}

span.pdBrand {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-weight: bold;
}
a.pdBrand {
  display: block;
  color: #aaa;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 8px;
}

.fs-c-productNameHeading__copy,
.fs-c-productName__copy,
.fs-c-wishlistProduct .fs-c-productMarks,
.fs-c-productList__list .fs-c-productMarks {
  display: none;
}

.fs-c-productList .pdImgBox {
  position: relative;
}

.fs-c-productListItem__lowInStock.fs-c-productListItem__notice.fs-c-productStock,
.fs-c-productListItem__salesPeriodNotice.fs-c-productListItem__notice,
.fs-c-productList .pdImgBox .fs-c-productListItem__outOfStock {
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 4px 0;
  text-align: center;
  font-size: 12px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.fs-c-productList__list__item.fs-c-productListItem .fs-c-productPrice.fs-c-productPrice--listed .fs-c-productPrice__main {
  display: none;
}

.fs-c-productListItem__lowInStock.fs-c-productListItem__notice.fs-c-productStock {
  background-color: rgba(204, 0, 0, 1);
  z-index: 10;
}

#categoryTempHero {
  width: 100%;
  margin: 0 auto 10px;
  min-height: 20vh;
  text-align: center;
  background: #000;
  color: #fff;
  display: grid;
  grid-template-rows: 10vh auto auto 1fr;
  padding-bottom: 40px;
}
#categoryTempHero h1 {
  grid-row: 2;
}
#categoryTempHero small {
  grid-row: 3;
  font-size: 12px;
  margin-bottom: 40px;
}
#categoryTempHero a {
  grid-row: 4;
  width: 120px;
  margin: 0 auto 20px;
  border: 1px solid #fff;
  border-radius: 12px;
  line-height: 1;
  padding: 4px 0;
  color: #fff;
  font-size: 12px;
}

/* 販売期間
-------------------- */
.fs-c-productListItem__salesPeriodNotice.fs-c-productListItem__notice {
  background-color: rgba(0, 0, 100, 0.8);
}
.fs-c-productListItem__salesPeriod.fs-c-salesPeriod {
  display: none;
}

.fs-c-productSalesPeriod:nth-of-type(2) {
  font-weight: bold;
  padding: 10px;
  font-size: 14px;
  background: #cbf4f3;
}

.fs-c-productSalesPeriod:nth-of-type(3) {
  display: flex;
  align-items: center;
  border-bottom: 2px dotted #aaa;
  padding: 0 0 4px 1em;
  margin-bottom: 4px;
}

span.fs-c-productSalesPeriod__label.fs-c-string.fs-c-string--label {
  display: none;
}
span.fs-c-productSalesPeriod__date::before {
  content: "販売開始";
  display: inline-block;
}

/* 商品詳細
-------------------- */
.pdAreaTop {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 0 auto 50px;
  border-bottom: 1px solid #f1f1f1;
}
.pdAreaTop .pdBox01 {
  max-width: 100%;
  margin-bottom: 10px;
}
.pdAreaTop .pdBox02 {
  max-width: 100%;
  flex: 1;
  min-width: 0;
}
.pdAreaTop h1 {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 12px;
}

.fs-c-productCarouselMainImage__carousel {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.fs-c-slick .slick-slide img {
  display: block;
  width: 440px;
  height: 440px;
  object-fit: contain;
  padding: 0;
}

.fs-c-slick .slick-prev,
.fs-c-slick .slick-next {
  background: none;
}
.fs-c-slick .slick-prev:before,
.fs-c-slick .slick-next:before {
  color: #b1b1b1;
}
.fs-c-slick .slick-prev {
  left: -40px;
  left: 0;
}
.fs-c-slick .slick-next {
  right: -40px;
  right: 0;
}

.fs-c-productPrice--listed {
  text-decoration: line-through !important;
}
.fs-c-productPrice,
.fs-c-productPrice__main {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
}
.fs-c-productPrices--productDetail .fs-c-productPrice:not(.fs-c-productPrice--listed) .fs-c-productPrice__main__price {
  font-size: 24px;
}
.fs-c-productPrice__addon:where(:not([class*="--listed"])),
.fs-c-productPrice__main__addon:where(:not([class*="--listed"])) {
  display: flex;
  flex-wrap: wrap;
  line-height: 1.1;
}
.fs-c-productPrice__addon:where(:not([class*="--listed"]))::before,
.fs-c-productPrice__main__addon:where(:not([class*="--listed"]))::before {
  content: "(";
}
.fs-c-productPrice__addon:where(:not([class*="--listed"]))::after,
.fs-c-productPrice__main__addon:where(:not([class*="--listed"]))::after {
  content: ")";
}

.fs-c-button--plain {
  background: transparent;
  border: 1px solid transparent;
  border-radius: 0px;
  color: #1e5d9b;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  padding: 0;
  font-size: 12px;
}
.fs-c-button--plain:hover {
  color: inherit;
  opacity: 0.8;
  text-decoration: underline;
}

.fs-c-button--plain::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;
}
.fs-c-button--plain.fs-c-button--addReview--detail::before {
  content: "\e928";
}
.fs-c-button--plain.fs-c-button--viewAllReviews::before {
  content: "\e927";
}
.fs-c-button--plain.fs-c-button--addToCart--list::before {
  content: "\e91f";
}
.fs-c-button--plain.fs-c-button--addToCart--list {
  display: none;
}
.fs-c-button--plain.fs-c-button--subscribeToArrivalNotice--list::before {
  content: "\e920";
}
.fs-c-button--plain.fs-c-button--viewProductDetail::before {
  content: "\e92b";
}
.fs-c-button--plain.fs-c-button--viewMoreImage .fs-c-button__label {
  display: none;
}
.fs-c-button--plain.fs-c-button--viewMoreImage::before {
  content: "\e912";
}
.fs-c-button--plain.fs-c-button--viewExtendedImage .fs-c-button__label {
  display: none;
}
.fs-c-button--plain.fs-c-button--viewExtendedImage::before {
  content: "\e912";
  font-size: 2.2rem;
}
.fs-c-button--plain.fs-c-button--changeLocation {
  font-size: inherit;
  min-height: initial;
  min-width: initial;
}
.fs-c-productChooseVariation {
  margin-bottom: 10px;
}
.fs-c-variationLabel__label + .fs-c-variationLabel__value::before {
  content: " : ";
}
.fs-c-variationPanelList__list {
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(9.6em, 1fr));
}
.fs-c-variationPanelList__list > li {
  box-sizing: border-box;
}
.fs-c-variationPanelList__radio {
  display: none;
}
.fs-c-variationPanelList__panel {
  border: 1px solid #ccc;
  border-radius: 0px;
  display: grid;
  grid-template-rows: 1fr auto;
  flex-grow: 1;
  height: 100%;
  overflow: hidden;
}
.fs-c-variationPanelList__panel__content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-height: 56px;
  padding: 6px 10px;
  width: 100%;
}
.fs-c-variationPanelList__radio:checked + .fs-c-variationPanelList__panel .fs-c-variationPanelList__panel__content {
  background: #f0f0f0;
}
.fs-c-variationPanelList__panel__label {
  font-weight: bold;
  font-size: 12px;
}
.fs-c-variationPanelList__panel__caption,
.fs-c-variationPanelList__panel__stock {
  font-size: 10px;
  margin-top: auto;
  color: #c00;
}

.fs-c-productQuantityAndWishlist .fs-c-quantity {
  display: none;
}

.fs-c-variationPanelList__panel--outOfStock {
  background: #fafafa;
}
.fs-c-variationPanelList__panel__stock--lowInStock:before {
  content: "▲";
}
.fs-c-variationPanelList__panel__stock--outOfStock:before {
  content: "✕";
}
.fs-c-variationPanelList__panel--outOfStock .fs-c-variationPanelList__panel__label {
  color: #aaa;
}

.fs-c-productChooseVariation .fs-c-productChooseVariation__variation,
.fs-c-variationPanelList__label.fs-c-variationLabel {
  margin-bottom: 8px;
}

.fs-c-productPointDisplay,
.fs-c-productPrice.fs-c-productPrice--selling,
.fs-c-productChooseVariation .fs-c-variationLabel__value {
  color: #c00;
  font-weight: bold;
}
.fs-c-productPointDisplay,
.fs-c-productPrice.fs-c-productPrice--selling .fs-c-productPrice__addon {
  font-weight: normal;
}

.fs-c-productChooseVariation .fs-c-variationLabel__label + .fs-c-variationLabel__value::before {
  color: #000;
  font-weight: normal;
}

.fs-c-productSelection .fs-c-productSelection__name,
.pdSelectTitle {
  font-weight: bold;
  padding: 10px;
  margin-bottom: 8px;
  font-size: 14px;
  background: #f1f1f1;
}

.fs-c-productCarouselMainImage__expandButton.fs-c-buttonContainer,
.fs-c-productListItem__viewMoreImageButton.fs-c-buttonContainer {
  display: none;
}

.fs-c-dropdown__menu,
.fs-c-productCarouselMainImage__thumbnailList li {
  cursor: pointer;
}

.fs-c-productPointDisplay,
.fs-c-productSelection,
.fs-c-productPostage {
  margin-bottom: 12px;
}

.fs-c-productNumber {
  font-size: 11px;
  color: #aaa;
  margin-bottom: 4px;
}
.fs-c-returnedSpecialContract .fs-c-returnedSpecialContract__link {
  text-align: right;
  margin-bottom: 8px;
}
.fs-c-returnedSpecialContract .fs-c-returnedSpecialContract__link a {
  color: #aaa;
}

.pdBox02 h2 {
  font-size: 16px;
}

.fs-c-productNotice.fs-c-productNotice--outOfStock {
  text-align: center;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 4px 0;
  margin-bottom: 4px;
}

.fs-c-variationList__item {
  margin-bottom: 10px;
}
.fs-c-variationAndActions__variationLabel.fs-c-variationLabel {
  display: none;
}
.fs-c-variationList__item__title {
  font-weight: 600;
  border-bottom: 1px solid #d3d3d3;
  padding: 0 10px 4px;
  margin-bottom: 15px;
}
.fs-c-variationList__item .fs-c-variationCart li {
  display: flex;
  align-items: center;
}
.fs-c-button--addToWishList--icon.fs-c-button--particular .fs-c-button__label,
.fs-c-button--removeFromWishList--icon.fs-c-button--particular .fs-c-button__label {
  display: none;
}

.fs-c-variationCart__variationName .fs-c-variationCart__variationName__name {
  font-weight: bold;
}
.fs-c-variationCart__cartButton {
  min-width: 160px;
  margin-left: 10px;
}
.fs-c-variationAndActions .fs-c-button--primary {
  border-radius: 0px;
  line-height: 1;
}

.fs-c-variationList__item__image > img {
  max-width: 72px;
}

/* 商品詳細 / 返品交換について アコーディオン
-------------------- */
.pdAccordion {
  cursor: pointer;
  padding: 0;
  margin: 0 auto 10px;
}

.pdAccordion .pdAccordionTitle {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  position: relative;
  padding: 10px 10px 10px 0;
  border-bottom: 2px solid #f5f5f5;
}

.pdAccordion .pdAccordionTitle::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  border: solid #aaa;
  border-width: 0 2px 2px 0;
  padding: 5px;
  transform-origin: center;
  transition: transform 0.3s ease;
  transform: translateY(-50%) rotate(45deg);
}

.pdAccordion.active .pdAccordionTitle::after {
  transform: translateY(-50%) rotate(-135deg);
}

.pdAccordion .pdAccordionBox {
  display: none;
  padding: 10px;
  overflow-wrap: break-word;
  word-break: break-word;
}

.pdAccordion.active .pdAccordionBox {
  display: block;
}

.pdAccordion a {
  text-decoration: underline;
}

.pdAccordion a:hover {
  text-decoration: none;
}

.pdAccordion .pdAccordionBox a.return {
  display: block;
  color: #aaa;
  text-align: right;
  margin-top: 10px;
}

/* 2カラムレイアウト
-------------------- */
.layout2col {
  display: flex;
  flex-direction: column-reverse;
  gap: 30px;
}
.layout2col .ttl {
  display: block;
  text-align: left;
  font-weight: 700;
  font-size: 18px;
  padding: 0;
  margin: 0 0 10px;
  color: #aaa;
}
.layout2Main {
  flex: 1;
}

.layout2colSide {
  max-width: 640px;
  margin: 0 auto 50px;
}

.layout2colSide .linkList a {
  display: block;
  margin-bottom: 5px;
}
.layout2colSide .linkList a.linkBnr {
  text-align: center;
}
.layout2colSide .linkList a img {
  border: 1px solid #f1f1f1;
}
.layout2colSide .linkList a.linkTxt {
  text-align: center;
  padding: 30px 0;
  background: #f1f1f1;
  font-size: 16px;
  font-weight: bold;
}
.layout2colSide .linkList ul {
  background: #fff;
  padding: 0;
  list-style: none;
  margin: 10px auto 40px;
}
.layout2colSide .linkList ul li a {
  display: block;
  font-size: 13px;
  padding: 12px;
  text-decoration: none;
  color: #333;
  background: #f1f1f1;
  position: relative;
}
.layout2colSide .linkList ul li.parent a {
  background: #000;
  color: #fff;
  font-weight: bold;
}
.layout2colSide .linkList ul li a::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 6px;
  border-color: transparent transparent transparent #000;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
.layout2colSide .linkList ul li.parent a::after {
  border-color: transparent transparent transparent #fff;
}

.layout2Main .fs-c-productPlainImage {
  margin-bottom: 8px;
}

.sideNav {
  display: block;
  padding: 20px 20px;
  background: #eee;
  margin: 0 auto 10px;
}
.sideNav .ttl {
  font-family: "Courier New", Courier, monospace;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: #777;
  padding: 0;
  margin-bottom: 10px;
}
.sideNav .user {
  color: #333;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
}

.sideNav .desc {
  margin-bottom: 10px;
}
.sideNav .point {
  background: #fff;
  padding: 4px 4%;
  border-radius: 40px;
  margin: 0 auto 10px;
  font-size: 11px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sideNav .point span {
  font-weight: 700;
  font-size: 16px;
  padding: 0 4px;
}
/* .sideNav .circle {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #005;
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
  width: 24px;
  height: 24px;
  margin-right: 10px;
} */

.sideNav a {
  display: block;
  text-align: center;
  border-radius: 40px;
  padding: 10px 0;
  font-weight: 700;
  color: #fff;
  transition: 0.3s;
  margin-bottom: 10px;
}
.sideNav a.register {
  background: #a50;
  border: 2px solid #a50;
}
.sideNav a.my,
.sideNav a.login {
  background: #000;
  border: 2px solid #000;
}
.sideNav a.wishlist {
  background: #fff;
  border: 2px solid #000;
  color: #000;
}

/* 検索結果一覧ページ
-------------------- */
.fs-c-productList__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0 3%;
  margin-bottom: 20px;
}
.fs-c-productList__controller,
.fs-c-sortItems,
.fs-c-sortItems__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fs-c-productList__controller {
  flex-direction: row-reverse;
  position: relative;
  margin-bottom: 20px;
}

.fs-c-productList .fs-c-productList__controller:first-of-type {
  margin: 10px 0 20px;
}
.fs-c-productList .fs-c-productList__controller:last-of-type {
  margin-bottom: 40px;
}

.fs-c-productList .fs-c-productList__controller:first-of-type .fs-c-pagination {
  display: none;
}
.fs-c-productList .fs-c-productList__controller:last-of-type .fs-c-pagination {
  width: auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.fs-c-sortItems__label {
  cursor: pointer;
  width: 108px;
  padding: 0 20px 0 0;
  text-align: right;
}

.fs-c-sortItems__label::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 0.64952em 0.375em;
  border-top-color: currentColor;
  border-bottom: 0;
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
}

.fs-c-sortItems {
  position: relative;
}

.fs-c-sortItems__list {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: white;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 100;
  width: 100%;
}

.fs-c-sortItems__list__item {
  padding: 0;
  cursor: pointer;
}

.fs-c-sortItems__list__item__label {
  display: block;
  width: 100%;
  padding: 10px;
  text-decoration: none;
}

.fs-c-sortItems__list__item:hover {
  background-color: #f0f0f0;
}

.fs-c-sortItems__list.show {
  display: block;
  background: #aaa;
}

/* .fs-c-productListItem__productName.fs-c-productName, */
.fs-c-productListItem__productName {
  font-size: 12px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-weight: 400;
}

#searchStatus {
  margin: 10px auto 20px;
}
#searchStatus .status {
  display: block;
  margin-bottom: 10px;
}
#searchStatus .searchBoxInner {
  margin: 0 auto 20px;
}
#searchStatus .searchTag {
  margin-bottom: 0;
}

/* ログイン
-------------------- */
.fs-c-inputGroup,
.fs-c-inputGroup--inline,
.fs-c-inputGroup--vertical {
  border: 1px solid #ccc;
  border-radius: 3px;
  background: #ffffff;
  display: flex;
  align-items: stretch;
  min-height: 1.8em;
  position: relative;
}
.fs-c-button--particular.fs-c-button--addToWishList--icon,
.fs-c-button--particular.fs-c-button--removeFromWishList--icon,
.fs-c-button--particular.fs-c-button--displayPassword,
.fs-c-button--particular.fs-c-button--hidePassword {
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
  line-height: 1;
}

.fs-c-button--particular.fs-c-button--addToWishList--icon::before,
.fs-c-button--particular.fs-c-button--removeFromWishList--icon::before,
.fs-c-button--particular.fs-c-button--displayPassword::before,
.fs-c-button--particular.fs-c-button--hidePassword::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;
  font-size: 2.2rem;
}
.fs-c-button--particular.fs-c-button--addToWishList--icon::before {
  content: "\e919";
}
.fs-c-button--particular.fs-c-button--removeFromWishList--icon::before {
  content: "\e91a";
  color: #c98696;
}
.fs-c-button--particular.fs-c-button--displayPassword::before,
.fs-c-button--particular.fs-c-button--hidePassword::before {
  color: #aaa;
  margin: auto 4px;
}
.fs-c-button--particular.fs-c-button--displayPassword::before {
  content: "\e917";
}
.fs-c-button--particular.fs-c-button--hidePassword::before {
  content: "\e918";
}

h2.fs-c-linkedServiceLogin__title,
h2.fs-c-subSection__title {
  display: block;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid #000;
  padding: 0 0 5px;
  margin-bottom: 20px;
}

.fs-c-fsLogin.fs-c-inputInformation {
  margin-bottom: 50px;
}

.fs-c-buttonContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.fs-c-button--secondary,
.fs-c-button--standard,
.fs-c-button--primary {
  display: block;
  margin: 0 auto;
  padding: 12px;
  line-height: 1;
  text-align: center;
  font-size: 14px;
  color: #fff;
  background: #000;
  border: 1px solid #000;
  border-radius: 12px;
  cursor: pointer;
  width: 100%;
}
.fs-c-button--standard {
  background: #fff;
  color: #000;
}
.fs-c-button--setDestination {
  background: #000;
  color: #fff;
}

.fs-c-inputInformation__link {
  margin-top: 10px;
  margin: 10px 10px 0 0;
  text-align: right;
}

.fs-c-inputInformation__link a {
  text-decoration: underline;
}

.fs-c-inputInformation__link a:hover {
  text-decoration: none;
}
.fs-c-newUsers__message.fs-c-subSection__message {
  margin-bottom: 40px;
}

.fs-c-otherServiceLogin {
  margin-bottom: 40px;
}

.fs-c-anotherLogin {
  margin-bottom: 10px;
}

.fs-c-anotherLogin .fs-c-anotherLogin__button {
  max-width: 290px;
}

.fs-c-anotherLogin.fs-c-anotherLogin--line {
  margin-top: 20px;
}
.fs-c-anotherLogin.fs-c-anotherLogin--line p {
  margin-bottom: 10px;
}

/* フッター
-------------------- */
.footerInfo {
  background: #eee;
  padding: 40px 20px;
}
.footerInfo .ttl {
  font-weight: 700;
  font-size: 18px;
  max-width: 1000px;
  margin: 0 auto 20px;
}
.footerInfoWrap {
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto 50px;
  gap: 20px;
}
.footerInfoBox {
  flex: 1 1 100%;
  background: #fff;
  padding: 15px;
  border: 1px solid #ddd;
}
.footerInfoBox h3 {
  font-size: 16px;
  margin: 0 0 10px;
  padding-bottom: 5px;
  border-bottom: 2px solid #000;
}
.footerInfoBox a {
  text-decoration: underline;
}
.footerInfoBox a:hover {
  text-decoration: none;
}

.footerLink {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1000px;
  margin: 0 auto 12px;
}
.footerLink a {
  flex: 1 1 100%;
  background: #333;
  padding: 10px;
  text-align: center;
  border: 1px solid #ddd;
  color: #fff;
}
.footer {
  background: #000;
  text-align: center;
  padding: 20px 0;
  margin-bottom: 64px;
  color: #fff;
}
.footer span {
  font-family: "Courier New", Courier, monospace;
}

/* 会員登録
-------------------- */
.fs-c-inputTable {
  width: 100%;
  border-collapse: collapse;
}

.fs-c-inputTable tr {
  display: block;
  margin-bottom: 10px;
}

.fs-c-inputTable__headerCell {
  text-align: left;
  padding: 10px;
  font-weight: bold;
  display: block;
}

.fs-c-inputTable__dataCell {
  padding: 10px;
  display: block;
}
.fs-c-checkbox__labelText a {
  text-decoration: underline;
}
.fs-c-checkbox__labelText a:hover {
  text-decoration: none;
}
.fs-c-memberPolicyAgreeField.fs-c-additionalCheckField {
  margin-bottom: 8px;
}

/* マイページ
-------------------- */
.fs-c-productListCarousel {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}
.fs-c-productListCarousel__ctrl {
  display: block;
  flex-basis: 32px;
  min-width: 32px;
  position: relative;
}
.fs-c-productListCarousel__list__item {
  flex-basis: 140px;
  max-width: 140px;
  min-width: 140px;
  margin: 0 10px;
  position: relative;
}

.memberInfo {
  text-align: center;
  margin-bottom: 40px;
}

.memberInfo .name {
  font-size: 16px;
}

.memberInfo .name span {
  font-size: 22px;
}

.memberInfo .point {
  font-size: 12px;
  margin-bottom: 10px;
}

.memberInfo .point span {
  font-size: 28px;
  font-weight: 700;
}

.memberInfo .pointExpiration {
  display: block;
  margin: 0 auto 10px;
  width: 72%;
  max-width: 400px;
  background: #eee;
  padding: 4px;
  border-radius: 12px;
}

.memberInfo a {
  display: block;
  color: #aaa;
}

.mypageList {
  width: 100vw;
  margin: 0 calc(50% - 50vw) 40px;
}

.mypageList h2 {
  display: block;
  font-size: 14px;
  background-color: #f1f1f1;
  padding: 4px 16px;
  margin: 0 auto 10px;
}

.mypageList ul li a {
  display: block;
  font-size: 14px;
  padding: 10px 16px;
  margin: 0 auto 10px;
  border-bottom: 1px solid #f1f1f1;
}

.fs-c-button--changeInfomation.fs-c-button--secondary,
.fs-c-button--myPageTop.fs-c-button--plain {
  display: block;
  background: #fff;
  border: 1px solid #000;
  padding: 10px 0;
  width: 100%;
  text-align: center;
  color: #000;
  border-radius: 12px;
}
.fs-c-button--changeInfomation.fs-c-button--secondary {
  background: #000;
  color: #fff;
}
.fs-c-buttonContainer.fs-c-buttonContainer--myPageTop {
  margin: 40px auto 0;
}

.fs-c-wishlistProduct h2 {
  font-size: 12px;
  margin-bottom: 8px;
}

/* ポイント履歴
-------------------- */
.fs-body-my-points .fs-c-history__info {
  margin: 0 auto 40px;
}

.fs-c-pointSummary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  padding: 10px;
  margin: 0;
}
.fs-c-pointSummary > dd {
  margin-left: 0;
  text-align: right;
}
.fs-c-pointSummary [class$="--availablePoint"] {
  padding: 16px 10px 10px;
  background: rgba(126, 126, 126, 0.08);
}
.fs-c-pointSummary__label--availablePoint {
  grid-column: 1;
  grid-row: 1;
}
.fs-c-pointSummary__value--availablePoint {
  grid-column: 2/4;
  grid-row: 1;
  padding-bottom: 10px;
}
.fs-c-pointSummary__value--availablePoint .fs-c-pointSummary__number {
  color: #c00;
  font-size: 24px;
}
.fs-c-pointSummary [class$="--limitedPoint"] {
  background: rgba(126, 126, 126, 0.08);
  padding-bottom: 16px;
  margin-bottom: 16px;
}
.fs-c-pointSummary__label--limitedPoint {
  grid-column: 1/3;
  grid-row: 2;
  text-align: right;
}
.fs-c-pointSummary__label--limitedPoint::before {
  content: "（";
}
.fs-c-pointSummary__label--limitedPoint::after {
  content: "：";
}
.fs-c-pointSummary__value--limitedPoint {
  grid-column: 3;
  grid-row: 2;
}
.fs-c-pointSummary__value--limitedPoint::after {
  content: "）";
}
.fs-c-pointSummary__label--purchasePointExpiration,
.fs-c-pointSummary__label--waitingPoint,
.fs-c-pointSummary__label--purchasePointTotal {
  grid-column: 1;
}
.fs-c-pointSummary__value--purchasePointExpiration,
.fs-c-pointSummary__value--waitingPoint,
.fs-c-pointSummary__value--purchasePointTotal {
  grid-column: 2/4;
}
.fs-c-pointSummary [class$="--purchasePointExpiration"] {
  grid-row: 3;
}
.fs-c-pointSummary [class$="--waitingPoint"] {
  grid-row: 4;
}
.fs-c-pointSummary [class$="--purchasePointTotal"] {
  grid-row: 5;
}
.fs-c-postage__list {
  display: grid;
  grid-template-rows: auto auto;
  grid-auto-flow: dense;
  grid-auto-rows: auto auto;
  grid-column-gap: 4px;
}
.fs-c-postage__list > dt,
.fs-c-postage__list > dd {
  margin: 0;
  padding: 4px;
  border: 1px solid #f1f1f1;
}
.fs-c-postage__list > dt.case-undeliverable,
.fs-c-postage__list > dd.case-undeliverable {
  background-color: #f7f7f7;
  color: #f1f1f1;
}
.fs-c-postage__list > dt {
  background: rgba(126, 126, 126, 0.08);
}
.fs-c-postage__list > dd {
  border-top: none;
  margin-bottom: 10px;
}
.fs-c-postage__list--prefecture > dt:nth-of-type(3n + 1),
.fs-c-postage__list--prefecture > dd:nth-of-type(3n + 1) {
  grid-column: 1;
}
.fs-c-postage__list--prefecture > dt:nth-of-type(3n + 2),
.fs-c-postage__list--prefecture > dd:nth-of-type(3n + 2) {
  grid-column: 2;
}
.fs-c-postage__list--prefecture > dt:nth-of-type(3n + 3),
.fs-c-postage__list--prefecture > dd:nth-of-type(3n + 3) {
  grid-column: 3;
}

.fs-c-listTable {
  border-collapse: collapse;
  width: 100%;
  margin: 10px 0;
}
.fs-c-listTable > thead {
  border-top: 1px solid #f1f1f1;
  background: rgba(126, 126, 126, 0.08);
}
.fs-c-listTable > tbody {
  border-top: 1px solid #f1f1f1;
  border-bottom: 1px solid #f1f1f1;
}
.fs-c-listTable > tbody > tr:nth-child(even) {
  background: rgba(126, 126, 126, 0.06);
}

.fs-c-listTable > tbody > tr {
  padding: 10px 0;
}

.fs-c-listTable th,
.fs-c-listTable td {
  border-right: 1px solid #f1f1f1;
  border-left: 1px solid #f1f1f1;
  padding: 4px 10px;
}

.fs-c-history__termCtrl {
  display: flex;
  justify-content: end;
  margin-bottom: 10px;
}
.fs-c-listControl {
  text-align: right;
}

/* お届け先追加
-------------------- */
.fs-c-addressBookList__addButton.fs-c-buttonContainer {
  margin: 0 auto 20px;
}
.fs-c-buttonContainer--pair {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 auto 20px;
}
.fs-c-buttonContainer--pair > *:first-child {
  order: 2;
}
.fs-c-buttonContainer--pair > *:last-child {
  order: 1;
}
.fs-c-buttonContainer.fs-c-buttonContainer--deleteChange {
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
  margin: 0 auto;
}
.fs-c-buttonContainer.fs-c-buttonContainer--deleteChange .fs-c-button--delete.fs-c-button--standard,
.fs-c-buttonContainer.fs-c-buttonContainer--deleteChange .fs-c-button--changeInfomation.fs-c-button--secondary {
  margin-bottom: 0;
}

.fs-c-button--delete.fs-c-button--standard,
.fs-c-button--changeInfomation.fs-c-button--secondary {
  display: block;
  background: #000;
  border: 1px solid #000;
  padding: 10px 0;
  min-width: 100px;
  text-align: center;
  color: #fff;
  /* font-weight: 700; */
  border-radius: 12px;
  margin-bottom: 20px;
}

/* キャンセル 削除ボタン
-------------------- */
.fs-c-button--cancel.fs-c-button--standard,
.fs-c-button--delete.fs-c-button--standard {
  background: #ccc;
  border: 1px solid #ccc;
  color: #333;
}

/* カート
-------------------- */
.sp-only #fs-checkout-payHere-container {
  margin-bottom: 10px;
}
.sp-only .fs-c-button--purchaseHere.fs-c-button--primary {
  width: 100%;
}

/* .fs-c-cartTable__headerCell {
  background: rgba(126, 126, 126, 0.08);
  word-break: keep-all;
} */
.fs-c-cartTable__headerCell {
  display: none;
}

a.fs-c-button--continueShopping.fs-c-button--standard {
  margin-bottom: 20px;
}
.fs-c-cartTable__actionButton__container.fs-c-cartTable__actionButton__container--buyItLater {
  display: none;
}

.fs-c-purchaseHere.fs-c-cartPayment .fs-c-button--loginAndPurchase.fs-c-button--primary {
  background: #fff;
  border: 1px solid #000;
  margin-bottom: 10px;
  color: #000;
}

.fs-c-cartTable__product {
  display: flex;
  justify-content: space-between;
}

.fs-c-cartTable__productInfo {
  width: 80%;
  display: flex;
  flex-direction: column;
}
.fs-c-cartTable__unitPrice {
  display: flex;
  justify-content: right;
  margin-top: auto;
}

#fs-checkout-payHere-container .fs-c-purchaseHere__message {
  display: none;
  margin-bottom: 8px;
}
.sp-only #fs-checkout-payHere-container .fs-c-purchaseHere__message {
  display: block;
}

.fs-c-listedProductName__variation,
.fs-c-listedProductName__selection {
  font-size: 12px;
}

.pdBtnWrap {
  display: flex;
  flex-direction: column;
}
.pdBtnWrap .fs-c-productChooseVariation {
  order: 1;
  margin-bottom: 20px;
}
.pdBtnWrap .fs-c-productQuantityAndWishlist {
  order: 3;
  margin-bottom: 20px;
}
.pdBtnWrap .fs-c-productActionButton.fs-c-buttonContainer {
  order: 2;
  width: 100%;
}
.fs-c-totalAndActions .fs-c-orderTotalTable td {
  font-size: 16px;
}

/* .fs-c-orderTotalTable {
  border: 1px solid #ccc;
} */

.fs-c-orderTotalTable__count {
  display: none;
}

.fs-c-orderTotalTable th,
.fs-c-orderTotalTable td {
  padding: 4px 0;
  border: none;
}

.fs-c-orderTotalTable > tbody > tr > th {
  text-align: left;
}

.fs-c-cartDiscountInfo__note,
.fs-c-linkedServiceLogin.fs-c-cartPayment .fs-c-linkedServiceLogin__message,
.fs-c-payWithAmazon__message {
  margin-bottom: 8px;
}

.fs-c-payWithAmazon__button {
  max-width: 290px;
}

.fs-c-cartDiscountInfo.fs-c-cartDiscountInfo--postage {
  margin-bottom: 20px;
}

.fs-c-quantity__number,
select.fs-c-quantity__select.fs-system-quantity-list {
  padding: 4px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
}
.fs-l-cart__contentsArea .fs-c-cartTableContainer {
  margin-bottom: 20px;
}

/* ご購入手続き
-------------------- */
.fs-c-checkout-destination__control {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fs-c-checkout-preview {
  /* border: 1px solid #ccc; */
  border-radius: 3px;
  /* padding: 16px; */
  padding: 16px 0 0;
  background: #ffffff;
  color: #333333;
}
.fs-c-checkout-preview__title {
  border-bottom: 1px solid #ccc;
  font-size: 16px;
  line-height: 1;
  margin: 0 0 10px;
  padding: 0 0 10px;
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
}

.fs-c-checkout-previewAndEdit {
  display: grid;
  grid-template-rows: auto auto;
  grid-row-gap: 10px;
  margin-top: 8px;
}
.fs-c-checkout-previewAndEdit > * {
  align-self: center;
}
.fs-c-checkout-previewAndEdit__info {
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 10px;
}
.fs-c-checkout-previewAndEdit__info:only-child {
  grid-column: 1/3;
}
.fs-c-confirmOrder {
  margin: 30px auto 0;
}
[class^="fs-body-checkout"] .fs-l-checkout__mainColumn > * + * {
  margin-top: 20px;
}

.fs-c-button--change--small.fs-c-button--standard,
.fs-c-checkout-destination__control .fs-c-button--standard {
  width: 200px;
}

.fs-c-modal__title {
  font-family: "Noto Sans JP", sans-serif;
}

.fs-c-checkout-addresseeList li {
  border: 1px solid #ccc;
  margin-bottom: 10px;
  padding: 10px;
}
.fs-c-checkout-addresseeList li:last-of-type {
  margin-bottom: 20px;
}

.fs-c-checkout-addresseeList .fs-c-checkout-addressee__control {
  margin: 20px auto 10px;
}

.fs-c-checkout-addresseeList .fs-c-buttonContainer {
  gap: 10px;
}

.fs-c-checkout-deliveryMethodList .fs-c-checkout-deliveryMethod,
.fs-c-checkout-addresseeSettingList .fs-c-checkout-checkoutMethod {
  border: 1px solid #ccc;
  margin-bottom: 10px;
}
.fs-c-checkout-deliveryMethodList .fs-c-checkout-deliveryMethod:last-of-type,
.fs-c-checkout-addresseeSettingList .fs-c-checkout-checkoutMethod:last-of-type {
  margin-bottom: 20px;
}

.fs-c-checkout-deliveryMethod .fs-c-checkout-deliveryMethod__title,
.fs-c-checkout-checkoutMethod .fs-c-checkout-checkoutMethod__title {
  background: #f1f1f1;
}
.fs-c-checkout-deliveryMethod.is-active .fs-c-checkout-deliveryMethod__title,
.fs-c-checkout-checkoutMethod.is-active .fs-c-checkout-checkoutMethod__title {
  background: #ccc;
}

.fs-c-checkout-couponList__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  padding: 10px;
}

.fs-c-checkout-couponList__description {
  width: 80%;
}

#fs-checkout-payHere-container,
#fs-cartTotals-container {
  margin-bottom: 20px;
}

.fs-c-checkout-deliveryMethod__option__title,
.fs-l-checkout__mainColumn .fs-c-checkout-customerInfo__name,
.fs-l-checkout__mainColumn .fs-c-checkout-destination__name {
  font-size: 16px;
}
.fs-l-checkout__mainColumn .fs-c-checkout-delivery__method__title {
  font-size: 14px;
}

.fs-c-button--change--small.fs-c-button--standard,
.fs-c-checkout-destination__control .fs-c-button--standard {
  color: #2162a1;
  width: auto;
  border: none;
}

.fs-c-checkout-preview {
  position: relative;
}

.fs-c-checkout-preview .fs-c-buttonContainer {
  position: absolute;
  top: 0;
  right: 0;
}

.fs-c-confirmOrder__button.fs-c-buttonContainer.fs-c-buttonContainer--confirmOrder {
  position: relative;
}

.fs-c-checkout-couponCodeInput {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid #ccc;
}
.fs-c-couponCodeInput__button.fs-c-buttonContainer--useCoupon {
  margin: 0 auto;
}
.fs-c-orderTotalTable .fs-c-orderTotalTable__total > th,
.fs-c-orderTotalTable .fs-c-orderTotalTable__total > td,
.fs-c-orderTotalTable .fs-c-orderTotalTable__grandTotal > th,
.fs-c-orderTotalTable .fs-c-orderTotalTable__grandTotal > td {
  border-top-width: 0;
}
.fs-c-checkout-usePoint__lead,
.fs-c-checkout-deliveryMethod__option__message,
.fs-c-checkout-deliveryMethod__option__setting__message {
  margin-bottom: 10px;
}
.fs-c-checkout-pointSettingList,
.fs-c-modal__contents .fs-c-inputInformation .fs-c-inputInformation__field {
  margin-bottom: 20px;
}

.fs-c-buttonContainer.fs-c-buttonContainer--inputCreditCardData {
  position: relative;
  margin: 0;
}

.fs-c-buttonContainer.fs-c-buttonContainer--inputCreditCardData .fs-c-button--standard {
  width: auto;
  border: none;
  color: #2162a1;
}

.fs-c-creditCardIcons {
  display: flex;
  gap: 4px;
}

.fs-c-checkout-confirmationList > dt::after {
  top: -4px;
}

.fs-l-checkout .fs-c-cartTable__dataCell--quantity::before {
  content: attr(data-cell-label);
  font-weight: bold;
  font-size: 10px;
  margin-right: 4px;
  min-width: 2em;
}

.fs-l-checkout .fs-c-cartTable__dataCell.fs-c-cartTable__dataCell--quantity {
  width: 100%;
}

.fs-c-cartTable__dataCell {
  border: none;
  padding: 8px 8px 0;
}

.fs-c-checkout-delivery__method__message {
  margin-bottom: 8px;
}
.fs-c-checkout-paymentInfo__message {
  font-weight: bold;
}

/* お気に入り
-------------------- */
.fs-p-announcement {
  margin-bottom: 20px;
}
.fs-c-button--carousel {
  transition-property: all;
  transition-duration: 0.5s;
  transition-timing-function: linear;
  transition-delay: 0s;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 4.4rem;
  line-height: 1;
  min-height: 1em;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.fs-c-button--carousel .fs-c-button__label {
  display: none;
}
.fs-c-button--carousel::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;
}
.fs-c-button--carousel--prev::before {
  content: "\e90b";
}
.fs-c-button--carousel--next::before {
  content: "\e90c";
}
.fs-c-button--carousel:hover {
  opacity: 0.6;
}

.fs-c-productListItem__control.fs-c-buttonContainer {
  position: absolute;
  bottom: 0;
  right: 0;
}
.fs-c-button--viewProductDetail.fs-c-button--plain {
  display: none;
}

/* 注文履歴
-------------------- */
.fs-c-history__info {
  background: rgba(126, 126, 126, 0.08);
  padding: 16px;
}
.fs-c-history__info > * + * {
  padding-top: 16px;
}
.fs-c-history__listContainer > * + * {
  margin-top: 8px;
}
.fs-c-history__term {
  color: #7c8790;
  font-weight: 700;
  font-size: 1.2rem;
}
.fs-c-history__total dl {
  grid-gap: 0;
}
.fs-c-history__total dt {
  font-weight: 700;
}
.fs-c-history__total dt::after {
  display: none;
}
.fs-c-history__total dd {
  text-align: right;
}
.fs-c-history__total dt,
.fs-c-history__total dd {
  /* border-top: 1px solid #7c8790; */
  margin-top: 8px;
  /* padding-top: 8px; */
}

.fs-body-my-orders .fs-c-history,
.fs-body-my-storeOrders .fs-c-history {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 24px;
}
.fs-body-my-orders .fs-c-history__info,
.fs-body-my-storeOrders .fs-c-history__info {
  grid-column: 1;
  grid-row: 1;
}
.fs-body-my-orders .fs-c-history__listContainer,
.fs-body-my-storeOrders .fs-c-history__listContainer {
  grid-column: 1;
  grid-row: 2;
}

.fs-c-orderHistory {
  margin-top: 8px;
}
.fs-c-orderHistoryItem {
  /* border: 1px solid #b2b2b2; */
  border-radius: 3px;
  margin-bottom: 24px;
  overflow: hidden;
  border-bottom: 1px solid #b2b2b2;
}
.fs-c-orderHistoryItem__header {
  /* border-bottom: 1px solid #b2b2b2; */
  background: rgba(126, 126, 126, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}
.fs-c-orderHistoryItem__header__button {
  display: block;
  text-align: right;
  padding: 0 16px;
  margin: 0 0 10px;
}
.fs-c-orderHistoryItem__orderInfo {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
}
.fs-c-orderHistoryItem__orderInfo__info {
  margin: 0 16px 8px;
}
.fs-c-orderHistoryItem__orderInfo__info dd {
  font-weight: 700;
  margin: 0;
}
.fs-c-orderHistoryItem__body {
  padding: 0 16px;
}
.fs-c-orderHistoryItem__nextDelivery {
  padding: 16px 0 8px;
  border-bottom: 1px solid #b2b2b2;
}
.fs-c-orderHistoryItem__schedule__count::before {
  content: "（";
}
.fs-c-orderHistoryItem__schedule__count::after {
  content: "）";
}
.fs-c-orderHistoryItem__schedule__body {
  font-weight: 700;
}
.fs-c-orderHistoryItem__orderSummary__label,
.fs-c-orderHistoryItem__orderSummary__price {
  margin: 0;
}
.fs-c-orderHistoryItem__orderSummary__price {
  font-weight: 700;
}
.fs-c-orderHistoryItem__cycleInfo {
  font-size: 1.2rem;
}
.fs-c-orderHistoryItem__cycleInfo__additionalCycle::before {
  content: "（";
}
.fs-c-orderHistoryItem__cycleInfo__additionalCycle::after {
  content: "）";
}
.fs-c-orderHistoryItem__note {
  margin: 16px 0 0;
  padding: 8px;
  background-color: rgba(126, 126, 126, 0.08);
}
.fs-c-orderHistoryItem__product {
  display: grid;
  grid-template-columns: 120px 1fr;
  grid-template-rows: auto auto auto auto auto;
  grid-gap: 8px;
  align-items: start;
  padding: 16px 0;
}
.fs-c-orderHistoryItem__product + .fs-c-orderHistoryItem__product {
  border-top: 1px dashed #b2b2b2;
}
.fs-c-orderHistoryItem__productImage {
  grid-column: 1;
  grid-row: 1/5;
}
.fs-c-orderHistoryItem__productImage__image {
  padding-right: 8px;
}
.fs-c-orderHistoryItem__productName {
  grid-column: 2;
  grid-row: 1;
  margin-top: auto;
}
.fs-c-orderHistoryItem__unitPrice {
  grid-column: 2;
  grid-row: 2;
}
.fs-c-orderHistoryItem__productQuantity {
  grid-column: 2;
  grid-row: 3;
  text-align: right;
}
.fs-c-orderHistoryItem__productQuantity__label {
  font-size: 1.2rem;
}
.fs-c-orderHistoryItem__deliveryInfo {
  font-size: 1.2rem;
  grid-column: 2;
  grid-row: 4;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto auto;
  margin-left: auto;
}
.fs-c-orderHistoryItem__deliveryInfo dt {
  text-align: right;
  padding-right: 8px;
}
.fs-c-orderHistoryItem__deliveryInfo dd {
  margin: 0;
  padding-left: 8px;
  border-left: 1px solid #3c3c3c;
}
.fs-c-orderHistoryItem__button {
  grid-column: 1/3;
  grid-row: 5;
}
.fs-c-orderHistoryItem__footer {
  border-top: 1px solid #b2b2b2;
  padding-top: 16px;
  margin: 8px 16px;
  text-align: right;
}

/* 注文履歴詳細
-------------------- */
.fs-c-orderDetail {
  margin-bottom: 40px;
}
.fs-c-orderDetail section {
  margin-bottom: 20px;
}

.fs-c-orderDetail__data {
  border: 1px solid #f1f1f1;
  margin-bottom: 20px;
}

.fs-c-orderDetailList {
  display: grid;
  grid-template-columns: auto 1fr;
  row-gap: 4px;
}

.fs-c-orderDetailList dt {
  width: 120px;
}

.fs-c-orderDetailList__date,
.fs-c-orderDetailList__date + dd {
  background-color: #f1f1f1;
}

.fs-c-orderDetailList dt,
.fs-c-orderDetailList dd {
  padding: 4px 8px;
}

h2.fs-c-heading.fs-c-heading--section {
  font-size: 14px;
  background-color: #f1f1f1;
  padding: 4px 8px;
  margin-bottom: 8px;
  font-size: 16px;
  text-align: center;
}
h3.fs-c-orderPerAddressee__heading.fs-c-heading.fs-c-heading--subsection {
  font-size: 14px;
}
.fs-c-addresseeList {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-auto-rows: auto;
  grid-auto-flow: row;
  grid-gap: 8px 8px;
  margin-bottom: 20px;
}
.fs-c-addresseeList .fs-c-address {
  display: flex;
  flex-wrap: wrap;
}
.fs-c-addresseeList .fs-c-address > *:not(:last-child) {
  margin-right: 8px;
}

.fs-c-orderDetailInfo__cartTable.fs-c-cartTable .fs-c-cartTable__productInfo {
  width: 100%;
}
.fs-c-string.fs-c-string--label,
.fs-c-orderPerAddressee__addressee.fs-c-addresseeList dt,
.fs-c-orderDetailInfo__cartTable.fs-c-cartTable .fs-c-listedProductName__variation {
  font-weight: bold;
}

/**/
/* .fs-c-orderPaymentTable th,
.fs-c-orderPaymentTable td,
.fs-c-deliveryInfoList > dt,
.fs-c-deliveryInfoList > dd {
  padding: 4px 10px;
} */
/* .fs-c-deliveryInfoList > dt,
.fs-c-orderPaymentTable th {
  text-align: left;
  border-right: none;
}
.fs-c-deliveryInfoList > dd,
.fs-c-orderPaymentTable td {
  text-align: right;
  border-left: none;
} */

.fs-c-orderPerAddressee__cartTable.fs-c-cartTable,
.fs-c-orderDetailInfo__cartTable.fs-c-cartTable {
  margin-bottom: 20px;
}
.fs-c-orderTotalTable th,
.fs-c-deliveryInfoList > dt,
.fs-c-orderPaymentTable th {
  width: 140px;
  font-weight: bold;
}
.fs-c-deliveryInfoList {
  grid-template-columns: auto 1fr;
}
.fs-c-deliveryInfoList,
.fs-c-orderPaymentTable th,
.fs-c-orderPaymentTable td {
  border-top: none;
}

.fs-c-orderDetail .fs-c-orderTotalTable th,
.fs-c-orderDetail .fs-c-orderTotalTable td,
.fs-c-orderDetail .fs-c-orderPaymentTable th,
.fs-c-orderDetail .fs-c-orderPaymentTable td,
.fs-c-orderDetail .fs-c-deliveryInfoList > dt,
.fs-c-orderDetail .fs-c-deliveryInfoList > dd {
  padding: 2px 0;
  border: none;
}

.fs-c-orderDetail .fs-c-deliveryInfoList > dt,
.fs-c-orderDetail .fs-c-orderPaymentTable th {
  text-align: left;
  border: none;
}
.fs-c-orderDetail .fs-c-deliveryInfoList > dd,
.fs-c-orderDetail .fs-c-orderPaymentTable td {
  text-align: right;
  border: none;
}

.fs-c-orderDetail .fs-c-deliveryInfoList {
  border: none;
}
.fs-c-orderDetail .fs-c-orderPaymentTable td {
  padding: 4px 0;
  border: none;
}

.fs-c-orderDetail .fs-c-cartTable__dataCell {
  border: none;
  padding: 16px 0 0;
}

.fs-c-orderDetail .fs-c-cartTable__row {
  display: flex;
  flex-wrap: wrap;
}
.fs-c-orderDetail .fs-c-cartTable__dataCell--product {
  flex-grow: 1;
}
.fs-c-orderDetail .fs-c-cartTable__dataCell--quantity,
.fs-c-orderDetail .fs-c-cartTable__dataCell--subtotal,
.fs-c-orderDetail .fs-c-cartTable__dataCell--review {
  width: auto;
  margin-left: auto;
  flex-basis: 100%;
  text-align: right;
}
.fs-c-orderDetail .fs-c-cartTable__dataCell.fs-c-cartTable__dataCell--quantity,
.fs-c-orderDetail .fs-c-cartTable__dataCell.fs-c-cartTable__dataCell--subtotal,
.fs-c-orderDetail .fs-c-cartTable__dataCell.fs-c-cartTable__dataCell--review {
  padding: 0;
  border: none;
}
.fs-c-orderDetail .fs-c-cartTable__dataCell.fs-c-cartTable__dataCell--quantity::before {
  content: attr(data-cell-label);
  font-weight: bold;
  font-size: 10px;
  margin-right: 4px;
  min-width: 2em;
}

/* FS 共通
-------------------- */
.logout.my-false,
.login.my-true {
  display: none;
}

.fs-c-inputInformation__message {
  margin-bottom: 20px;
}

.fs-c-fsLogin .fs-c-newUsers__message.fs-c-subSection__message,
.fs-c-inputInformation__field {
  margin-bottom: 40px;
}

.fs-c-modal--medium .fs-c-modal__inner {
  padding: 2%;
}
.fs-c-modal__close::before {
  font-size: 1.4em;
}
.fs-c-modal__inner {
  width: 768px;
  max-width: 90vw;
  padding: 2%;
}

.fs-c-cartTable__dataCell.fs-c-cartTable__dataCell--action {
  white-space: nowrap;
}

/* クーポン確認ページ
-------------------- */
.fs-c-couponList__item.fs-c-coupon {
  border: 1px solid #ccc;
  padding: 10px;
  margin-bottom: 20px;
}
.fs-c-coupon__name.fs-c-couponName {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #ccc;
}
.fs-c-coupon__description > div {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.fs-c-coupon__description > div h3 {
  min-width: 64px;
  max-width: 100px;
  font-size: 14px;
}
.fs-c-couponName__name {
  font-size: 14px;
  color: #aaa;
}
.fs-c-couponName__discount {
  font-size: 20px;
  font-weight: bold;
}

/* レビュー
-------------------- */
.fs-c-productReviewed {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 8px;
}
.fs-c-aggregateRating {
  margin-bottom: 10px;
}

.fs-c-productReviewed__image.fs-c-productImage {
  margin: 0 calc(50% - 50vw);
  text-align: center;
}
.fs-c-productReviewed__image.fs-c-productImage img {
  display: inline-block;
}

.fs-c-inputInformation__button.fs-c-buttonContainer.fs-c-buttonContainer--submitReview,
.fs-c-buttonContainer.fs-c-buttonContainer--back {
  margin-bottom: 10px;
}

.fs-c-aggregateRating {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
}

.fs-c-aggregateRating__rating {
  display: flex;
  align-items: center;
  flex: 0 1 10em;
  flex-wrap: wrap;
  font-size: 18px;
  line-height: 1;
}

.fs-c-aggregateRating__rating::before {
  content: "この商品の平均評価";
  flex: 1 0 100%;
  font-size: 11px;
  margin-bottom: 4px;
}

.fs-c-aggregateRating__count {
  flex-grow: 1;
  font-size: 14px;
}

.fs-c-aggregateRating__message {
  flex-basis: 100%;
  background: #f7f7f7;
  padding: 8px;
  text-align: center;
}

.fs-c-productReviewed + .fs-c-aggregateRating {
  margin: 24px auto;
}

.fs-c-reviewInfo__reviewer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.fs-c-reviewInfo__date {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.2rem;
  margin: 4px 0;
}

.fs-c-reviewInfo__date > dt:after {
  content: "：";
}

.fs-c-reviewInfo__date > dd {
  margin-left: 0;
}

.fs-c-reviewInfo--productDescription .fs-c-reviewInfo__reviewer {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}

.fs-c-reviewer__profile {
  font-size: 12px;
}

.fs-c-reviewer__name__nickname::after {
  content: "さん";
}

.fs-c-reviewBody {
  border: 1px solid #ccc;
  padding: 16px;
}

.fs-c-reviewList {
  list-style: none;
  padding: 0;
}

.fs-c-reviewList__item {
  border-bottom: 1px solid #aaa;
  display: flex;
  flex-direction: column;
  padding: 16px 8px;
}

.fs-c-reviewList__item:first-child {
  border-top: 1px solid #aaa;
}

.fs-c-reviewList__item__product {
  display: flex;
  flex-direction: column;
}

.fs-c-reviewList__item__info {
  display: flex;
  flex-direction: column;
}

.fs-c-reviewList__item__body {
  margin: 8px 0;
}

.fs-c-reviewList__item__editButton {
  display: flex;
  justify-content: flex-end;
}

.fs-c-reviewList--product .fs-c-reviewList__item {
  grid-template: 1fr/1fr 4fr;
}

.fs-c-reviewList--productDescription .fs-c-reviewList__item {
  grid-template: auto auto/1fr;
}

.fs-c-productReview__allReviews.fs-c-buttonContainer.fs-c-buttonContainer--viewAllReviews {
  display: block;
}
.fs-c-productReview__allReviews.fs-c-buttonContainer.fs-c-buttonContainer--viewAllReviews,
.fs-c-productReview__addReview.fs-c-buttonContainer.fs-c-buttonContainer--addReview--detail {
  margin-bottom: 10px;
}

.fs-c-reviewSuccessComment.fs-c-documentContent {
  margin-bottom: 40px;
}

.fs-c-reveiwNotes {
  margin-bottom: 20px;
}
.fs-c-reviewAddField .fs-c-inputTable__headerCell {
  background: #f1f1f1;
}

/* 規約 プライバシーポリシー
-------------------- */
.terms .termsBox h2 {
  margin-bottom: 4px;
}
.terms .termsBox {
  margin-bottom: 20px;
}
.terms .termsBox p {
  margin-bottom: 8px;
}
.terms .termsBox {
  margin: 0 auto 20px;
}

.terms .termsBox dl {
  display: block;
}

.terms .termsBox dt {
  font-weight: bold;
  background-color: #eee;
  padding: 10px;
}

.terms .termsBox dd {
  margin: 0 0 40px;
  padding: 10px 20px;
}
.terms .termsBox a {
  text-decoration: underline;
}
.terms .termsBox a:hover {
  text-decoration: none;
}

/* ログイン連携
-------------------- */
.fs-c-linkService {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 40px;
}
.fs-c-linkServicesList {
  display: grid;
  gap: 16px;
}
.fs-c-linkService .fs-c-linkService__status {
  text-align: right;
}
.fs-c-linkService .fs-c-linkService__button {
  grid-column: 1 / span 2;
  margin: 0 auto;
}

.fs-c-linkServicesList__item {
  box-shadow: 0 0 2px #b2b2b2;
  border: 1px solid #ccc;
  background-color: #ffffff;
  border-radius: 3px;
  padding: 16px;
}

.fs-c-linkService__status__label {
  color: #aaa;
}

.fs-c-cartDiscountInfo__info .fs-c-cartDiscountInfo__info__current,
.fs-c-linkService.is-linked .fs-c-linkService__status__label {
  color: #c00;
}

.loginLine,
.fs-c-anotherLogin__button--amazon.fs-c-buttonContainer {
  min-width: 290px;
  max-width: 290px;
}

.loginLine {
  background: #00c860;
  border-radius: 6px;
  border: none;
}

.fs-c-lineIdLink {
  margin: 40px auto 0;
}

.fs-c-lineIdLink .fs-c-lineIdLinkMessage.fs-c-documentContent {
  margin-bottom: 20px;
}

@media screen and (min-width: 960px) {
  /* 共通
-------------------- */
  .pc-only {
    display: inline;
  }
  .sp-only {
    display: none;
  }

  h3 {
    font-size: 20px;
  }
  h4,
  h5,
  h1.ttlBlack {
    font-size: 18px;
  }

  /* ヘッダー
-------------------- */
  header {
    height: 64px;
  }
  header .menu {
    position: static;
    background: none;
    box-shadow: none;
    width: auto;
  }
  header .menu {
    display: flex;
    gap: 32px;
    margin-left: auto;
    margin-top: auto;
  }
  header .menu a:first-of-type {
    display: none;
  }
  .menuItem {
    width: 64px;
    height: 64px;
  }
  .menuItem .icon {
    filter: brightness(0) invert(0.5);
  }
  .menuItem.active,
  .menuItem:hover {
    filter: brightness(0) invert(0);
  }
  footer .menu {
    display: none;
  }
  .menuPanel {
    top: 64px;
    height: auto;
    display: block;
    background: #fbfbfb;
    padding: 20px 0;
  }

  /* パンくずリスト
-------------------- */
  .fs-c-breadcrumb {
    display: block;
    white-space: unset;
    overflow: unset;
  }

  /* メイン
-------------------- */
  main {
    max-width: 1000px;
  }

  /* トップページ
-------------------- */
  .topMainWrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .topMain {
    width: 50%;
  }

  .topMain.other {
    aspect-ratio: 6 / 1;
  }

  .topMain .overlay {
    bottom: 8%;
  }
  .topMain .overlay img {
    margin-bottom: 20px;
  }

  .topMain .overlay small,
  .topPickup h3 small {
    font-size: 14px;
  }

  .topMain.tmp {
    width: 100%;
  }

  .topPickupBox {
    max-width: 1000px;
  }
  .topPickupList a {
    flex: 0 0 20%;
    font-size: 14px;
  }

  .topPickupList a::before {
    width: 28px;
    height: 28px;
  }

  .topCategory a.extra .overlay span {
    font-size: 14px;
  }

  #brandList a {
    width: calc((100% - 30px) / 4);
  }

  /* swiper
-------------------- */
  .swiper-wrap.swiperTop .swiper-button-next,
  .swiper-wrap.swiperTop .swiper-button-prev {
    display: flex;
  }

  /* パネルメニュー カテゴリー
-------------------- */
  .categoryWrap {
    max-width: 1000px;
    display: flex;
    margin: 0 auto;
  }

  .categoryWrapIn:first-of-type {
    max-width: 40%;
    margin-right: 100px;
  }

  .closeBtn {
    display: none;
  }
  .searchBox {
    max-width: 920px;
    margin: 0 auto 20px;
  }
  .searchBoxInner {
    display: flex;
    justify-content: space-between;
    margin: 0 auto 50px;
  }
  .searchBoxInnerR {
    width: 50%;
    display: flex;
    flex-wrap: wrap;
  }
  .searchBoxInnerR .searchTag {
    width: 50%;
  }
  .searchBtn {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .clearBtn,
  .submitBtn {
    max-width: 200px;
    margin: 0;
  }
  .clearBtn {
    margin-right: 20px;
  }

  #searchStatus {
    margin: 0 auto 20px;
  }
  #searchStatus .searchBox {
    max-width: 100%;
    margin: 0 auto 40px;
  }
  #searchStatus .searchBoxInner {
    justify-content: normal;
    flex-direction: column;
    margin: 0 auto 10px;
  }
  #searchStatus .searchBoxInnerL {
    margin-bottom: 10px;
  }
  #searchStatus .searchBoxInnerR {
    width: 100%;
    display: flex;
    flex-wrap: unset;
    justify-content: space-between;
  }
  #searchStatus .searchBoxInnerR .searchTag {
    width: auto;
  }
  #searchStatus .searchKeyword button {
    height: 32px;
  }
  #searchStatus .searchTag {
    font-size: 12px;
    padding: 0;
    margin-bottom: 10px;
  }
  #searchStatus .searchBtn {
    font-size: 12px;
  }
  #searchStatus .searchTag .selectBox {
    width: 140px;
    margin-left: 2px;
  }

  /* パネルメニュー 検索フォーム
-------------------- */
  .searchKeyword {
    width: 320px;
  }

  /* パネルメニュー アカウント
-------------------- */
  .accountMenu {
    max-width: 480px;
    margin: 0 auto;
  }
  .accountMenu .login .accountBtn {
    display: flex;
    justify-content: center;
    gap: 10px;
  }
  .accountMenu .login .accountBtn a {
    width: 200px;
    margin-bottom: 0;
  }
  .accountMenu .logout ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  /* 2カラムレイアウト
-------------------- */
  .layout2col {
    flex-direction: row;
  }
  .layout2colSide {
    max-width: 240px;
    margin: 0;
    flex-shrink: 0;
  }
  .layout2col .fs-c-productList {
    flex: 1;
    min-width: 0;
  }
  .layout2colSide .linkList ul li a {
    padding: 10px;
  }

  /* 商品一覧
-------------------- */
  #categoryHero h1 {
    display: flex;
    height: 120px;
  }

  #categoryHero .categoryName {
    width: 50%;
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  #categoryHero h1 img {
    flex: 1;
    object-fit: cover;
    object-position: 50% 0%;
  }

  #categoryHero .categoryName .eigo,
  #categoryHero .categoryName .kana {
    position: static;
    transform: none;
  }

  #categoryHero .categoryPick {
    max-width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  #categoryHero .categoryPick h2 {
    min-width: 120px;
  }

  .fs-c-productList__list__item {
    width: auto;
  }

  #categoryTempHero {
    max-width: 1000px;
    height: 120px;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
  }
  #categoryTempHero h1 {
    font-size: 18px;
  }
  #categoryTempHero small {
    margin-bottom: 10px;
  }
  #categoryTempHero a {
    font-size: 12px;
    margin: 0 auto;
  }

  /* 商品詳細ページ
-------------------- */
  .pdAreaTop {
    display: flex;
    flex-direction: row;
  }
  .pdAreaTop .pdBox01 {
    max-width: 560px;
    margin-right: 40px;
    text-align: center;
  }
  .pdAreaBottom {
    display: flex;
    justify-content: center;
  }

  .fs-c-productCarouselMainImage {
    margin: 0;
  }

  .fs-c-productCarouselMainImage__carousel {
    width: auto;
    left: 0;
    right: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .fs-c-slick .slick-slide img {
    width: 560px;
    height: 560px;
  }

  /* 検索結果一覧ページ
-------------------- */
  .fs-c-productList__list {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  /* フッター
-------------------- */
  .footerInfoBox,
  .footerLink a {
    flex: 1 1 calc(50% - 10px);
  }
  .footer {
    margin-bottom: 0;
  }

  /* カート
-------------------- */
  .fs-c-button--continueShopping.fs-c-button--standard {
    width: 200px;
    margin: 0 auto 20px;
  }

  .fs-body-cart .fs-l-cart__contentsArea {
    display: grid;
    grid-template-columns: 1fr 280px;
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }
  .fs-body-cart .fs-l-cart__contentsArea > * {
    margin-bottom: auto;
  }
  .fs-body-cart .fs-l-cart__contentsArea.is-linkedServiceLoginAvailable {
    grid-template-columns: 1fr 332px;
  }
  .fs-body-cart .fs-l-cart__sideColumn {
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 16px;
    align-self: start;
  }

  .fs-c-cartTable__product {
    border: none;
    padding-bottom: 0;
  }
  #fs-checkout-payHere-container .fs-c-purchaseHere__message {
    display: block;
  }

  .fs-c-cartTable__headerCell--quantity,
  .fs-l-checkout .fs-c-cartTable__dataCell.fs-c-cartTable__dataCell--quantity {
    width: 56px;
  }
  .fs-c-cartTable__dataCell.fs-c-cartTable__dataCell--subtotal,
  .fs-c-cartTable__dataCell.fs-c-cartTable__dataCell--point {
    display: none;
  }

  .fs-c-cartTable__dataCell {
    border: none; /*fsテンプレート打ち消し*/
    border-bottom: 1px solid #ccc;
    padding: 16px 8px;
  }
  .fs-c-cartTable__dataCell.fs-c-cartTable__dataCell--quantity,
  .fs-c-cartTable__dataCell.fs-c-cartTable__dataCell--action {
    vertical-align: bottom;
  }
  /* .fs-c-cartTable__dataCell.fs-c-cartTable__dataCell--quantity {
    padding-bottom: 12px;
  } */
  .fs-l-cart__contentsArea .fs-c-cartTable__dataCell.fs-c-cartTable__dataCell--quantity {
    padding-bottom: 12px;
  }
  .fs-l-cart__contentsArea .fs-c-cartTableContainer {
    margin-bottom: 10px;
  }

  /* 会員登録
-------------------- */
  .fs-c-inputTable tr {
    display: inline;
    margin: 0;
    padding: 0;
    border-bottom: none;
  }

  /* ログイン
-------------------- */
  .fs-c-fsLogin,
  .fs-c-newUsers {
    margin: 0 auto 50px;
  }
  .fs-c-button--secondary,
  .fs-c-button--standard,
  .fs-c-button--primary {
    width: 200px;
  }

  /* マイページ
-------------------- */
  .fs-c-productListCarousel__ctrl {
    flex-basis: 48px;
    min-width: 48px;
  }

  .fs-c-productListCarousel__list__item {
    flex-basis: 200px;
    max-width: 200px;
    min-width: 200px;
    margin: 0 10px;
  }

  .mypageList {
    width: 100%;
    margin: 0 auto;
  }

  .mypageList ul {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0 auto 40px;
  }

  .mypageList ul li {
    flex: 1 1 calc(50% - 10px);
    padding: 10px;
  }
  .fs-c-button--changeInfomation.fs-c-button--secondary,
  .fs-c-button--myPageTop.fs-c-button--plain {
    width: 200px;
  }
  /* ポイント履歴
-------------------- */
  .fs-body-my-points .fs-c-history__info {
    max-width: 560px;
  }
  .fs-c-postage__list {
    grid-column-gap: 10px;
  }
  .fs-c-postage__list--prefecture > dt:nth-of-type(6n + 1),
  .fs-c-postage__list--prefecture > dd:nth-of-type(6n + 1) {
    grid-column: 1;
  }
  .fs-c-postage__list--prefecture > dt:nth-of-type(6n + 2),
  .fs-c-postage__list--prefecture > dd:nth-of-type(6n + 2) {
    grid-column: 2;
  }
  .fs-c-postage__list--prefecture > dt:nth-of-type(6n + 3),
  .fs-c-postage__list--prefecture > dd:nth-of-type(6n + 3) {
    grid-column: 3;
  }
  .fs-c-postage__list--prefecture > dt:nth-of-type(6n + 4),
  .fs-c-postage__list--prefecture > dd:nth-of-type(6n + 4) {
    grid-column: 4;
  }
  .fs-c-postage__list--prefecture > dt:nth-of-type(6n + 5),
  .fs-c-postage__list--prefecture > dd:nth-of-type(6n + 5) {
    grid-column: 5;
  }
  .fs-c-postage__list--prefecture > dt:nth-of-type(6n + 6),
  .fs-c-postage__list--prefecture > dd:nth-of-type(6n + 6) {
    grid-column: 6;
  }

  .fs-c-listTable > tbody {
    border: none;
  }
  .fs-c-listTable > tbody > tr {
    border: 1px solid #f1f1f1;
    padding: 8px 0;
  }
  .fs-c-listTable > tbody > tr:nth-child(even) {
    background: transparent;
  }

  .fs-c-listTable th,
  .fs-c-listTable td {
    padding: 10px;
  }

  /* お届け先追加
-------------------- */
  .fs-c-button--delete.fs-c-button--standard,
  .fs-c-button--changeInfomation.fs-c-button--secondary {
    min-width: 160px;
    margin-bottom: 0;
  }

  /* ご購入手続き
-------------------- */
  [class^="fs-body-checkout"] .fs-l-checkout {
    display: flex;
    align-items: flex-start;
    width: 100%;
  }
  [class^="fs-body-checkout"] .fs-l-checkout__mainColumn {
    flex-grow: 1;
    max-width: calc(100vw - 8px * 44);
    padding-right: 24px;
  }
  [class^="fs-body-checkout"] .fs-l-checkout__sideColumn {
    margin-top: 0;
    flex-grow: 1;
    flex-basis: 320px;
    min-width: 320px;
    position: sticky;
    top: 20px;
  }

  /* レビュー
-------------------- */
  .fs-c-productReviewed {
    grid-template-columns: 1fr;
    grid-template-columns: 500px 1fr;
  }
  .fs-c-productReviewed__image {
    grid-row: 1/6;
  }
  .fs-c-productReviewed__name {
    grid-column: 2;
    grid-row: 2;
  }
  .fs-c-productReviewed__number {
    grid-column: 2;
    grid-row: 3;
  }
  .fs-c-productReviewed__prices {
    grid-column: 2;
    grid-row: 4;
  }

  /* 規約 プライバシーポリシー
-------------------- */
  .terms .termsBox dl {
    display: grid;
    grid-template-columns: 200px 1fr;
    row-gap: 1rem;
    column-gap: 1rem;
  }

  .terms .termsBox dt {
    text-align: center;
  }

  .terms .termsBox dd {
    margin-bottom: 0;
  }

  /* ログイン連携
-------------------- */
  .fs-c-linkService {
    display: grid;
    grid-template-columns: 1fr 1fr 290px;
    align-items: center;
    gap: 16px;
  }
  .fs-c-linkServicesList {
    grid-template-columns: 1fr 1fr;
  }
  .fs-c-linkService .fs-c-linkService__status {
    text-align: start;
  }
  .fs-c-linkService .fs-c-linkService__button {
    grid-column: auto;
  }
  .fs-c-linkServicesList__item {
    padding: 16px 32px;
  }

  /* 注文履歴
-------------------- */
  .fs-body-my-orders .fs-c-history,
  .fs-body-my-storeOrders .fs-c-history {
    grid-template-columns: 1fr auto;
  }
  .fs-body-my-orders .fs-c-history__info,
  .fs-body-my-storeOrders .fs-c-history__info {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
  }
  .fs-body-my-orders .fs-c-history__listContainer,
  .fs-body-my-storeOrders .fs-c-history__listContainer {
    grid-column: 1;
    grid-row: 1;
  }
  .fs-c-orderHistoryItem__header__button {
    margin: 0;
  }

  .fs-c-orderHistoryItem__orderInfo {
    justify-content: flex-start;
  }
  .fs-c-orderHistoryItem__header {
    flex-direction: row;
    align-items: center;
  }
  .fs-c-orderHistoryItem__product {
    grid-template-columns: 112px 1fr auto auto;
    grid-template-rows: auto auto 1fr;
  }
  .fs-c-orderHistoryItem__productImage {
    grid-column: 1;
    grid-row: 1/4;
  }
  .fs-c-orderHistoryItem__productName {
    grid-column: 2;
    grid-row: 1;
  }
  .fs-c-orderHistoryItem__unitPrice {
    grid-column: 2;
    grid-row: 2;
  }
  .fs-c-orderHistoryItem__productQuantity {
    grid-column: 2;
    grid-row: 3;
    text-align: left;
  }
  .fs-c-orderHistoryItem__deliveryInfo {
    grid-column: 3;
    grid-row: 1/4;
    align-self: center;
  }
  .fs-c-orderHistoryItem__button {
    grid-column: 4;
    grid-row: 1/4;
    align-self: center;
  }

  /* 注文履歴詳細
-------------------- */
  .fs-body-my-orders-details .fs-c-orderPerAddressee,
  .fs-body-my-orders-details .fs-c-orderDetailInfo {
    display: grid;
    grid-gap: 16px;
    grid-template: auto auto auto/1fr 240px;
    align-items: start;
  }
  .fs-body-my-orders-details .fs-c-orderPerAddressee__heading {
    grid-row: 1;
    grid-column: 1 / span 2;
  }
  .fs-body-my-orders-details .fs-c-orderPerAddressee__addressee {
    grid-row: 2;
    grid-column: 1;
    margin: 0;
  }
  .fs-body-my-orders-details .fs-c-orderPerAddressee__deliveryInfoList {
    grid-row: 2;
    grid-column: 2;
    margin: 0;
  }
  .fs-body-my-orders-details .fs-c-orderPerAddressee__cartTable {
    grid-row: 3;
    grid-column: 1;
  }
  .fs-body-my-orders-details .fs-c-orderPerAddressee__orderDeliveryInfo {
    grid-row: 3;
    grid-column: 2;
  }
  .fs-body-my-orders-details .fs-c-orderDetailInfo__heading {
    grid-column: 1 / span 2;
  }

  .fs-body-my-orders-details .fs-c-orderPerAddressee__orderDeliveryInfo,
  .fs-body-my-orders-details .fs-c-orderDetailInfo__orderTotal {
    border: 1px solid #ccc;
    padding: 16px;
  }
  .fs-c-deliveryInfoList > dt,
  .fs-c-orderPaymentTable th {
    border-right: 1px solid #ccc;
  }
}

/* カート FS max-width
-------------------- */
@media screen and (max-width: 959px) {
  .fs-c-cartTable > thead {
    display: none;
  }
  .fs-c-cartTable__row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  .fs-c-cartTable__row:last-of-type {
    margin-bottom: 0;
  }
  .fs-c-cartTable__row td {
    width: 100%;
  }
  .fs-c-cartTable__dataCell--point,
  .fs-c-cartTable__dataCell--quantity,
  .fs-c-cartTable__dataCell--subtotal {
    text-align: right;
    position: relative;
  }
  .fs-c-cartTable__dataCell--point::before,
  .fs-c-cartTable__dataCell--quantity::before,
  .fs-c-cartTable__dataCell--subtotal::before {
    content: attr(data-cell-label);
    font-weight: bold;
    font-size: 0.8rem;
    margin-right: 8px;
    min-width: 2em;
  }
  .fs-c-cartTable__dataCell--quantity::before {
    font-weight: normal;
    font-size: 12px;
  }

  .fs-c-cartTable__dataCell--quantity {
    width: 100%;
  }
  .fs-c-cartTable__actionButton {
    display: flex;
    justify-content: space-between;
  }
  .fs-c-cartTable__actionButton button + button {
    margin-top: 0;
  }

  .fs-c-cartTable__dataCell.fs-c-cartTable__dataCell--quantity,
  .fs-c-cartTable__dataCell.fs-c-cartTable__dataCell--subtotal,
  .fs-c-cartTable__dataCell.fs-c-cartTable__dataCell--point,
  .fs-c-cartTable__dataCell.fs-c-cartTable__dataCell--action {
    width: 50%;
    display: flex;
    align-items: center;
  }
  .fs-c-cartTable__dataCell.fs-c-cartTable__dataCell--subtotal,
  .fs-c-cartTable__dataCell.fs-c-cartTable__dataCell--point {
    display: none;
  }
  /* .fs-c-cartTable__dataCell.fs-c-cartTable__dataCell--quantity,
  .fs-c-checkout-orderInfo__body .fs-c-cartTable__dataCell.fs-c-cartTable__dataCell--point {
    width: 100%;
  } */
  .fs-c-cartTable__dataCell.fs-c-cartTable__dataCell--subtotal,
  .fs-c-cartTable__dataCell.fs-c-cartTable__dataCell--point {
    justify-content: right;
  }
  .fs-c-cartTable__dataCell.fs-c-cartTable__dataCell--product {
    order: 1;
  }
  .fs-c-cartTable__dataCell.fs-c-cartTable__dataCell--action {
    order: 2;
  }
  .fs-c-cartTable__dataCell.fs-c-cartTable__dataCell--quantity {
    order: 3;
    justify-content: right;
    /* width: 40%;
    position: absolute;
    bottom: 0;
    left: 0; */
  }
  /* .fs-c-cartTable__dataCell.fs-c-cartTable__dataCell--subtotal {
    order: 3;
  }
  .fs-c-cartTable__dataCell.fs-c-cartTable__dataCell--point {
    order: 5;
  } */
}
@media screen and (max-width: 600px) {
  .fs-c-pointListTable.fs-c-listTable > tbody > tr td::before {
    min-width: 120px;
  }
}
