/* ==========================================
  デフォルトCSS
========================================== */
/* スムーススクロール */
html {
  scroll-behavior: smooth;
}
:target {
  scroll-margin-top: 60px;
}

/* pcの電話番号発信対応 */
@media screen and (min-width:768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-size: cover;
  shape-margin: 0.75rem;
}

input {
  padding: 4px 8px;
  background-color: var(--white);
}

/* ==========================================
  共通
========================================== */
body {
  font-family: var(--body-font-family);
  font-size: var(--body-font-size-sp);
  font-weight: var(--body-font-weight);
  color: var(--body-font-color);
  line-height: var(--body-line-height);
}

@media screen and (min-width:768px) {
  body {
    font-size: var(--body-font-size-pc);
  }
}

a {
  transition: opacity .2s ease-in-out;
}

a:hover {
  text-decoration: none;
  color: inherit;
  opacity: .75;
}

a:visited {
  color: unset;
}

.fs-l-main {
  display: block;
  padding: 0;
  max-width: none;
}

/* 強制非表示 */
.display-none {
  display: none !important;
}

/* PC,SPのみ表示 */
.pc-only {
  display: none;
}

@media screen and (min-width:768px) {
  .pc-only {
    display: block;
  }
}

.sp-only {
  display: block;
}

@media screen and (min-width:768px) {
  .sp-only {
    display: none;
  }
}


/* 共通インナー */
.common-inner {
  padding: 0 15px;
  width: 100%;
}
@media screen and (min-width:768px) {
  .common-inner {
    padding: 0 20px;
    max-width: calc(var(--common-inner-width) + 40px);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.common-inner--wide {
  padding: 0;
  max-width: var(--common-inner-width);
}

.common-inner--narrow {
  max-width: calc( var(--common-inner-narrow-width) + 40px);
}

.common-inner--full-wide {
  padding: 0;
  max-width: none;
}

.common-inner--topics {
  padding: 0;
}

@media screen and (min-width:768px) {
  .common-inner--topics {
    padding: 0 20px;
  }
}

/* 共通下層ページ上下余白 */
.common-page-wrapper {
  margin-top: 40px;
  margin-bottom: 40px;
}

@media screen and (min-width:768px) {
  .common-page-wrapper {
    margin-top: 70px;
    margin-bottom: 70px;
  }
}

/* 共通セクション 上下余白 */
.common-section {
  width: 100%;
  padding-top: calc(var(--parts-padding-top) * 0.8);
  padding-bottom: calc(var(--parts-padding-bottom) * 0.8);
}

@media screen and (min-width:768px) {
  .common-section {
    padding-top: var(--parts-padding-top);
    padding-bottom: var(--parts-padding-bottom);
  }
}

/* 共通セクションタイトル */
.common-section-title {
  width: 100%;
  text-align: center;
  color: var(--common-title-font-color);
  margin-left: auto;
  margin-right: auto;
}

.common-section-title__title {
  font-size: var(--common-title-font-size);
  font-weight: bold;
  text-transform: uppercase;
  margin: 0;
}

.common-section-title__sub-title {
  margin-top: 8px;
  margin-bottom: 0;
}

@media screen and (min-width:768px) {
  .common-section-title__sub-title {
    margin-top: 6px;
  }
}

/* 共通ボタン */
.common-button,
.fs-c-button--primary,
.fs-c-button--standard
 {
  width: fit-content;
  font-size: calc(var(--common-button-font-size) * 0.75);
  background-color: var(--common-button-bg-color);
  color: var(--body-font-color) !important;
  font-weight: bold;
  text-transform: uppercase;
  display: grid;
  place-items: center;
  padding: 22px 32px;
  min-width: 200px;
  border-radius: 4px;
  box-shadow: 0 3px 0 0 rgba(0, 0, 0, 0.5);
}

@media screen and (min-width:768px) {
  .common-button,
  .fs-c-button--primary,
  .fs-c-button--standard
  {
    font-size: var(--common-button-font-size);
  }
}

.common-button:active
.fs-c-button--primary:active,
.fs-c-button--standard:active  {
  transform: translateY(3px);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}

/* ==========================================
  ヘッダー
========================================== */
.header-wrapper {

}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--white);
}

@media screen and (min-width:768px) {
  .header {
    position: relative;
  }
}

.header__top {
  padding-top: 8px;
  padding-bottom: 8px;
}

@media screen and (min-width:768px) {
  .header__top {
    padding-top: 14px;
    padding-bottom: 14px;
  }
}

.header__top .header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  width: 167px;
  margin-left: 0;
  margin-right: auto;
}

@media screen and (min-width:768px) {
  .header__logo {
    width: 235px;
  }
}

.header__logo-link {
  display: inline-block;
  width: 100%;
}

.header__logo img {
  width: 100%;
}

/* ハンバーガー（SP） */
.header__hamburger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 32px;
  height: 32px;
  padding: 4px;
  border: none;
  background: none;
}

.header__hamburger-line {
  width: 100%;
  height: 2px;
  background: #333;
}

/* 検索フォーム */
.header__search {}

.search__form {
  position: relative;
  width: 100%;
}

@media screen and (min-width:768px) {
  .search__form {
    margin-right: 18px;
    width: 220px;
  }
}

@media screen and (min-width:1024px) {
  .search__form {
    margin-right: 32px;
    width: 300px;
  }
}

.search__input {
  border: 1px solid var(--gray);
  padding: 6px 10px;
  width: 100%;
}

@media screen and (min-width:768px) {
  .search__input {
    padding: 8px 12px;
  }
}

.search__submit {
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
  background: url("../images/common/icon_search.svg");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
}

@media screen and (min-width:768px) {
  .search__submit {
    right: 18px;
    width: 20px;
    height: 20px;
  }
}

/* 右アイコン */
.header__icons {
  display: flex;
  gap: 8px;
}

.header__icon {
  width: 30px;
  text-align: center;

}

@media screen and (min-width:768px) {
  .header__icon {
    width: 54px;
  }
}

.header__icon-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: 0;
}

@media screen and (min-width:768px) {
  .header__icon-image {
    padding: 10px;
  }
}

.header__icon-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header__icon-text {
  font-size: 10px;
  display: none;

}

@media screen and (min-width:768px) {
  .header__icon-text {
    display: block;
  }
}

.header__bottom {
  border-top: 1px solid var(--gray);
  padding-top: 8px;
  padding-bottom: 8px;
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: var(--white);
  position: sticky;
}

/*  SPナビ */

.header__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.sp-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: #fff;
  transform: translateX(-100%);
  transition: transform 0.25s ease;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.2);
}

.sp-nav__inner {
  padding: 10px;
}

.sp-nav__icons {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sp-nav__icon {
  width: 54px;
}

.sp-nav__icon-image {
  padding: 10px;
  width: 100%;
}

.sp-nav__icon-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sp-nav__icon-text {
  text-align: center;
  font-size: 9px;
}

.sp-nav__search {
  margin-top: 12px;
}

.sp-nav__menu {
  margin-top: 13px;
}

.sp-nav__menu-title {
  background-color: #f5f5f5;
  text-transform: uppercase;
  font-size: 24px;
  font-weight: bold;
  padding: 10px 10px;
  margin-left: -10px;
  margin-right: -10px;
  width: calc(100% + 20px);
}

/* ベースリスト */
.sp-nav__items {}

.sp-nav__item {}

/* トリガー（開閉ボタン） */
.sp-nav__trigger {
  width: 100%;
  padding: 12px 0;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e5e5e5;
  text-transform: uppercase;
}

/* レベル別に少しインデント */
.sp-nav__trigger--level2 {
  padding-left: 24px;
}

.sp-nav__items--level3 .sp-nav__link {
  padding-left: 40px;
}

/* 3階層目のリンク */
.sp-nav__link {
  display: block;
  padding: 8px 16px;
  font-size: 13px;
  text-decoration: none;
  color: #333;
}

/* ▼アイコン */
.sp-nav__accordion-icon {
  margin-right: 10px;
}

.sp-nav__accordion-icon::before {
  content: "▼";
  font-size: 10px;
}

.sp-nav__arrow-icon {
  margin-right: 10px;
}

.sp-nav__arrow-icon::before {
  content: "▶";
  font-size: 10px;
}

/* 折り畳み部分はデフォルト非表示 */
.sp-nav__items--level2,
.sp-nav__items--level3 {
  display: none;
}

/* 親 .sp-nav__item に open が付いたら子リストを表示 */
.sp-nav__item--open>.sp-nav__items {
  display: block;
}

/* open のときはアイコンを▲に変更 */
.sp-nav__item--open>.sp-nav__trigger .sp-nav__accordion-icon::before {
  content: "▲";
}


/* 画面右上の×ボタン */
.sp-nav__close {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 9999;
  width: 50px;
  height: 50px;
  font-size: 80px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

/* SPナビ open 状態 */
.header--nav-open .sp-nav {
  transform: translateX(0);
}

.header--nav-open .header__overlay {
  opacity: 1;
  pointer-events: auto;
}

.header--nav-open .sp-nav__close {
  opacity: 1;
  pointer-events: auto;
}

/* PCナビ（pc-nav） */
@media (min-width: 768px) {

  .header__hamburger,
  .sp-nav,
  .header__overlay,
  .sp-nav__close {
    display: none;
  }

  .pc-nav {
    position: relative;
  }

  .pc-nav__list {
    display: flex;
    align-items: center;
    gap: 2vw;
  }

  .pc-nav__item {}

  .pc-nav__link {
    position: relative;
    display: block;
    padding: 8px 0;
    font-weight: bold;
    text-decoration: none;
    position: relative;
  }

  .pc-nav__link::before {
    background: var(--accent1);
    content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    transform-origin: center top;
    transform: scale(0, 1);
    transition: transform .2s;
  }

  .pc-nav__link:hover::before {
    transform-origin: center top;
    transform: scale(.5, 1);
  }

  /* メガメニュー本体 */
  .pc-nav__mega {
    position: absolute;
    left: 0;
    top: calc(100% + 8px);
    background: var(--white);
    padding: 30px 20px;
    display: none;
  }

  .pc-nav__mega-inner {
    display: flex;
    justify-content: space-between;
    gap: 2%;
  }

  .pc-nav__mega-column {
    display: flex;
    flex-direction: column;
  }

  .pc-nav__mega-column--1 {
    width: 43%;
    flex-shrink: 0;
  }

  .pc-nav__mega-title {
    font-weight: bold;
    text-align: center;
    height: 52px;
  }

  .pc-nav__mega-items {
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 10px;
    row-gap: 10px;
  }

  .pc-nav__mega-items--1column {
    grid-template-columns: 1fr;
  }

  .pc-nav__mega-item {
    width: 100%;
    aspect-ratio: 130 / 86;
    border: 1px solid var(--gray);
  }

  .pc-nav__mega-item--wide {
    aspect-ratio: 210 / 50;
  }

  .pc-nav__mega-link {
    display: block;
    width: 100%;
    height: 100%;
  }

  .pc-nav__mega-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* 商品だけホバーでメガメニュー展開 */
  .pc-nav__item--has-mega:hover>.pc-nav__mega,
  .pc-nav__item--has-mega:focus-within>.pc-nav__mega {
    display: block;
  }
}

/* カートの商品点数 */
.cart-icon {
  position: relative;
}

.cart-icon .fs-client-cart-count {
  position: absolute;
  aspect-ratio: 1 / 1;
  background-color: var(--accent1);
  color: var(--white);
  font-size: 12px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 0;
  top: -8px;
  right: -10px;
  padding: 6px;
}

@media screen and (min-width:768px) {
  .cart-icon .fs-client-cart-count {
    font-size: 16px;
    top: 0px;
    right: 0px;
  }
}

.cart-icon--sp .fs-client-cart-count {
  font-size: 16px;
  top: 0px;
  right: 0px;
}

/* メッセージバー */
.message-bar {
  padding-top: 8px;
  padding-bottom: 8px;
}

.message-bar--1 {
  background-color: var(--accent1);
}

.message-bar--2 {
  background-color: var(--accent2);
}

.message-bar__text {
  font-weight: bold;
  color: var(--white);
}




/* ==========================================
  フッター
========================================== */
.footer {
  background: var(--accent1);
  padding: 32px 15px 10px;
}

.footer__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 400px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  gap: 20px;
}

@media screen and (min-width:768px) {
  .footer__wrapper {
    max-width: 1200px;
    flex-direction: row-reverse;
  }
}

/* カレンダーデザイン */
.footer__calendar {
  min-height: 290px;
  max-width: 290px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width:768px) {
  .footer__calendar {
    max-width: none;
  }
}

#footer-calendar .fc-daygrid-day-events {
  display: none;
}

#footer-calendar .mini-calendar .fc-header-toolbar {
  gap: 18px;
}

#footer-calendar .fc-daygrid-day-top {
  justify-content: center;
}

/* PCは横並び、SPは1つだけ見える想定 */
.calendar-wrap {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.mini-calendar {
  width: 268px;
  background: #ffffff;
  border-radius: 4px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
  padding: 4px 4px 8px;
}

.mini-calendar .fc {
  font-size: 12px;
}

.mini-calendar .fc-header-toolbar {
  justify-content: center;
  margin-bottom: 4px;
}

.mini-calendar .fc-toolbar-title {
  font-size: 14px;
  font-weight: 600;
}

.mini-calendar .fc-daygrid-day-frame {
  padding: 4px 0 2px;
}

/* 日付数字 */
.mini-calendar .fc-daygrid-day-number {
  font-size: 12px;
}

.holiday-number {
  background: #DFE4EB;
  color: #333;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* SP用：2つ目のカレンダーを隠すだけにしても良いが、
   JS側で表示/非表示を切り替えているので必須ではない */
@media (max-width: 767px) {
  .calendar-wrap {
    justify-content: center;
  }
}

.footer__calendar-memo {
  text-align: right;
  color: var(--white);
  margin-top: 10px;

}

.footer__calendar-memo span {
  position: relative;
}

.footer__calendar-memo span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -20px;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
  width: 16px;
  height: 16px;
  background-color: #DFE4EB;
  border-radius: 999px;
}

@media screen and (min-width:768px) {
  .footer__calendar-memo span::before {
    width: 18px;
    height: 18px;
    left: -22px;
  }
}

/* カレンダーここまで */

.footer__content-wrapper {
  color: var(--white);
}

.footer__logo {
  max-width: 344px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.footer__logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media screen and (min-width:768px) {
  .footer__logo {
    margin-left: 0;
  }
}

.footer__nav-wrapper {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media screen and (min-width:768px) {
  .footer__nav-wrapper {
    margin-top: 24px;
    flex-direction: row;
  }
}

.footer__nav {}

.footer__nav-title {
  text-transform: uppercase;
}

.footer__nav-items-wrapper {
  display: flex;
  flex-direction: row;
  margin-top: 8px;
  gap: 12px;
}

@media screen and (min-width:768px) {
  .footer__nav-items-wrapper {}
}

.footer__nav-items {
  display: flex;
  flex-direction: column;
}

@media screen and (min-width:768px) {
  .footer__nav-items {}
}

.footer__nav-item {}

.footer__sns-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  background-color: var(--white);
  width: fit-content;
  padding: 8px;
  margin-inline: auto;
}

@media screen and (min-width:768px) {
  .footer__sns-wrapper {
    margin-inline: initial;
    margin-top: 24px;
  }
}

.footer__sns {
  width: 32px;
  height: 32px;
}

@media screen and (min-width:768px) {
  .footer__sns {
    width: 40px;
    height: 40px;
  }
}

.footer__sns a {
  width: 100%;
  height: 100%;
  display: block;
}

.footer__sns img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer__copyright {
  text-align: center;
  font-size: 10px;
  margin-top: 24px;
  color: var(--white);
}

/* ==========================================
  下層ページタイトル
========================================== */
.page-title {
  padding: 60px 15px;
  background-color: var(--accent1);
}

.page-title__title {
  font-size: 30px;
  font-weight: bold;
  color: var(--white);
  text-align: center;
}

@media screen and (min-width:768px) {
  .page-title__title {
    font-size: 38px;
  }
}
/* ==========================================
  パンくずリスト
========================================== */
.fs-c-breadcrumb {
  padding: 10px 0;
  font-size: 14px;
}

/* ==========================================
  カテゴリータブ category-tab
========================================== */

.category-tab {

}

/* もともとのラジオ用。不要なら削除してOK */
.category-tab__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* タブ部分 */
.category-tab__list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  align-items: center;
  border-bottom: 1px solid var(--gray);
}

@media (min-width: 768px) {
  .category-tab__list {
    gap: 20px;
  }
}

/* 非アクティブタブ */
.category-tab__button {
  cursor: pointer;
  background: #e5e5e5;
  color: #222;
  height: 40px;
  padding: 0 4px;
  border-radius: 16px 16px 0 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  width: 100%;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.04) inset;
  border: none;
  transition:
    background-color 0.2s ease-in-out,
    color 0.2s ease,
    transform 0.06s ease,
    filter 0.2s ease-in-out;
}

@media screen and (min-width: 768px) {
  .category-tab__button {
    font-size: 16px;
    height: 56px;
  }
}

.category-tab__button:hover {
  filter: brightness(0.97);
}

.category-tab__label {}

/* アクティブタブ（ラジオ:checked ではなく .is-active で制御） */
.category-tab__button.is-active {
  background: #c13a33;
  color: #fff;
}

/* パネル全体 */
.category-tab__panels {
  margin-top: 40px;
  max-width: calc(var(--common-inner-narrow-width) + 40px);
  width: 100%;
  padding: 0 15px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 768px) {
  .category-tab__panels {
    margin-top: 60px;
    padding: 0 30px;
  }
}

/* 各パネル */
.category-tab__panel {
  display: none;
  width: 100%;
}

/* アクティブパネル */
.category-tab__panel.is-active {
  display: block;
}


/* コンテンツ */
/* 矢印を消したいときに付与する修飾クラス */
.category-content--hide-arrows .splide__arrows {
  display: none;
}

.category-content {
  width: 100%;
}

.category-content__slider {}

.category-content__track {}

.category-content__list {}

.category-content__slide {}

.category-content__slide-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 40px;
  row-gap: 25px;
}

.category-content__slide-item {
  width: 100%;
  border-bottom: 1px solid var(--gray);
  padding-bottom: 10px;
}

@media screen and (min-width:768px) {
  .category-content__slide-item {
    padding-bottom: 15px;
  }
}

.category-content__slide-link {
  display: inline-block;
  width: 100%;
}

.category-content__image {
  width: 100%;
  aspect-ratio: 1 / 1;
}

.category-content__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-content__item-title {
  margin-top: 10px;
  text-align: center;
}

.category-content__slider .splide__arrow {
  background-color: transparent;
  position: absolute;
  width: 21px;
  height: 42px;
}

@media screen and (min-width:768px) {
  .category-content__slider .splide__arrow {
    width: 30px;
    height: 60px;
  }
}

.category-content__slider .splide__arrow svg {
  display: none;
}



.category-content__slider .splide__arrow--next {
  right: -24px;
}

@media screen and (min-width:768px) {
  .category-content__slider .splide__arrow--next {
    right: -5%;
  }
}

.category-content__slider .splide__arrow--prev {
  left: -24px;
}

@media screen and (min-width:768px) {
  .category-content__slider .splide__arrow--prev {
    left: -5%;
  }
}

.category-content__slider .splide__arrow--prev::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  /* 線の長さ */
  height: 28px;
  /* 線の長さ */
  border-left: 5px solid #bfbfbf;
  /* 線の太さ & 色 */
  border-bottom: 5px solid #bfbfbf;
  transform: translate(-30%, -50%) rotate(45deg);
  border-radius: 2px;
  /* 角を少し丸くする */
}

@media screen and (min-width:768px) {
  .category-content__slider .splide__arrow--prev::before {
    width: 40px;
    height: 40px;
    border-left: 8px solid #bfbfbf;
    /* 線の太さ & 色 */
    border-bottom: 8px solid #bfbfbf;
  }
}

.category-content__slider .splide__arrow--next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  /* 線の長さ */
  height: 28px;
  /* 線の長さ */
  border-right: 4px solid #bfbfbf;
  /* 線の太さ & 色 */
  border-top: 4px solid #bfbfbf;
  transform: translate(-70%, -50%) rotate(45deg);
  border-radius: 2px;
  /* 角を少し丸くする */
}

@media screen and (min-width:768px) {
  .category-content__slider .splide__arrow--next::before {
    width: 40px;
    height: 40px;
    border-right: 8px solid #bfbfbf;
    /* 線の太さ & 色 */
    border-top: 8px solid #bfbfbf;
  }
}

/* サブカテゴリ */
.category-sub-tags {
  margin: 0 auto;
}

/* タブ列 */
.category-sub-tags__list {
  display: flex;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 8px;
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

@media screen and (min-width:768px) {
  .category-sub-tags__list {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* 各タブ */
.category-sub-tags__item {
  flex: 1 1 calc(25% - 8px);
}

.category-sub-tags__button {
  width: 100%;
  display: block;
  padding: 10px 12px;
  border: none;
  background-color: #f3f3f3;
  color: #333;
  text-align: center;
  font-size: 12px;
  cursor: pointer;
}

@media screen and (min-width:768px) {
  .category-sub-tags__button {
    font-size: 14px;
  }
}

/* アクティブ状態 */
.category-sub-tags__item.is-active .category-sub-tags__button {
  background-color: var(--black);
  color: #fff;
}

/* パネル */
.category-sub-tags__contents {}

.category-sub-tags__panel {
  display: none;
}

.category-sub-tags__panel.is-active {
  display: block;
}




/* ==========================================
  ランキング RANKING
========================================== */
.ranking {
  width: 100%;
}



/* ==========================================
  ピックアップ PICK UP
========================================== */
.pickup {

}

.pickup__items {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media screen and (min-width:768px) {
  .pickup__items {
    margin-top: 20px;
    gap: 12px;
  }
}

.pickup__item {
  width: 100%;
  position: relative;
  height: 330px;

}

.pickup__link {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.pickup__bg-image {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  z-index: -1;
  width: 100%;
  height: 100%;
}

.pickup__bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pickup__contents {
  max-width: 430px;
  width: 100%;
  margin-left: 0;
  margin-right: auto;
  padding: 0 32px;
}

@media screen and (min-width:768px) {
  .pickup__contents {
    padding: 0 46px;
  }
}

.pickup__tags {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.pickup__tag {
  background-color: var(--accent2);
  color: var(--white);
  font-size: 10px;
  padding: 2px 8px;
}

.pickup__contents-title {
  margin-top: 9px;
  font-size: 20px;
  font-weight: bold;
}

@media screen and (min-width:768px) {
  .pickup__contents-title {
    margin-top: 12px;
    font-size: 24px;
  }
}

.pickup__contents-text {
  margin-top: 9px;
}

@media screen and (min-width:768px) {
  .pickup__contents-text {
    margin-top: 12px;
  }
}

/* ==========================================
  トピックス TOPICS
========================================== */
.topics {
  width: 100%;
}

.topics__tab-list {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 600px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width:768px) {
  .topics__tab-list {
    margin-top: 20px;
    gap: 10px;
  }
}

.topics__tab {
  color: var(--black);
  background-color: #f3f3f3;
  padding: 12px 25px;
  cursor: pointer;
}

.topics__tab.is-active {
  color: var(--white);
  background-color: #474747;
}

.topics__panels {
  margin-top: 24px;
}

@media screen and (min-width:768px) {
  .topics__panels {
    margin-top: 30px;
  }
}

.topics__panel {
  display: none;

}

@media screen and (min-width:768px) {
  .topics__panel {

  }
}

.topics__panel.is-active {
  display: block;
}

.topics__items {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 3.3%;
  row-gap: 24px;
  max-width: 500px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width:768px) {
  .topics__items{
    max-width: 880px;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
  }
}

.topics__image {
  width: 100%;
  aspect-ratio: 420 / 236;
}

.topics__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.topics__content {
  padding: 12px 20px 20px 20px;
}

@media screen and (min-width:768px) {
  .topics__content {
    padding: 16px 0 20px 0;
  }
}

.topics__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.topics__tag {
  color: var(--white);
  background-color: #474747;
  padding: 4px 10px;
  font-size: 10px;
}

.topics__title {
  margin-top: 12px;
}

@media screen and (min-width:768px) {
  .topics__title {
    margin-top: 16px;
  }
}

.topics__common-button {
  margin-top: 24px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width:768px) {
  .topics__common-button {
    margin-top: 30px;
  }
}

/* ==========================================
  お知らせ INFORMATION
========================================== */
.information {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.info__items {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

@media screen and (min-width:768px) {
  .info__items {
    margin-top: 20px;
  }
}

.info__item {
  border-bottom: 1px solid var(--gray);
}

.info__link {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
  gap: 12px;
}

@media screen and (min-width:768px) {
  .info__link {
    flex-direction: row;
    align-items: flex-start;
    padding: 16px 0;
    gap: 20px;
  }
}

.info__date {
  font-weight: bold;
  width: 83px;
  flex-shrink: 0;
}

.info__common-button {
  margin-top: 24px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width:768px) {
  .info__common-button {
    margin-top: 30px;
  }
}

/* ==========================================
  Instagram
========================================== */
.instagram {
  max-width: 620px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: calc(var(--parts-padding-top) * 0.75);
  padding-bottom: calc(var(--parts-padding-bottom) * 0.75);
}

@media screen and (min-width:768px) {
  .instagram {
    padding-top: var(--parts-padding-top);
    padding-bottom: var(--parts-padding-bottom);
  }
}

.instagram__content {}

.instagram__common-button {
  margin-top: 24px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width:768px) {
  .instagram__common-button {
    margin-top: 30px;
  }
}

/* ==========================================
  ショッピングガイド SHOPPING GUIDE
========================================== */
.guide {
  margin-top: 8px;
  position: relative;
}

@media screen and (min-width:768px) {
  .guide {
    margin-top: 10px;
  }
}

.guide::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  top: 0;
  bottom: 0;
  background: #f5f7fa;
  z-index: -1;
  pointer-events: none
}

.guide__items {
  margin-top: 24px;
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); */
  grid-template-columns: repeat(2, 1fr);
  column-gap: 24px;
  row-gap: 10px;
  padding: 0 44px;
  max-width: 880px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width:768px) {
  .guide__items {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 30px;
    padding: 0 24px;
  }
}

.guide__item {}

.guide__link {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.guide__image {
  width: 88px;
  aspect-ratio: 1 / 1;
}

@media screen and (min-width:768px) {
  .guide__image {
    width: 110px;
  }
}

.guide__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.guide__item-title {
  margin-top: 8px;
}

@media screen and (min-width:768px) {
  .guide__item-title {
    margin-top: 10px;
  }
}

/* ==========================================
  共通商品関係
========================================== */
/* 商品タグ */
.productMark__mark {
  display: grid;
  place-items: center;
}

.product-tag__new {
  color: var(--white);
  background-color: var(--accent1);
}

.product-tag__sale {
  color: var(--white);
  background-color: var(--accent2);
}

/* ==========================================
  商品カード
========================================== */

/* キャッチコピー非表示 */
.fs-c-productName__copy {
  display: none;
}

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

.fs-c-productPrice__main {

}

.fs-c-productPrice__main__label {
  font-size: 10px;
}

.fs-c-productPrice:not(.fs-c-productPrice--listed) .fs-c-productPrice__main__price  {
  color: var(--body-font-color);
  font-size: 16px;
}

@media screen and (min-width:768px) {
  .fs-c-productPrice:not(.fs-c-productPrice--listed) .fs-c-productPrice__main__price {
    font-size: 20px;
    font-weight: bold;
  }
}

.fs-c-productListCarousel__list__item > * + * {
  margin-top: 0;
}

.fs-c-productListItem__productName {
  margin-top: auto;
  margin-bottom: 4px;
  min-height: 32px;
}

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

/* 上下の揃え */
.fs-c-productListCarousel__list__item,
.fs-c-productList__list__item form {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.fs-c-productListItem__prices {

}

/* 商品カードサムネイルのアス比 */
.fs-c-productListItem__image__image {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* ==========================================
  その他のページ（カート、ログインなど）
========================================== */
/* カートページ */
.fs-l-cart .fs-c-wishlistProduct {
  margin-top: 32px;
}

@media screen and (min-width:768px) {
  .fs-l-cart .fs-c-wishlistProduct {
    margin-top: 40px;
  }
}

/* マイページログイン */
@media screen and (min-width: 960px) {
  .fs-body-login .fs-c-loginForm  {
    justify-content: center;
  }
}

/* 404　ページが見つかりません */
.fs-p-pageNotFound__image {
  margin: 0 auto;
}