@charset "utf-8";

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/*--------------------------
色設定
---------------------------*/
:root {
    --text-color: #333333;
    --background-color: #FFFFFF;
    --subbackground-color:#F5F5E4;
    --maincolor:#E7532F;
    --graycolor:#D4D4D4;
    --redcolor:#E20934;
    --graycolor2:#F7F7F7;
}

/* /_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_
共通用CSS
/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_*/

@import url('https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New&display=swap');

html,body{
    width: 100%;
    position: relative;
  }
  html {
      font-size: 62.5%;
      overflow-x: hidden;
  }
  body {
      color: var(--text-color);
      font-family:"Zen Old Mincho", serif;
      line-height: 1.5;
      word-wrap: break-word;
      font-size: 1.6rem;
      overflow-x: hidden;
  }
  h1, h2, h3, h4, h5, .h0, .h1, .h2, .h3, .h4, .h5,button {
    font-family:"Zen Old Mincho", serif;
}
  img{
    width: auto;
    max-width: 100%;
    height: auto;
  }
  ul {
      -webkit-padding-start: 0px;
      -moz-padding-start: 0px;
      padding-start: 0px;
      padding: 0px;
      margin: 0px;
      list-style-type: none;
  }
  a {
      text-decoration: none;
      transition: 0.2s;
  }
  a:hover {
      opacity: 0.7;
  }
  
  .flex {
      display: -moz-flex;
      display: -webkit-flex;
      display: flex;
  }
.inner{
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
}
@media screen and (max-width:750px) {
  .inner{
    padding: 0 15px;
  }
}


/* /_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_
デバイス表示非表示
/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_*/

/* ヘッダー用 */
@media screen and (min-width: 981px) {
  .sp-header-only {
    display: none !important;
  }
}
@media screen and (max-width: 980px) {
  .pc-header-only {
    display: none !important;
  }
}
/* そのほか切り替え */
@media screen and (min-width: 751px) {
    .sp {
      display: none !important;
    }
    a[href*="tel:"] {
      pointer-events: none;
      cursor: default;
      text-decoration: none;
    }
  }
  @media screen and (max-width:750px) {
    .pc {
      display: none !important;
    }
  }

/* /_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_
ヘッダー
/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_*/
.header {
  position: relative;
  z-index: 1000;
}

/* PC版ヘッダー上部 */
.header-top {
  padding: 10px 0;
  border-bottom: 1px solid var(--graycolor);
}
.header-inner{
  padding: 0 10px;
}
.header-top-inner {
  justify-content: space-between;
  align-items: center;
}

.header-catch p {
  font-size: 1.4rem;
  font-size: clamp(1.3rem, 1vw, 2rem);
  color: var(--text-color);
  margin: 0;
  font-weight: normal;
}

.header-top-right {
  align-items: center;
  gap: 10px;
}

/* テキストリンク */
.header-links {
  align-items: center;
  gap: 25px;
  gap: clamp(15px, 1.95vw, 25px);
}

.header-links a {
  font-size: 1.4rem;
  font-size: clamp(1.3rem, 1vw, 2rem);
  color: var(--text-color);
  text-decoration: none!important;
  font-family: "Zen Old Mincho", serif;
}

/* サブメニュー */
.header-links li.has-submenu {
  position: relative;
}

.header-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  border: 1px solid var(--graycolor);
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  padding: 8px 0;
  margin-top: 5px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
  list-style: none;
}

.header-links li.has-submenu:hover .header-submenu {
  opacity: 1;
  visibility: visible;
}

.header-submenu li {
  margin: 0;
}

.header-submenu a {
  display: block;
  padding: 10px 20px;
  font-size: 1.4rem;
  font-size: clamp(1.3rem, 1vw, 2rem);
  color: var(--text-color);
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.header-submenu a:hover {
  background-color: var(--subbackground-color);
  opacity: 1;
}

/* PC版検索フォーム */
.header-search {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 10px;
}

.header-search input[type="text"] {
  width: 177px;
  padding: 8px 40px 8px 8px;
  border: 1px solid var(--graycolor);
  font-size: 1.3rem;
  background-color: white;
}

.header-search button {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.header-search button img {
  width: 20px;
  height: 20px;
}

/* アイコン類 */
.header-member,
.header-cart {
  position: relative;
}

.header-member img,
.header-cart img {
  width: 32px;
  height: 32px;
}

/* カート数表示 */
.fs-client-cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: var(--redcolor);
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 1rem;
  text-align: center;
  line-height: 18px;
  min-width: 18px;
}

/* SNSアイコン */
.header-sns {
  gap: 10px;
}

.header-sns img {
  width: 28px;
  height: 28px;
}

/* 下部ヘッダー（グローバルナビ） */
.header-main {
  background-color: white;
  border-bottom: 1px solid var(--graycolor);
  transition: all 0.3s ease;
}

.header-main.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-main-inner {
  align-items: stretch;
  width: 100%;
}
.header-logo {
  padding: 25px;
  min-width: 238px;
  min-width: clamp(200px, 17vw, 320px);
  text-align: center;
}

.header-logo img {
  max-height: 70px;
  width: auto;
}

/* グローバルナビゲーション */
nav.header-nav{
  width: 100%;
}
.header-nav-list {
  align-items: center;
  width: 100%;
  height: 100%;
}
.header-nav-list li{
  width: calc(100% / 5);
  height: 100%;
  border-right: 1px solid var(--graycolor);
}
.header-nav-list li:last-child{
  border-right: none;
}
.header-nav-list li:first-child{
  border-left: 1px solid var(--graycolor);
}

.header-nav-list a {
  font-size: 1.4rem;
  font-size: clamp(1.3rem, 1vw, 2rem);
  color: var(--text-color);
  text-decoration: none!important;
  position: relative;
  padding: 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-family: "Zen Old Mincho", serif;
}
/* スマホ版ヘッダー */
.header-sp {
  background-color: white;
}

/* 1段目：キャッチコピー */
.sp-catch {
  padding: 8px 0;
  text-align: center;
}

.sp-catch p {
  font-size: 1.2rem;
  font-size: clamp(1rem, 3.2vw, 1.2rem);
  color: var(--text-color);
  margin: 0;
  font-weight: normal;
}

/* 2段目：メイン機能アイコン */
.sp-icons {
  padding: 3px 0;
  border-bottom: 1px solid var(--graycolor);
}

/* スクロール時表示ロゴ */
.sp-sticky-logo {
  display: none;
  align-items: center;
}

.sp-sticky-logo img {
  max-height: 35px;
  width: auto;
}

.sp-sticky-logo.show {
  display: flex;
}

/* 2段目全体のレイアウト */
.sp-icons .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sp-icon-list {
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
  margin-left: auto;
}

.sp-icon-list img {
  width: 28px;
  height: 28px;
}

.sp-icon-list button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
li.sp-cart{
  position: relative;
}

/* ハンバーガーメニュー */
.hamburger {
  display: block;
  width: 28px;
  height: 20px;
  position: relative;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-color);
  position: absolute;
  transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 9px;
}

.hamburger span:nth-child(3) {
  top: 18px;
}

/* ハンバーガーメニューアクティブ状態 */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 9px;
}

/* 3段目：ロゴとSNS */
.sp-logo-sns {
  padding:5px 0;
  border-bottom: 1px solid var(--graycolor);
}

.sp-logo-sns-inner {
  justify-content: space-between;
  align-items: center;
}

.sp-logo img {
  max-height: 50px;
  width: auto;
}

.sp-sns {
  gap: 15px;
}

.sp-sns img {
  width: 24px;
  height: 24px;
}
.sp-sns a {
  display: flex;
  align-items: center;
}
/* 4段目：カテゴリリンク */
.sp-nav {

  /* padding: 10px 0; */
}

.sp-nav-list {
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  /* gap: 5px; */
}

.sp-nav-list li {
  width: calc((100% - 20px) / 5);
  text-align: center;
}

.sp-nav-list li:nth-child(4),
.sp-nav-list li:nth-child(5) {
  /* width: calc((100% - 5px) / 2);
  margin-top: 5px; */
}

.sp-nav-list a {
  font-size: 1.2rem;
  font-size: clamp(1rem, 3.2vw, 1.2rem);
  color: var(--text-color);
  font-weight: bold;
  text-decoration: none;
  display: block;
  padding: 8px 5px;
}

.sp-nav-list a:hover {
  color: var(--maincolor);
}

/* スマホ検索フォーム（ポップアップ） */
.sp-search-form {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: white;
  padding: 15px 0;
  border-bottom: 1px solid var(--graycolor);
  z-index: 1004;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.sp-search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.sp-search-wrapper input[type="text"] {
  width: 100%;
  padding: 12px 50px 12px 15px;
  border: 1px solid var(--graycolor);
  border-radius: 25px;
  font-size: 1.4rem;
  background-color: white;
}

.sp-search-wrapper button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.sp-search-wrapper button img {
  width: 24px;
  height: 24px;
}

/* スマホ版滑らか追従機能 */
.sp-sticky-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: white;
  transition: all 0.3s ease-out;
}

/* 追従状態 */
.sp-sticky-wrapper.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  transform: translateY(0);
}

/* ハンバーガーメニュー */
.hamburger-menu {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100% - 80px);
  background-color: white;
  overflow-y: auto;
  z-index: 1001;
  padding-top: 20px;
}

.hamburger-menu-inner {
  padding: 20px;
}

/* 1. カテゴリナビゲーション */
.hamburger-category {
  margin-bottom: 20px;
  border-bottom: 1px solid var(--graycolor);
  padding-bottom: 15px;
}

.hamburger-category-list {
  flex-wrap: wrap;
  gap: 8px;
}

.hamburger-category-list li {
  width: calc((100% - 16px) /2);
  text-align: center;
}

/* .hamburger-category-list li:nth-child(4),
.hamburger-category-list li:nth-child(5) {
  width: calc((100% - 8px) / 2);
  margin-top: 8px;
} */

.hamburger-category-list a {
  font-size: 1.2rem;
  font-size: clamp(1rem, 3.2vw, 1.2rem);
  color: var(--text-color);
  font-weight: bold;
  text-decoration: none;
  display: block;
  padding: 10px 5px;
  background-color: var(--subbackground-color);
  border-radius: 8px;
}

.hamburger-category-list a:hover {
  background-color: var(--maincolor);
  color: white;
}

/* 2. 検索フォーム */
.hamburger-search {
  margin-bottom: 20px;
  border-bottom: 1px solid var(--graycolor);
  padding-bottom: 15px;
}

.hamburger-search-form {
  position: relative;
  display: flex;
  align-items: center;
}

.hamburger-search-form input[type="text"] {
  width: 100%;
  padding: 12px 50px 12px 15px;
  border: 1px solid var(--graycolor);
  border-radius: 25px;
  font-size: 1.4rem;
  background-color: white;
}

.hamburger-search-form button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger-search-form button img {
  width: 24px;
  height: 24px;
}

/* 3. メインナビゲーション（2カラム） */
.hamburger-main-nav {
  margin-bottom: 20px;
  border-bottom: 1px solid var(--graycolor);
  padding-bottom: 15px;
}

.hamburger-main-nav-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.hamburger-main-nav-list li {
  border: 1px solid var(--graycolor);
  background-color: white;
}

.hamburger-main-nav-list a {
  font-size: 1.3rem;
  font-size: clamp(1.1rem, 3.5vw, 1.3rem);
  color: var(--text-color);
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 12px;
  background-color: white;
}

.hamburger-main-nav-list a:hover {
  background-color: var(--subbackground-color);
}

.hamburger-main-nav-list .arrow {
  color: var(--maincolor);
  font-weight: bold;
}

/* 4. バナーエリア */
.hamburger-banner {
  margin-bottom: 20px;
  border-bottom: 1px solid var(--graycolor);
  padding-bottom: 15px;
}

.hamburger-banner img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* 5. News Topics */
.hamburger-news {
  margin-bottom: 20px;
  border-bottom: 1px solid var(--graycolor);
  padding-bottom: 15px;
}

.hamburger-news h3 {
  font-size: 1.6rem;
  font-size: clamp(1.4rem, 4.3vw, 1.6rem);
  color: var(--text-color);
  font-weight: bold;
  margin-bottom: 10px;
  border-bottom: 2px solid var(--maincolor);
  padding-bottom: 5px;
}

.hamburger-news-list li {
  margin-bottom: 8px;
}

.hamburger-news-list a {
  text-decoration: none;
  color: var(--text-color);
  display: block;
  padding: 8px 0;
}

.hamburger-news-list .date {
  font-size: 1.1rem;
  color: var(--graycolor);
  margin-right: 8px;
}

.hamburger-news-list .title {
  font-size: 1.2rem;
  font-size: clamp(1.1rem, 3.2vw, 1.2rem);
  line-height: 1.4;
}

.hamburger-news-list a:hover {
  background-color: var(--subbackground-color);
  border-radius: 4px;
}

.news-more {
  text-align: center;
  margin-top: 15px;
}

.news-more a {
  font-size: 1.3rem;
  color: var(--maincolor);
  text-decoration: none;
  padding: 8px 20px;
  border: 1px solid var(--maincolor);
  border-radius: 20px;
  display: inline-block;
}

.news-more a:hover {
  background-color: var(--maincolor);
  color: white;
}

/* 6. フッターリンク */
.hamburger-footer-links {
  margin-bottom: 20px;
  border-bottom: 1px solid var(--graycolor);
  padding-bottom: 15px;
}

.hamburger-footer-list li {
  border-bottom: 1px solid #f0f0f0;
}

.hamburger-footer-list li:last-child {
  border-bottom: none;
}

.hamburger-footer-list a {
  font-size: 1.3rem;
  color: var(--text-color);
  text-decoration: none;
  display: block;
  padding: 12px 0;
}

.hamburger-footer-list a:hover {
  color: var(--maincolor);
  background-color: var(--subbackground-color);
}

/* 7. SNSアイコン */
.hamburger-sns {
  text-align: center;
}

.hamburger-sns h3 {
  font-size: 1.4rem;
  font-size: clamp(1.2rem, 3.7vw, 1.4rem);
  color: var(--text-color);
  font-weight: bold;
  margin-bottom: 15px;
}

.hamburger-sns-list {
  justify-content: center;
  gap: 20px;
}

.hamburger-sns-list img {
  width: 32px;
  height: 32px;
}

/* /_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_
セクションタイトル（共通）
/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_*/
.section-title {
    text-align: center;
    margin-bottom: 60px;
    margin-bottom: clamp(40px, 4.29vw, 60px);
}

.section-title-main {
    font-size: 3rem;
    font-size: clamp(2.4rem, 2.14vw, 3rem);
    color: var(--text-color);
    font-weight: normal;
    margin-bottom: 8px;
    line-height: 1.3;
}

.section-title-sub {
    font-size: 1.4rem;
    font-size: clamp(1.2rem, 1vw, 1.4rem);
    color: #D1BFB4;
    font-weight: normal;
    margin-bottom: 0;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* /_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_
フッター
/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_*/
.footer {
  background-color: white;
  margin-top: auto;
}

/* フッター本体 */
.footer-main {
  background-color: white;
  padding: 40px 0;
  /* border-top: 1px solid var(--graycolor); */
}

.footer-main-inner {
  align-items: flex-start;
  gap: 60px;
  gap: clamp(40px, 4.7vw, 60px);
}

/* 左側：会社情報 */
.footer-company {
  flex-shrink: 0;
  min-width: 280px;
  min-width: clamp(250px, 21.9vw, 280px);
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  max-height: 60px;
  width: auto;
}

.footer-contact {
  margin-bottom: 25px;
}

.footer-contact p {
  font-size: 1.4rem;
  font-size: clamp(1.3rem, 1.1vw, 1.4rem);
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 2px;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-legal a {
  font-size: 1.3rem;
  font-size: clamp(1.2rem, 1.02vw, 1.3rem);
  color: var(--text-color);
  text-decoration: none!important;
  font-family: "Zen Old Mincho", serif;
}

.footer-legal a:hover {
  color: var(--maincolor);
  text-decoration: underline;
}

/* 右側：サイトマップ */
.footer-sitemap {
  display: flex;
  flex: 1;
  gap: 30px;
  gap: clamp(20px, 2.3vw, 30px);
}

.footer-column {
  flex: 1;
  min-width: 0;
}

.footer-column h3 {
  font-size: 1.6rem;
  font-size: clamp(1.4rem, 1.25vw, 1.6rem);
  color: var(--text-color);
  margin-bottom: 15px;
  font-weight: normal;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}




.footer-links a {
  font-size: 1.6rem;
  font-size: clamp(1.4rem, 1.14vw, 1.6rem);
  color: var(--text-color);
  text-decoration: none!important;
  display: block;
  padding: 5px 0;
  transition: color 0.2s ease;
  font-family: "Zen Old Mincho", serif;
}

/* カテゴリブロックの2サブカラム */
.footer-category-columns {
  display: flex;
  gap: 3px;
}

.footer-category-sub {
  flex: 1;
  gap: 3px;
}

/* カテゴリリンクは14pxベース */
.footer-category-sub.footer-links a {
  font-size: 1.4rem;
  font-size: clamp(1.2rem, 1vw, 1.4rem);
  color: #999999;
}


/* コピーライトバー */
.footer-copyright {
  padding: 15px 0;
}

.footer-copyright .inner {
  text-align: right;
}

.footer-copyright p {
  font-size: 1.3rem;
  font-size: clamp(1.2rem, 1.02vw, 1.3rem);
  color: var(--text-color);
  margin: 0;
  font-family:  "Arial",Hiragino Sans, "ヒラギノ角ゴシック", Hiragino Kaku Gothic ProN, "ヒラギノ角ゴ ProN W3", Roboto, "Droid Sans", YuGothic, "游ゴシック", Meiryo, "メイリオ", Verdana, "ＭＳ Ｐゴシック", sans-serif;
}

/* スマホ版フッター */
@media screen and (max-width: 750px) {
  .footer-main {
    padding: 30px 0;
  }
  
  .footer-main-inner {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-company {
    min-width: 100%;
    text-align: center;
  }
  
  .footer-sitemap {
    flex-direction: column;
    gap: 25px;
    width: 100%;
  }
  
  .footer-column {
    text-align: left;
  }
  
  .footer-column h3 {
    font-size: 1.5rem;
    font-size: clamp(1.4rem, 4vw, 1.5rem);
    margin-bottom: 12px;
    padding-bottom: 6px;
  }
  
  .footer-links-spacer {
    margin-top: 0;
  }
  
  .footer-links {
    gap: 8px;
  }
  
  .footer-links a {
    font-size: 1.6rem;
    font-size: clamp(1.4rem, 4.3vw, 1.6rem);
    padding: 4px 0;
  }
  
  /* スマホ版 カテゴリブロック縦積み */
  .footer-category-columns {
    gap: 15px;
  }
  
  /* スマホ版 カテゴリリンクは14pxベース */
  .footer-category-sub .footer-links a {
    font-size: 1.4rem;
    font-size: clamp(1.2rem, 3.7vw, 1.4rem);
  }
  
  .footer-contact p {
    font-size: 1.3rem;
    font-size: clamp(1.2rem, 3.5vw, 1.3rem);
    text-align: center;
  }
  
  .footer-legal {
    flex-direction: row;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
  }
  
  .footer-copyright {
    padding: 12px 0;
  }
  
  .footer-copyright .inner {
    text-align: center;
  }
  
  .footer-copyright p {
    font-size: 1.2rem;
    font-size: clamp(1.1rem, 3.2vw, 1.2rem);
  }
}

/* /_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_
カート
/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_*/

/* 打ち消し */
.fs-c-cartTable__headerCell {
  background-color: #FFF;
  border: none;
}
.fs-c-cartTableContainer {
  border: none;
  padding: 0;
}
.fs-c-cartTable__headerCell, .fs-c-cartTable__dataCell {
  border: none;
  padding: 0;
}
.fs-c-cartTable__product{
  display: flex;
}
/*カスタマイズ*/
.fs-c-cartTable__dataCell{
  padding: 30px 23px;
  border-bottom: 1px solid #ccc;
}
.fs-c-cartTable__headerCell{
  padding: 5px 0;
  border-bottom: 1px solid #ccc;
}

.fs-c-cartTable__product > .fs-c-cartTable__productImage {
  min-width: 110px;
  padding: 0;
  font-size: 0;
}
.fs-c-listedProductName a {
  color: var(--text-color);
  font-size: 1.6rem;
}
.fs-c-productPrice:not(.fs-c-productPrice--listed) .fs-c-productPrice__main__price{
  color: var(--text-color);
  font-size: 1.6rem;
}
.fs-c-cartTable__quantity{
  max-width: 100%;
}
.fs-c-price__price {
  font-size: 1.6rem;
  letter-spacing: 0.2em;
}

/* 総合計 */
#fs_ShoppingCart .fs-c-button--primary{
  min-width: 100%;
  padding: 1.3em 1.6em;
  border-radius: 5px;
}
#fs_ShoppingCart .fs-c-button--secondary {
  min-width: 100%;
  padding: 1.3em 1.6em;
  border-radius: 5px;
}
#fs_ShoppingCart .fs-c-button--standard {
  background-color: #888888;
  border: none;
  font-size: 1.4rem;
  color: #FFF;
  padding: 1.3em 1.6em;
  max-width: 250px;
  width: 100%;
  border-radius: 5px;
}
#fs_ShoppingCart .fs-p-announcement {
  margin: 30px 0;
}
#fs_ShoppingCart .fs-p-announcement__title{
  font-family: "Zen Old Mincho", serif;
}
#fs_ShoppingCart .fs-p-announcement a {
  color: var(--text-color);
  text-decoration: underline;
}
.fs-c-cartTable__salesPeriod{
  font-size: 1.2rem;
    margin: 5px 0;
}
@media screen and (min-width: 601px) {
td.fs-c-cartTable__dataCell.fs-c-cartTable__dataCell--product {
    width: 45%;
    padding-left: 0!important;
}
td.fs-c-cartTable__dataCell.fs-c-cartTable__dataCell--quantity {
  width: 18%;
}
td.fs-c-cartTable__dataCell.fs-c-cartTable__dataCell--subtotal {
  width: 20%;
}
td.fs-c-cartTable__dataCell.fs-c-cartTable__dataCell--point {
  width: 10%;
}
td.fs-c-cartTable__dataCell.fs-c-cartTable__dataCell--action{
  padding-right: 0!important;
  width: 7%;
}
}
@media screen and (min-width: 960px) {
  .fs-body-cart .fs-l-cart__sideColumn{
    width: 290px;
        background: #F7F7F7;
  }
  .fs-body-cart .fs-l-cart__contentsArea.is-linkedServiceLoginAvailable{
    grid-template-columns: 1fr 290px;
  }
}
@media screen and (max-width: 600px) {
  .fs-c-cartTable__dataCell--action{
    grid-row: 4;
    grid-column: 2 / 3;
        border: none !important;
  }
  .fs-c-cartTable__dataCell--quantity{
    grid-column: 1 / 3;
    
  }
  .fs-c-cartTable__dataCell--point{
    grid-column: 1 / 2;
    border: none !important;
  }
  .fs-c-cartTable__dataCell--product {
    padding-right: 0;
    padding-left: 0;
  }
  #fs_ShoppingCart select{
    min-width: 100px;
  }
  .fs-c-cartTable__dataCell--quantity::before,.fs-c-cartTable__dataCell--point::before,.fs-c-cartTable__dataCell--subtotal::before {
    font-size: 1.5rem;
}
}