/* ==========================================
  デフォルト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: 24px;
  margin-bottom: 24px;
}

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

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

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

/* 共通セクションタイトル */
.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: var(--common-button-font-size-sp);
  background-color: var(--common-button-bg-color);
  color: var(--body-font-color) !important;
  text-transform: uppercase;
  display: grid;
  place-items: center;
  padding: 6px 10px;
  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
  {
    padding: 8px 12px;
    font-size: var(--common-button-font-size-pc);
  }
}

.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);
}

.common-button--large {
  padding: 18px 26px;
  min-width: 200px;
  font-weight: bold;
  font-size: var(--common-button-font-size-large-sp);
}

@media screen and (min-width:768px) {
  .common-button--large {
    padding: 22px 32px;
    font-size: var(--common-button-font-size-large-pc);
  }
}

/* 余白パーツ */
.space-120 {
  padding-top: 96px;
}

@media screen and (min-width:768px) {
  .space-120 {
    padding-top: 120px;
  }
}

/* 余白削除用 */
.padding-top-0 {
  padding-top: 0;
}

.padding-bottom-0 {
  padding-bottom: 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;
  height: 100dvh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.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: var(--light-gray);
  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: 16px;
}

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

/* 3階層目のリンク */
.sp-nav__link {
  display: block;
  padding: 8px 16px;
  font-size: 12px;
  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: 100%;
    background: var(--white);
    padding: 30px 20px;
    opacity: 0;
    visibility: hidden;
  }

  .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: 230 / 70;
  }

  .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 {
    opacity: 1;
    visibility: visible;
  }
}

/* カートの商品点数 */
.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: 14px;
    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;
    margin-right: 0;
  }
}

#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: 256px;
  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;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}

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

.footer__nav {
  flex-shrink: 0;
}

.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 {
    gap: 10%;
  }
}

.footer__nav-items {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: 4px;
}

@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);
}

/* ==========================================
  スクロール追従アイコン
========================================== */
.fixed-icon {
  position: fixed;
  z-index: 999;
  bottom: 20px;
  right: 15px;
}

@media screen and (min-width:768px) {
  .fixed-icon {
    bottom: 50px;
    right: 100px;
  }
}

/* ----- スクロールトップ ----- */
.scroll-top {
  /* ①ボタンの色と文字の色とサイズ */
  background-color: var(--black);
  color: var(--white);
  font-size: 11px;
  text-transform: uppercase;

  /* ②ボタンのサイズと角丸 */
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--black);

  /* ③次に作る上向きの三角と、TOPの文字の位置を揃えるためのcss */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;

  transition: background-color 0.2s ease-in-out;
}

@media screen and (min-width:768px) {
  .scroll-top {
    width: 80px;
    height: 80px;
    font-size: 18px;
  }
}

.scroll-top:visited {
  color: var(--white);
}

.scroll-top:hover {
  background-color: var(--white);
  color: var(--black);
  opacity: 1;
}


.scroll-top::before {
  /* ④絶対必要 */
  content: "";
  display: block;

  /* ⑤三角のサイズ */
  width: 6px;
  height: 6px;

  /* ⑥三角の線と回転角度 */
  border-top: 2px solid var(--white);
  border-right: 2px solid var(--white);
  transform: rotate(-45deg);
}

@media screen and (min-width:768px) {
  .scroll-top::before {
    width: 10px;
    height: 10px;
  }
}

.scroll-top:hover::before {
  border-top: 2px solid var(--black);
  border-right: 2px solid var(--black);
}

/* ----- LINEリンク ----- */
.fixed-icon__line-link {
  margin-top: 5px;
}

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

.line-link {
  display: block;
  width: 50px;
  height: 50px;
}

@media screen and (min-width:768px) {
  .line-link {
    width: 80px;
    height: 80px;
  }
}

/* ==========================================
  下層ページタイトル
========================================== */
.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: 24px;
  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: 34px;
    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%;
  max-width: 450px;
  margin-inline: auto;
}

@media screen and (min-width:768px) {
  .category-content {
    max-width: unset;
  }
}

.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;
}

@media screen and (min-width:768px) {
  .category-content__item-title {
    height: 38px;
  }
}

.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-tabs__list {
  display: flex;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 8px;
  list-style: none;
  padding: 0;
  margin-bottom: 42px;
}

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

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

.category-sub-tabs__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-tabs__button {
    font-size: 14px;
  }
}

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

/* パネル */
.category-sub-tabs__contents {
  max-width: 350px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width:768px) {
  .category-sub-tabs__contents {
    max-width: 740px;
  }
}

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

.category-sub-tabs__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;
  padding: 0 15px;
}

@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;
}

.instagram__content {}

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

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

/* ==========================================
  ショッピングガイド 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 {
  align-items: flex-end;
  display: block;
}

.fs-c-productPrice__main {
  display: block;
}

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

.fs-c-productPrice:not(.fs-c-productPrice--listed) .fs-c-productPrice__main__price {
  color: var(--body-font-color);
  font-weight: bold;
  display: inline;
}
.fs-c-productPrice__main__joint {
  display: inline;
}

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

.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-button--plain {
  color: var(--body-font-color);
}

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

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

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

.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-c-documentColumn__content {
  gap: 10px;
}

/* ----- 下層ページセクションタイトル ----- */
.page-section-title {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding: 0 10px;
}

.page-section-title__en {
  font-size: 22px;
  font-weight: bold;
  color: var(--accent2);
}

@media screen and (min-width:768px) {
  .page-section-title__en {
    font-size: 32px;
  }
}

.page-section-title__jp {
  margin-top: 4px;
  font-size: 26px;
  font-weight: bold;
}

@media screen and (min-width:768px) {
  .page-section-title__jp {
    margin-top: 8px;
    font-size: 36px;
  }
}

/* ----- 画像オーバーレイテキスト ----- */
.image-with-overlay-text {
}

.image-with-overlay-text__wrapper {
  position: relative;
}

.image-with-overlay-text__image {

}

.image-with-overlay-text__title {
  position: absolute;
  top: 8px;
  right: 0;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.3;
}

@media screen and (min-width:768px) {
  .image-with-overlay-text__title {
    top: 47px;
    right: 10px;
    font-size: 50px;
  }
}

@media screen and (min-width:1024px) {
  .image-with-overlay-text__title {
    top: 127px;
    right: 10px;
    font-size: 70px;
  }
}

.image-with-overlay-text__text {
  font-size: 14px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
  margin-top: 25px;
  max-width: 500px;
}

@media screen and (min-width:768px) {
  .image-with-overlay-text__text {
    position: absolute;
    top: 260px;
    right: 22px;
    font-size: 16px;
    margin-right: 0;
    max-width: 380px;
    margin-top: 0;
    padding: 0;
  }
}

@media screen and (min-width:1024px) {
  .image-with-overlay-text__text {
    position: absolute;
    top: 423px;
    right: 42px;
    font-size: 18px;
    margin-right: 0;
    max-width: 520px;
  }
}

/* ----- 画像とテキスト ----- */
.image-with-text {

}

.image-with-text__wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media screen and (min-width:768px) {
  .image-with-text__wrapper {
    flex-direction: row;
    align-items: center;
    padding: 0 30px;
    gap: 5.5%;
  }
}

.image-with-text__image {
  order: 2;
  position: relative;
  max-width: 392px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  aspect-ratio: 1/1;
  z-index: 5;
  flex-shrink: 0;
}

@media screen and (min-width:768px) {
  .image-with-text__image {
    order: 0;
  }
}

.image-with-text__image img {
  transform: translate(25px, 25px);
  width: calc(100% - 25px);
  height: calc(100% - 25px);
  object-fit: cover;
  z-index: 5;
}

@media screen and (min-width:768px) {
  .image-with-text__image img {
    transform: translate(32px, 32px);
    width: calc(100% - 32px);
    height: calc(100% - 32px);
  }
}

.image-with-text__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 25px);
  height: calc(100% - 25px);
  background-color: var(--accent1);
  z-index: -1;
}

@media screen and (min-width:768px) {
  .image-with-text__image::after {
    width: calc(100% - 32px);
    height: calc(100% - 32px);
  }
}

.image-with-text__right-wrapper {
  display: contents;
}

@media screen and (min-width:768px) {
  .image-with-text__right-wrapper {
    display: block;
  }
}

.image-with-text__page-section-title {
  order: 1;
}

@media screen and (min-width:768px) {
  .image-with-text__page-section-title {
    text-align-last: left;
  }
}

.image-with-text__content {
  order: 3;
}

.image-with-text__text1 {
  font-size: 18px;
  font-weight: bold;
}

.image-with-text__text2 {
  margin-top: 21px;
}

.image-with-text__text2 {
  margin-top: 32px;
}

/* ----- マルチカラム ----- */
.multi-column {
  background-color: var(--section-background);
}
.multi-column__items {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  gap: 30px;
  margin-top: 30px;
}

@media screen and (min-width:768px) {
  .multi-column__items {
    flex-direction: row;
    margin-top: 50px;
    max-width: initial;
    padding: 0 30px;
  }
}

.multi-column__item {
  width: 100%;
}

.multi-column__image {
  width: 100%;
  aspect-ratio: 1 / 1;
}

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

.multi-column__item-content {
  margin-top: 14px;
  text-align: center;
}

@media screen and (min-width:768px) {
  .multi-column__item-content {
    font-size: 24px;
  }
}

.multi-column__item-title {
  color: var(--accent2);
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
}

.multi-column__item-text {
  font-size: 16px;
  margin-top: 8px;
}

@media screen and (min-width:768px) {
  .multi-column__item-text {
    font-size: 18px;
  }
}

/* ----- 互い違いレイアウト ----- */
.zigzag-layout {

}

.zigzag-layout__items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 16px;
  max-width: 400px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width:768px) {
  .zigzag-layout__items {
    margin-top: 20px;
    gap: 30px;
    max-width: inherit;
  }
}

.zigzag-layout__item {
  padding: 30px 15px;
  border: 1px solid var(--accent1);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media screen and (min-width:768px) {
  .zigzag-layout__item {
    flex-direction: row;
    align-items: center;
    padding: 50px 34px;
  }

  .zigzag-layout__item:nth-child(even) {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}

.zigzag-layout__image {
  width: 100%;
  aspect-ratio: 440 / 280;
}

@media screen and (min-width:768px) {
  .zigzag-layout__image {
    width: 50%;
    flex-shrink: 0;
  }
}

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

.zigzag-layout__content {

}

.zigzag-layout__item-title {
  color: var(--accent2);
  font-weight: bold;
  font-size: 26px;
}

@media screen and (min-width:768px) {
  .zigzag-layout__item-title {
    font-size: 32px;
  }
}

.zigzag-layout__item-text {
  margin-top: 16px;
}

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

/* ----- カラムスライダー ----- */
.column-slider {
  background-color: var(--section-background);
}

.column-slider__splide {
  position: relative;
  margin-top: 30px;
  max-width: 450px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 768px) {
  .column-slider__splide {
    margin-top: 50px;
    max-width: inherit;
  }
}

.column-slider__splide .splide__track {
}

.column-slider__slide {
  height: auto;
  display: flex;
}

.column-card {
  overflow: hidden;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 2px 4px 18px 0 rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.column-card__image {
  background: #cfcfcf;
  aspect-ratio: 360 / 330;
  display: grid;
  place-items: center;
}

.column-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.column-card__body {
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

@media screen and (min-width: 768px) {
  .column-card__body {
    padding: 20px 30px;
  }
}

.column-card__tag {
  display: inline-block;
  width: fit-content;
  font-size: 16px;
  line-height: 1;
  padding: 6px 13px;
  border-radius: 999px;
  background: #fffbf1;
  color: var(--accent1);
  font-weight: bold;
}

.column-card__text {
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: bold;
}

.column-card__name {

}

@media screen and (min-width: 768px) {
  .column-card__name {
    margin-top: auto;
    margin-bottom: 0;
  }
}
/* =====================================
   Splide Arrow Base
===================================== */
.column-slider__splide .splide__arrow {
  width: 80px;
  height: 80px;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;

  color: var(--white);                 /* SP色 */
  background-color: currentColor;

  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

@media screen and (min-width:1240px) {
  .column-slider__splide .splide__arrow {
    color: var(--gray);
  }
}

.column-slider__splide .splide__arrow--prev {
  -webkit-mask-image: url("../images/common/arrow-left.svg");
  mask-image: url("../images/common/arrow-left.svg");
  left: -18px;
}

@media screen and (min-width:1240px) {
  .column-slider__splide .splide__arrow--prev {
    left: -75px;
  }
}

.column-slider__splide .splide__arrow--next {
  -webkit-mask-image: url("../images/common/arrow-right.svg");
  mask-image: url("../images/common/arrow-right.svg");
  right: -18px;
}

@media screen and (min-width:1240px) {
  .column-slider__splide .splide__arrow--next {
    right: -75px;
  }
}

/* ----- マルチボックス ----- */
.multi-boxes__items {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 30px;
}

@media screen and (min-width:768px) {
  .multi-boxes__items {
    gap: 40px;
    margin-top: 50px;
  }
}

.multi-boxes__item {
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  background-color: var(--light-gray);
}

@media screen and (min-width:768px) {
  .multi-boxes__item {
    padding: 40px 40px;
    flex-direction: row;
    align-items: center;
    gap: 7%;
  }
}

.multi-boxes__title {
  padding-left: 48px;
  font-size: 20px;
  font-weight: bold;
  position: relative;
  width: fit-content;
  flex-shrink: 0;
}

@media screen and (min-width:768px) {
  .multi-boxes__title {
    font-size: 28px;
    padding-left: 60px;
  }
}

.multi-boxes__title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
    -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
  width: 30px;
  height: 30px;
  background-color: var(--accent1);
  clip-path: polygon(50% 60%, 0 0, 100% 0);
}

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

.multi-boxes__title--star::before {
  background-color: var(--accent2);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.multi-boxes__text {
  margin-top: 16px;
}

@media screen and (min-width:768px) {
  .multi-boxes__text {
    margin-top: 0;
  }
}

.multi-boxes__common-button {
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
}

@media screen and (min-width:768px) {
  .multi-boxes__common-button {
    margin-top: 42px;
  }
}

/* ----- FAQアコーディオン ----- */
.faq-accordion {
  background-color: var(--section-background);
}

.faq-accordion__items {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media screen and (min-width:768px) {
  .faq-accordion__items {
    margin-top: 50px;
  }
}

.faq-accordion__item {
  border-bottom: 1px solid #e6e6e6;
  background: #f3f3f3;
}

/* question row */
.faq-accordion__question {
  width: 100%;
  display: grid;
  grid-template-columns: 36px 1fr 28px;
  gap: 12px;
  align-items: center;

  padding: 18px 16px;
  border: 0;
  text-align: left;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  .faq-accordion__question {
    grid-template-columns: 40px 1fr 28px;
    padding: 20px 20px;
  }
}

/* =====================================
   Q / Question text
===================================== */
.faq-accordion__q {
  font-weight: 700;
  font-size: 22px;
}

@media screen and (min-width: 768px) {
  .faq-accordion__q {
    font-size: 28px;
  }
}

.faq-accordion__question-text {

}

/* plus/minus icon (border lines) */
.faq-accordion__icon {
  position: relative;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

@media screen and (min-width: 768px) {
  .faq-accordion__icon {
    width: 24px;
    height: 24px;
  }
}

/* 横線 */
.faq-accordion__icon::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  border-top: 2px solid var(--accent1);
  transform: translateY(-50%);

}

/* 縦線（閉じている時だけ表示＝＋） */
.faq-accordion__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  height: 100%;
  border-left: 2px solid #16a34a;
  transform: translateX(-50%);
}

/* 開いている時は縦線を消して「ー」に */
.faq-accordion__item.is-open .faq-accordion__icon::after {
  opacity: 0;
}

/* answer */
.faq-accordion__answer {
  display: block;        /* display:none は使わない */
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  background: #fff;

  transition: max-height 300ms ease, opacity 200ms ease;
}

.faq-accordion__item.is-open .faq-accordion__answer {
  max-height: 1000px;    /* 十分大きい値 */
  opacity: 1;
}

.faq-accordion__answer-inner {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;

  padding: 16px 16px 20px;
}

@media screen and (min-width: 768px) {
  .faq-accordion__answer-inner {
    grid-template-columns: 40px 1fr;
    padding: 18px 20px 22px;
  }
}

.faq-accordion__a {
  font-weight: 700;
  font-size: 22px;
}

@media screen and (min-width: 768px) {
  .faq-accordion__a {
    font-size: 28px;
  }
}

.faq-accordion__answer-text {
  width: 90%;
}

.faq-accordions__common-button {
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
}

@media screen and (min-width:768px) {
  .faq-accordions__common-button {
    margin-top: 42px;
  }
}

/* ==========================================
  購入ページ
========================================== */
/* ポイント利用非表示 */
#fs-pointInfo-container {
  display: none;
}

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

/* 注文を確定するボタン */
.fs-c-button--confirmOrder {
  color: var(--white) !important;
  background-color: #10D248;
}
/* ==========================================
  マイページ
========================================== */
/* ポイント履歴非表示 */
.fs-c-accountService__page--pointHistory {
  display: none;
}

/* レビュー履歴非表示  */
.fs-c-accountService__page--accountReviews {
  display: none;
}

/* ==========================================
  その他のページ（カート、ログインなど）
========================================== */
/* カートページ */
.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;
}


/* ==========================================
  ポリシーページの調整（WP投稿のスタイルに合わせる）
========================================== */
.p-article__content .fs-c-documentArticle__heading {
  text-align: left;
}

.p-article__content .fs-c-documentColumn__heading {
  border-left: none;
}

.p-article__content .fs-c-list li::before {
  border: none;
}

.p-article__content .fs-c-explainList {
  gap: 0;
}

.p-article__content .fs-c-explainList dt {
  background-color: var(--light-gray);
  padding: 0.8rem 1.6rem;
  border-bottom: .1rem solid #DDDDDD;
}

.p-article__content .fs-c-explainList dt:first-child {
  border-top: .1rem solid #DDDDDD;
}

.p-article__content .fs-c-explainList dd {
  word-break: break-word;
  padding: 0.8rem 1.6rem;
  border-bottom: .1rem solid #DDDDDD;
}

@media screen and (min-width:600px) {
  .p-article__content .fs-c-explainList dd:first-of-type {
    border-top: .1rem solid #DDDDDD;
  }
}

.p-article__content .fs-c-explainList dd:not(:last-child) {
  margin-bottom: 0;
}