@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700&family=Zen+Kaku+Gothic+New:wght@400;500;600;700&display=swap');


:root{
    /* Colors */
    --color-primary: #000000;
    --color-secondary: #ffffff;
    --color-accent: #E8B221;
    --color-text: #000000;
    --color-text-muted: #666666;
    --color-bg-base: #ffffff;
    --color-border: #000000;
    --color-border-light: #e5e5e5;

    /* Typography */
    --font-pc: 20px;
    --font-sp: 16px;
    --font-lg: 16px;
    --font-xl: 24px;
    --font-xxl: 32px;
    --font-en: "Barlow", sans-serif;
    --font-ja: "Zen Kaku Gothic New", sans-serif;
    --font-bold: 600;

    /* Layout */
    --section-max-width: 1400px;
    --header-z-index: 1000;
}

/* Header Styles */
.l-header {
  position: absolute;
  background: var(--color-bg-base);
  top: 0;
  z-index: 1000;
}
.l-header-top {
  background: var(--color-primary);
  text-align: center;
  padding: 5px 0;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.l-header-top a {
  color: var(--color-secondary)!important;
  font-size: 14px;
  font-weight: 500;
}
.l-header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 30px;
  max-width: 100%;
  margin: 0 auto;
  gap: 20px;
}
.l-header-logo {
  width: 180px;
  font-family: var(--font-serif);
  flex-shrink: 0;
}
.l-header-logo a {
  text-decoration: none;
  color: var(--color-text) !important;
}
.l-header-nav-list {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .l-header-nav-list {
    font-size: var(--font-sp);
    gap: 16px;
  }
}

  .l-header-nav h3{
  display:none;
  }

@media screen and (max-width: 768px) {
.l-header-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--color-bg-base);
    border-top: 1px solid #000;
    z-index: 900;
    /* padding-right: 20px; これを削除して box-sizing を確実に */
    box-sizing: border-box; 
  }
  .l-header-nav h3{
  display:block;
  }

  .l-header-nav-list {
    display: none;
    flex-direction: column;
    gap: 0;
  }

   .l-header.is-open .l-header-nav-list {
  display: flex;
  justify-content: flex-start;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  overflow-x: hidden;
  }

/* メニューが開いている時の見出しスタイル */
.l-header.is-open .l-header-nav-list h3 {
  display: flex;
  align-items: center; /* 垂直中央揃え */
  gap: 20px;           /* テキストと線の間の余白 */
  font-family: var(--font-en) !important; 
  font-size: 24px;     /* サイズは適宜調整してください */
  letter-spacing: 0.1em;
  margin-bottom: 20px; /* 下のリストとの余白 */
}

/* 横線の部分 */
.l-header.is-open .l-header-nav-list h3::after {
  content: "";
  flex-grow: 1;        /* 右端まで線を伸ばす */
  height: 1px;         /* 線の太さ */
  background-color: #333; /* 線の色（画像のトーンに合わせて調整） */
}
  
  .l-header-nav-list a {
        display: block;
        padding: 14px 20px 14px 0;
        font-weight: 600;
        font-size: 16px;
    position:relative;
  }

/* 1. 全体共通：右側にスペースを確保 */
.l-header-nav-list a {
      position: relative;
      padding-right: 40px !important; /* アイコンと重ならないよう余白を確保 */
  }

/* 2. 親階層のメニュー（BAG, PAINT, アコーディオン項目など）の基本設定 */
.l-header-nav-list > li > a::after {
      content: "";
      position: absolute;
      right: 8px;
      top: 50%;
      transform: translateY(-50%);
      width: 24px;
      height: 24px;
      background-image: url(https://img07.shop-pro.jp/PA01348/565/etc_base64/c2hvcGxpc3RfYXJyb3dfaWNvbg.png?cmsp_timestamp=20260223224815);
      background-size: contain;
      background-repeat: no-repeat;
      display: block !important;
  }

/* 3. アコーディオン項目（＋）の設定 */
.l-header-nav-list a.js-sp-accordion::after {
      background-image: url(https://img07.shop-pro.jp/PA01348/565/etc_base64/YnV0dG9uX29wZW4.png?cmsp_timestamp=20260225231324);
  }

/* 4. アコーディオンが開いた時（−）の設定 */
.l-main-navi-list__item.is-open > a.js-sp-accordion::after {
      background-image: url(https://img07.shop-pro.jp/PA01348/565/etc_base64/YnV0dG9uX2Nsb3Nl.png?cmsp_timestamp=20260225231324) !important;
  }

/* 5. 展開された子メニュー（ORIORA等）を「シンプルな線の三角」にする */
.l-mega-menu-list__item a::after {
      content: "";
      position: absolute;
      right: 15px; /* 少し内側に配置 */
      top: 50%;
      transform: translateY(-50%) rotate(45deg); /* 斜めにして角を作る */
      width: 8px;
      height: 8px;
      border-top: 1px solid #000; /* 上の線 */
      border-right: 1px solid #000; /* 右の線 */
      background-image: none !important; /* 画像を消す */
  }
  
/* メガメニューを完全に1列化 */
  .l-mega-menu-list{
    display:block !important;
    width:100%;
  }

  .l-mega-menu-list__item{
    width:100% !important;
  }

/* 親liも100%幅に固定 */
  .l-main-navi-list__item{
    width:100%;
  }

/* 1. 親要素に基準を作る */
.l-header-main {
      position: relative;
  }
  
.l-mega-menu{
    position: static !important;
    width:100% !important;
    left:auto !important;
    top:auto !important;
  } 

/* 2. ロゴを「画面の真ん中」に固定する */
.l-header-logo {
      position: absolute !important;
      left: 50% !important;
      top: 50% !important;
      transform: translate(-50%, -50%) !important;
      margin: 0 !important;
      z-index: 10;
      width: auto !important; /* 幅を自動にして画像サイズに合わせる */
    }

/* 3. 左右の要素がロゴと重ならないように、ロゴの下に潜り込ませるか余白を作る */
.l-header-logo img {
      max-width: 140px; /* ロゴのサイズはお好みで微調整してください */
      height: auto;
      display: block;
    }
}

.l-header-nav-list a {
  color: var(--color-text) !important;
  text-transform: uppercase;
}
.l-header-utils {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 18px;
  font-weight: 700;
}

.l-header-utils__item {
  border: none;
  background: none;
  cursor: pointer;
}

.l-header-utils__item img {
  width: 18px;
}
@media screen and (max-width: 768px) {
  /* 1. 全体のサイズと間隔を小さく */
  .l-header-utils {
    gap: 12px !important; /* アイコンや文字同士の間隔を狭く */
  }

  /* 2. 文字サイズを小さく */
  .l-header-utils__item a {
    font-size: 15px !important; /* 標準18pxから13pxへ */
    letter-spacing: 0.02em !important;
    white-space: nowrap; /* 改行を防ぐ */
  }
}

/* モバイル用検索窓の基本設定 */
.l-header-search_sp {
  display: none; /* デフォルト（PC）では非表示 */
}

@media screen and (max-width: 767px) {
.l-header-nav .l-header-search_sp {
    display: block;
    padding: 20px 0;
    background-color: #fff;
  }

  .l-header-search_sp form {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 44px;
    border-radius: 4px;
    background: #f7f7f7;
    overflow: hidden; /* ★ hidden に戻す */
    clip-path: none;
  }

  .l-header-search__input {
    flex: 1;
    height: 100%;
    padding: 0 10px;
    border: none;
    outline: none;
    font-size: 16px;
    background: transparent;
    min-width: 0; /* ★ flexの縮み対策 */
  }

  .l-header-search__btn {
    width: 44px;
    height: 44px;
    min-width: 44px;
    flex-shrink: 0;
    background: #f7f7f7; /* ★ formと同色に */
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .l-header-search__btn img {
    width: 20px !important;
    height: 20px !important;
    display: block;
  }

  .l-header-utils .l-header-search {
    display: none;
  }
}

/* Footer Styles */
.l-footer {
  padding: 80px 40px;
  border-top: 1px solid var(--color-border-light);
  text-align: center;
}
.l-footer-logo {
  font-family: var(--font-serif);
  font-size: 32px;
  margin-bottom: 40px;
  color: var(--color-secondary)!important;
  width: 100%;
}
.l-footer-logo img{
  max-width: 180px;
}
.l-footer-sns {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 50px;
}
.l-footer-sns__item {
  text-align: left;
}
.l-footer-sns__ttl {
  display: flex;
  align-items: center;
  gap: 8px;
}
.l-footer-sns__ttl span{
 width: 24px; 
}
.l-footer-nav {
  display: flex;
  justify-content: start;
  text-align: left;
  gap: 40px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
}
.l-footer-nav a {
  text-decoration: none;
  color: var(--color-secondary)!important;
}
.l-footer-sns__ids a{
  color: var(--color-secondary)!important;
}

/*footer：SNSをPCで縦並びにする */
@media screen and (min-width: 768px) {  
  .l-footer-sns {
    grid-template-columns: 1fr; /* 2列 → 1列 */
    gap: 40px;                 /* 縦の余白はお好みで */
  }
}

/* Header Search */
.l-header-search {
  position: relative;
  display: flex;
  align-items: center;
}

@media screen and (min-width:769px){
  .l-header-search_sp{
    DISPLAY:NONE;
  }
}
  
  
@media screen and (max-width:768px){
  .l-header-utils .l-header-search{
  display:none;
  }
}

.l-header-search__btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.l-header-search__btn img {
  width: 18px;
}



img {
  max-width: 100%;
  vertical-align: top;
}
ul, ol, dl {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  color: var(--color-text)!important;
  transition: all 0.1s ease;
}
a:hover {
  color: #444444;
  text-decoration: none;
}
[data-whatinput=mouse] *:focus,
[data-whatinput=touch] *:focus {
  outline: none;
}

body {
  font-size: var(--font-pc);
  font-family: var(--font-ja);
  letter-spacing: 0em;
  line-height: 1.6;
  color: var(--color-text);
}

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

body.is-scroll-hidden {
  overflow: hidden;
}

.l-main{
  padding-top: 60px; 
}

/******************************/
/* Utility */
/******************************/
/* Layout */
.block { display: block; }
.inline-block { display: inline-block; }
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }
.relative { position: relative; }
.absolute { position: absolute; }
.w-full { width: 100%; }
.h-full { height: 100%; }

/* Flexbox */
.flex-row { flex-direction: row; }
.flex-col { flex-direction: column; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }
.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }

/* Typography */
.font-normal { font-weight: 400; }
.font-bold { font-weight: var(--font-bold); }
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.italic { font-style: italic; }
.font-serif { font-family: var(--font-serif); }
.font-sans { font-family: var(--font-sans); }

/* Spacing Helpers */
.m-0 { margin: 0; }
.m-1 { margin: 0.25rem; }
.m-2 { margin: 0.5rem; }
.m-3 { margin: 0.75rem; }
.m-4 { margin: 1rem; }
.m-5 { margin: 1.25rem; }
.m-6 { margin: 1.5rem; }
.m-8 { margin: 2rem; }
.m-10 { margin: 2.5rem; }
.m-12 { margin: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }

.ml-0 { margin-left: 0; }
.ml-1 { margin-left: 0.25rem; }
.ml-2 { margin-left: 0.5rem; }
.ml-3 { margin-left: 0.75rem; }
.ml-4 { margin-left: 1rem; }

.mr-0 { margin-right: 0; }
.mr-1 { margin-right: 0.25rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-3 { margin-right: 0.75rem; }
.mr-4 { margin-right: 1rem; }

.mx-0 { margin-left: 0; margin-right: 0; }
.mx-1 { margin-left: 0.25rem; margin-right: 0.25rem; }
.mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; }
.mx-4 { margin-left: 1rem; margin-right: 1rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

.my-0 { margin-top: 0; margin-bottom: 0; }
.my-1 { margin-top: 0.25rem; margin-bottom: 0.25rem; }
.my-2 { margin-top: 0.5rem; margin-bottom: 0.5rem; }
.my-4 { margin-top: 1rem; margin-bottom: 1rem; }

.p-0 { padding: 0; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }

.pt-0 { padding-top: 0; }
.pt-1 { padding-top: 0.25rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-3 { padding-top: 0.75rem; }
.pt-4 { padding-top: 1rem; }

.pb-0 { padding-bottom: 0; }
.pb-1 { padding-bottom: 0.25rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pb-3 { padding-bottom: 0.75rem; }
.pb-4 { padding-bottom: 1rem; }

.pl-0 { padding-left: 0; }
.pl-1 { padding-left: 0.25rem; }
.pl-2 { padding-left: 0.5rem; }

.pr-0 { padding-right: 0; }
.pr-1 { padding-right: 0.25rem; }
.pr-2 { padding-right: 0.5rem; }

.px-0 { padding-left: 0; padding-right: 0; }
.px-1 { padding-left: 0.25rem; padding-right: 0.25rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }

.py-0 { padding-top: 0; padding-bottom: 0; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }

.gap-0 { gap: 0; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

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

.grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}
.grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}
.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}


/******************************/
/* Layout */
/******************************/
section {
    box-sizing: border-box;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
    width: clamp(320px,100%,var(--section-max-width));
}
section > .contents {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  section > .contents {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

/******************************/
/* fade animation */
/******************************/
.fadeIn {
  opacity: 0;
  transition: all 1.3s cubic-bezier(0.07, 0.92, 0.46, 0.95) 0.4s;
}
.fromLeft {
  transform: translate(-20px, 0);
}
.fromRight {
  transform: translate(20px, 0);
}
.fromTop {
  transform: translate(0, -20px);
}
.fromBottom {
  transform: translate(0, 20px);
}
.fromForeground {
  transform: scale(1.6);
}
.faded {
  opacity: 1;
}
.fadedWithTransform {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/******************************/
/* Components */
/******************************/
/********** title **********/
.c-ttl-main {
  font-family: var(--font-en);
  display: block;
  text-align: center;
  margin-top: 16px;
  margin-bottom: 45px;
  line-height: 1.4;
  font-size: 35px;
  letter-spacing: 0.15em;
  font-feature-settings: "palt" 1;
}
@media screen and (max-width: 767px) {
  .c-ttl-main {
    margin-bottom: 30px;
    font-size: 21px;
  }
}
/********** パーツ **********/
.c-item-list__item {
  position: relative;
  box-sizing: border-box;
  margin-bottom: 60px;
  padding-left: 35px;
  padding-right: 35px;
  padding-bottom: 25px;
  width: 25%;
  transition: opacity 0.2s;
  word-break: break-all;
}
@media screen and (max-width: 1030px) {
  .c-item-list__item {
    margin-bottom: 45px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .c-item-list__item {
    padding-left: 10px;
    padding-right: 10px;
    width: 50%;
  }
}
.c-item-list__item.is-hidden {
  display: none;
}
.c-item-list__img {
  position: relative;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .c-item-list__img {
    text-align: center;
  }
}
.c-item-list__img:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.c-item-list__img a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.c-item-list__img img {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  width: auto !important;
  text-align: center;
}
.c-item-list__ttl img {
  vertical-align: middle;
}
.c-item-list__price {
  margin-top: 8px;
}
.c-item-list__price.is-strikethrough {
  margin-top: 0;
  text-decoration: line-through;
}
.c-item-list__expl {
	font-size:16px; 
}
.c-item-list__btn {
  display: block;
  position: absolute;
  right: 30px;
  bottom: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #d8d8d8;
  cursor: pointer;
  text-align: center;
  transition: all var(--transition-duration) var(--transition-easing-complex);
}
@media screen and (max-width: 1030px) {
  .c-item-list__btn {
    right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .c-item-list__btn {
    right: 10px;
  }
}
.c-item-list__btn.is-added {
  color: #000000;
}
.c-item-list__btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
svg:not(:root) {
  overflow: hidden;
}
/***** FAVORITE *****/
.c-favorite-list {
  display: flex;
  flex-wrap: wrap;
  margin-left: -9px;
  margin-right: -9px;
}
@media screen and (max-width: 1030px) {
  .c-favorite-list {
    margin-left: 0;
    margin-right: 0;
    flex-wrap: nowrap;
  }
}
.c-favorite-list__item {
  position: relative;
  box-sizing: border-box;
  margin-bottom: 40px;
  padding-left: 9px;
  padding-right: 9px;
  width: 12.5%;
}
@media screen and (max-width: 1030px) {
  .c-favorite-list__item {
    margin-right: 5px;
    margin-bottom: 0;
    padding-left: 0px;
    padding-right: 0px;
    width: 120px;
  }
}
@media screen and (max-width: 767px) {
  .c-favorite-list__item {
    width: 90px;
  }
}
.c-favorite-list__img {
  position: relative;
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (max-width: 1030px) {
  .c-favorite-list__img {
    margin-bottom: 10px;
    width: 120px;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .c-favorite-list__img {
    width: 90px;
  }
}
.c-favorite-list__img:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.c-favorite-list__img a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.c-favorite-list__img img {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  width: auto !important;
  text-align: center;
}
.c-favorite-list__price {
  color: #909090;
  margin-top: 15px;
  font-size: 12px;
  white-space: normal;
}
.c-favorite-list__price.is-strikethrough {
  margin-top: 0;
  text-decoration: line-through;
}
.c-favorite-list__btn {
  position: absolute;
  right: 30px;
  bottom: 0;
}
/********** button **********/
.c-btn {
  box-sizing: border-box;
  display: inline-block;
  position: relative;
  padding: 18px 45px 18px 25px;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  border-left: 0;
  border-right: 0;
  min-width: 150px;
  font-size: 14px;
  font-weight: bold;
  background: transparent;
  color: #000000;
  text-align: left;
  cursor: pointer;
  letter-spacing: 0.3em;
}
.c-btn:before, .c-btn:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 9px;
  height: 1px;
  background: #000000;
  transition: all 0.3s ease;
}
.c-btn:after {
  transform: rotate(90deg);
}
.c-btn:hover {
  text-decoration: none;
}
.c-btn:hover:before {
  transform: rotate(90deg);
}
.c-btn:hover:after {
  transform: rotate(180deg);
}
.c-btn-cart {
  box-sizing: border-box;
  display: inline-block;
  position: relative;
  padding: 16px;
  border: none;
  border-radius: 0;
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  background: #E8B221;
  color: #ffffff;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.c-btn-cart.is-disabled {
  background: #d8d8d8;
  cursor: default;
}
.c-btn-cart.is-disabled:hover {
  background: rgba(216, 216, 216, 0.8);
}
.c-btn-cart.is-soldout {
  background: #ac0000;
  cursor: default;
}
.c-btn-cart.is-soldout:hover {
  background: #ac0000;
}
.c-btn-cart.is-membersonly {
  background: #53a6a5;
  cursor: default;
}
.c-btn-cart.is-membersonly:hover {
  background: #53a6a5;
}
.c-icon-cart {
  display: inline-block;
  margin-right: 20px;
  width: 19px;
  height: 18px;
  background: url(https://img.shop-pro.jp/tmpl_img/86/icon-template-cart.png) no-repeat;
  background-size: 19px 18px;
  vertical-align: -2px;
}
.c-more {
  text-align: center;
}
.c-not-found {
  margin-bottom: 60px;
}
/********** table **********/
.c-tbl-list {
  border-top: 1px solid #b2b2b2;
}
.c-tbl-list__tr {
  display: flex;
  padding: 20px 0;
  border-bottom: 1px solid #b2b2b2;
}
@media screen and (max-width: 767px) {
  .c-tbl-list__tr {
    display: block;
  }
}
.c-tbl-list__th {
  margin: 0;
  width: 270px;
  font-size: 14px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .c-tbl-list__th {
    margin-bottom: 10px;
    width: auto;
  }
}
.c-tbl-list__td {
  flex: 1;
  margin: 0 0 0 30px;
}
@media screen and (max-width: 767px) {
  .c-tbl-list__td {
    margin-left: 0;
  }
}
/********** breadcrumbs **********/
.c-breadcrumbs {
  width: 100%;
  max-width: 1200px; */
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.c-breadcrumbs-list {
  padding-top: 30px;
  margin-bottom: 15px;
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .c-breadcrumbs-list {
    padding-left: 20px;
    font-size: 12px;
  }
}
.c-breadcrumbs-list__item {
  position: relative;
  display: inline-block;
  margin-right: 25px;
}
.c-breadcrumbs-list__item:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: -15px;
  margin-top: -6px;
  width: 1px;
  height: 12px;
  background-color: #000000;
  transform: rotate(35deg); 
}
.c-breadcrumbs-list__item:last-child:before {
  content: none;
}
.c-breadcrumbs-list a {
  color: #000000;
}
/*********************************
  PAGER（整理版）
*********************************/

.c-pager {
  margin: 75px 0;
  text-align: center;
}

.c-pager__total {
  margin-bottom: 30px;
}

.c-pager-list {
  display: flex;
  justify-content: center;
  gap: 12px;
}

/* ======================
   共通リンクデザイン
====================== */

.c-pager-list__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  text-decoration: none;
  color: #000;
  border-radius: 50%;
  transition: 0.2s ease;
}

/* hover */
.c-pager-list__link:hover {
  background: #eee;
}

/* ======================
   現在ページ
====================== */

.c-pager-list__link.is-current {
  background: #000;
  color: #fff;
  pointer-events: none;
}

/* hover時も変化させない */
.c-pager-list__link.is-current:hover {
  background: #000;
  color: #fff;
}

/* ======================
   prev / next
====================== */

.c-pager-list__link.is-prev,
.c-pager-list__link.is-next {
  font-size: 0;
  background: none;
}

/* 三角共通 */
.c-pager-list__link.is-prev::before,
.c-pager-list__link.is-next::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

/* 左 */
.c-pager-list__link.is-prev::before {
  border-right: 8px solid #000;
}

/* 右 */
.c-pager-list__link.is-next::before {
  border-left: 8px solid #000;
}

/* 無効 */
.c-pager-list__link.is-disabled {
  opacity: 0.3;
  pointer-events: none;
}

/* ======================
   SPも同じ見た目
====================== */

@media screen and (max-width: 767px) {

  .c-pager-list__item {
    display: block;
  }

  .c-pager-list__link {
    width: 36px;
    height: 36px;
  }
    /* いったん全部消す */
  .c-pager-list__item {
    display: none;
  }

  /* prev / next は表示 */
  .c-pager-list__item:first-child,
  .c-pager-list__item:last-child {
    display: block;
  }

  /* is-visible だけ表示（現在周辺） */
  .c-pager-list__item.is-visible {
    display: block;
  }
}

/* ページ目テキストを完全に消す */
.c-pager-list__page {
  display: none !important;
}

.c-pager-list__link.is-current {
  background: #000 !important;
  color: #fff !important;
  border-radius: 50% !important;
  opacity: 1 !important;
}
.pager-dots .c-pager-list__link {
  pointer-events: none;
  background: none !important;
}

@media screen and (max-width: 767px) {
  .pager-dots {
    display: block !important;
  }
}
/******************************/
/* header */
/******************************/
.l-header {
  top: 0;
  z-index: var(--header-z-index);
  width: 100%;
  background: #ffffff;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1030px) {
  .l-header {
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  }
}
.l-header.is-fixed, .l-header.is-open {
  position: fixed;
  top: 0;
  z-index: 10000;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  background: #ffffff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.l-header.is-fixed .l-header-main__in, .l-header.is-open .l-header-main__in {
  display: flex;
  justify-content: space-between;
  padding-top: 0;
}
.l-header.is-fixed .l-header-logo, .l-header.is-open .l-header-logo {
  margin-bottom: 0;
}
.l-header.is-fixed .l-header-logo__img, .l-header.is-open .l-header-logo__img {
  display: flex;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  min-height: 40px;
  max-width: 750px;
}
.l-header.is-fixed .l-header-logo__img.is-txt, .l-header.is-open .l-header-logo__img.is-txt {
  margin-bottom: 0;
}
.l-header.is-fixed .l-header-logo__img img, .l-header.is-open .l-header-logo__img img {
  max-width: 450px;
  max-height: 40px;
}
@media screen and (max-width: 1030px) {
  .l-header.is-fixed .l-header-logo__img img, .l-header.is-open .l-header-logo__img img {
    max-width: 170px;
  }
}
.l-header.is-fixed .l-header-logo__type-txt, .l-header.is-open .l-header-logo__type-txt {
  font-size: 12px;
}
.l-header.is-fixed .l-header-logo__txt, .l-header.is-open .l-header-logo__txt {
  display: none;
}

.l-header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

/* PCではハンバーガーを絶対出さない */
@media screen and (min-width: 769px) {
  .l-header.is-fixed .l-menu-btn {
    display: none !important;
  }
}

.l-header.is-fixed .l-help-navi-box, .l-header.is-open .l-help-navi-box {
  display: none;
  position: static;
}

.l-header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  z-index: 9999;
}

@media screen and (max-width: 1030px) {
  .l-header.is-fixed .l-header-search__box, .l-header.is-open .l-header-search__box {
    right: 0px;
  }
}

/* PCでは固定時もハンバーガーを出さない */
@media screen and (max-width: 768px) {
  .l-header.is-fixed .l-menu-btn,
  .l-header.is-open .l-menu-btn {
    display: block;
  }
}

.l-header-main__in {
  padding-top: 30px;
}
@media screen and (max-width: 1030px) {
  .l-header-main__in {
    padding-top: 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
  }
}
.l-header-logo__img {
  margin: 0;
  max-width: 450px;
  word-break: break-all;
}
@media screen and (max-width: 1030px) {
  .l-header-logo__img {
    display: flex;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
    min-height: 40px;
    font-size: 12px;
  }
}
.l-header-logo__img.is-txt {
  margin-bottom: 35px;
}
@media screen and (max-width: 1030px) {
  .l-header-logo__img.is-txt {
    margin-bottom: 0;
  }
}
.l-header-logo__img img {
  max-width: 450px;
  max-height: 150px;
}
@media screen and (max-width: 1030px) {
  .l-header-logo__img img {
    max-width: 170px;
    max-height: 40px;
  }
}
.l-menu-btn {
  display: none;
  position: relative;
  z-index: 10000;
  width: 60px;
  height: 30px;
  border: 0;
  background: transparent;
}
@media screen and (max-width: 768px) {
  .l-menu-btn {
    display: block;
  }
}
/* --- ハンバーガーメニュー：3本線・太さ2px・横長デザイン --- */

.l-menu-btn span {
  box-sizing: border-box;
  display: inline-block;
  transition: all 0.2s ease;
  position: absolute;
  left: 0;
  width: 32px;  /* ★横幅を25pxから32pxに長くしました */
  height: 2px;  /* ★太さを1.5pxから2pxに変更しました */
  background-color: #000000;
}

/* 3本の線の垂直位置を微調整（横長に合わせてバランス調整） */
.l-menu-btn span:nth-of-type(1) {
  top: 6px;  /* 上の線 */
}
.l-menu-btn span:nth-of-type(2) {
  top: 14px; /* 真ん中の線 */
}
.l-menu-btn span:nth-of-type(3) {
  top: 22px; /* 下の線 */
}

/* メニューが開いた時（×印）の動き：長い線が綺麗に交差するように調整 */
.l-menu-btn.is-on span:nth-of-type(1) {
  top: 14px;
  transform: rotate(-45deg);
}
.l-menu-btn.is-on span:nth-of-type(2) {
  opacity: 0; /* 真ん中の線を消す */
}
.l-menu-btn.is-on span:nth-of-type(3) {
  top: 14px;
  transform: rotate(45deg);
}

@keyframes anime-overlay {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/********** メガメニュー **********/
.l-mega-menu {
  box-sizing: border-box;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  padding: 60px 85px;
  width: 100%;
  background: #ffffff;
}
@media screen and (max-width: 767px) {
  .l-mega-menu {
    position: static;
    width: auto;
    height: auto;
    border-top: 0;
  }
}
.l-mega-menu-list {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .l-mega-menu-list {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    width: auto;
    background: #ffffff;
  }
}
.l-mega-menu-list__item {
  box-sizing: border-box;
  position: relative;
  margin-bottom: 15px;
  padding-left: 10px;
  padding-right: 10px;
  width: 25%;
}
@media screen and (max-width: 767px) {
  .l-mega-menu-list__item {
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    width: auto;
  }
}

@media screen and (max-width: 767px) {
  .l-mega-menu-list__link {
    display: block;
    padding: 20px 40px 20px 20px;
  }
}
@media screen and (max-width: 767px) {
  .l-mega-menu-list__link:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    margin-top: -4px;
    width: 8px;
    height: 8px;
    border-right: 1px solid #aaaaaa;
    border-bottom: 1px solid #aaaaaa;
    transform: rotate(-45deg);
  }
}

@media screen and (max-width:768px){
  .l-mega-menu{
    display:none !important;
  }
}

/* ===== PC 5カラム固定 ===== */
.mega-5col {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
}

.mega-5col .l-mega-menu-list__item {
  width: 15% !important;
}

/* ===== メガメニュー中央揃え ===== */
.l-mega-menu-list__item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* 画像中央 */
.mega-thumb {
  text-align: center;
}

/* ブランド名カラー */
.mega-name {
  margin-top: 12px;
  color: var(--color-accent);
  font-family: var(--font-serif);
  font-size: 18px;
  letter-spacing: 0.08em;
}

/* ===== メガメニュー画像サイズ統一 ===== */
.mega-thumb {
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.mega-thumb img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

/* ===== メガメニュー画像：ホバー時だけ白被せ ===== */
@media screen and (min-width: 769px){

  .l-mega-menu-list__item {
    position: relative;
    overflow: hidden;
  }

  .l-mega-menu-list__item::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(255,255,255,0.6);
    opacity:0;
    transition:opacity .3s ease;
    pointer-events:none;
  }

  /* ホバーした要素だけ */
  .l-mega-menu-list__item:hover::after{
    opacity:1;
  }

}

@media screen and (max-width:768px){

  /* 画像を消す */
  .l-mega-menu .mega-thumb{
    display:none !important;
  }

  /* PC用の横並び解除 */
  .l-mega-menu-list{
    display:block !important;
  }

  /* 1列にする */
  .l-mega-menu-list__item{
    width:100% !important;
    padding:0;
  }

  /* テキストリンクだけ表示 */
  .l-mega-menu-list__item a{
    display:block;
    padding:16px 0;
  }

  /* ブランド名を通常テキスト風に */
  .mega-name{
    font-family: var(--font-sans);
    font-size:16px;
    color:#000;
    margin:0;
  }
  
  .l-main-navi-list__item.is-open > .l-mega-menu{
    display:block !important;
  }
  
  .mega-5col .l-mega-menu-list__item {
    width: 100% !important;
  }
  .l-header.is-open .l-mega-menu{
    padding: 0 0 0 10px !important; /* ← 左だけ少し余白 */
    background: transparent;
  }
  
  .l-header.is-open .l-mega-menu-list__item a{
    align-items: flex-start !important;
    text-align: left !important;
  }

  .l-header.is-open .mega-name{
    text-align: left !important;
  }
}

  .l-header.is-open .mega-name{
    font-family: var(--font-serif) !important;
    font-weight: 500;
    letter-spacing: 0.08em;
  }

.l-header-nav-list > li > a {
  font-size: 18px;
  font-weight: 700;
}

/********** 検索・カート **********/
/* 検索エリアの親（幅いっぱいに広げるための設定） */
.l-header-search {
  position: static !important; 
}

/* 検索バー本体（ヘッダーの直下に出る白い帯） */
.l-header-search__contents {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #ffffff !important;
  border-top: 1px solid #eee;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  z-index: 10001; /* 確実に一番手前に出す */
  padding: 15px 0;
  padding-bottom: 1px;
}

/* フォームを中央に寄せる箱 */
.l-header-search__box {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

/* 入力欄のグレーの背景部分 */
.l-header-search__form {
  flex: 1;
  display: flex;
  align-items: center;
  background: #f7f7f7;
  padding: 0 15px;
  height: 48px; /* 高さをしっかり確保 */
}

/* 入力エリア本体（古い opacity:0 や width:0 を完全に上書き） */
.l-header-search__input {
  flex: 1;
  opacity: 1 !important; /* 常に表示 */
  width: auto !important; /* 幅を固定しない */
}

.l-header-search__input input {
  width: 100%;
  height: 100%;
  border: none !important;
  background: transparent !important;
  outline: none;
  font-size: 16px;
  color: #000000 !important; /* 文字色を確実に黒にする */
  opacity: 1 !important;
  padding: 0;
}

/* 虫眼鏡ボタン */
.l-header-search__submit {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.l-header-search__submit img {
  width: 20px;
  height: auto;
}

/* 4. ×ボタン：親要素（box）の中で垂直中央に固定 */
.l-header-search__close {
  background: none;
  border: none;
  width: 30px;   /* クリックエリアの幅 */
  height: 48px;  /* 検索バー（form）と同じ高さに設定 */
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
  margin: 0;
  position: relative; /* 棒の基準 */
  display: flex;
  align-items: center;    /* 垂直方向中央 */
  justify-content: center; /* 水平方向中央 */
}

/* 中央配置のための棒の基本スタイル */
.l-header-search__close span {
  position: absolute;
  left: 50%;
  top: 30%;
  width: 20px;   /* 棒の長さ */
  height: 1px;
  background: #000;
  display: block;
}

/* 1本目：中央を軸に45度回転 */
.l-header-search__close span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

/* 2本目：中央を軸に-45度回転 */
.l-header-search__close span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.l-header-cart a {
  box-sizing: border-box;
  display: block;
  padding-top: 20px;
  width: 60px;
  height: 60px;
  text-align: center;
}


.l-header-cart a:hover {
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .l-header-cart a {
    width: 50px;
  }
}
.l-header-cart a img {
  width: 19px;
}
.p-global-header__cart-count {
  margin-left: 4px;
  font-weight: bold;
}
/********** ヘルプナビ **********/
.l-help-navi-box {
  display: flex;
  position: absolute;
  top: -60px;
  right: 0;
}
@media screen and (max-width: 1030px) {
  .l-help-navi-box {
    display: block;
    position: static;
  }
}
.l-help-navi-box a {
  color: #000000;
}

.l-help-navi-list {
  display: flex;
}
@media screen and (max-width: 767px) {
  .l-help-navi-list {
    display: block;
    border-top: 1px solid #eeeeee;
  }
}
.l-help-navi-list__item {
  margin-left: 30px;
}
.l-help-navi-list__item:first-child {
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  .l-help-navi-list__item {
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .l-help-navi-list__link {
    display: block;
    position: relative;
    padding: 20px;
  }
}
@media screen and (max-width: 767px) {
  .l-help-navi-list__link:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    margin-top: -4px;
    width: 8px;
    height: 8px;
    border-right: 1px solid #aaaaaa;
    border-bottom: 1px solid #aaaaaa;
    transform: rotate(-45deg);
  }
}
.l-sns-navi-list {
  display: flex;
  margin-left: 30px;
}
@media screen and (max-width: 767px) {
  .l-sns-navi-list {
    justify-content: center;
  }
}
.l-sns-navi-list__item {
  margin-right: 12px;
}
@media screen and (max-width: 767px) {
  .l-sns-navi-list__item {
    margin-right: 20px;
  }
}
.l-sns-navi-list__item:last-child {
  margin: 0;
}
/******************************/
/* STAFF CALENDAR */
/******************************/
.p-shop-info {
  display: flex;
}
@media screen and (max-width: 1030px) {
  .p-shop-info {
    display: block;
  }
}
.p-shop-info .u-contents-s {
  flex: 1;
}
/********** STAFF **********/
.p-staff {
  box-sizing: border-box;
  flex: 1;
  padding: 50px;
  background: #f7f7f7;
}
@media screen and (max-width: 767px) {
  .p-staff {
    padding: 40px 20px;
  }
}
.p-staff + .p-calendar {
  margin-left: 30px;
}
@media screen and (max-width: 767px) {
  .p-staff + .p-calendar {
    margin-left: 0;
    margin-top: 30px;
  }
}
.p-staff-box {
  overflow: hidden;
}
.p-staff__img {
  float: left;
  margin-right: 30px;
  margin-bottom: 30px;
  width: 120px;
}
@media screen and (max-width: 767px) {
  .p-staff__img {
    float: none;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
    width: 90px;
  }
}
.p-staff__img-name {
  margin-top: 5px;
  font-size: 12px;
  color: #909090;
  text-align: center;
}
/********** CALENDAR **********/
.p-calendar {
  box-sizing: border-box;
  flex: 1;
  padding: 50px 0 50px 30px;
  min-width: 510px;
}
@media screen and (max-width: 767px) {
  .p-calendar {
    padding-left: 0;
    min-width: inherit;
  }
}
.side_cal {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1030px) {
  .side_cal {
    justify-content: space-around;
  }
}
@media screen and (max-width: 500px) {
  .side_cal {
    display: block;
  }
}
.tbl_calendar {
  margin-left: 30px;
  width: 220px;
  text-align: center;
}
@media screen and (max-width: 1030px) {
  .tbl_calendar {
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .tbl_calendar {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
    width: auto;
  }
}
.tbl_calendar:first-child {
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  .tbl_calendar:first-child {
    margin-left: auto;
  }
}
.tbl_calendar caption {
  margin-bottom: 20px;
  font-size: 18px;
  text-align: center;
}
.tbl_calendar th {
  padding-bottom: 5px;
  font-size: 13px;
}
.tbl_calendar td {
  padding: 5px;
  font-size: 13px;
}

.side_cal_memo {
  margin-top: 15px;
  margin-bottom: 15px;
  font-size: 12px;
}
/******************************/
/* ショッピングガイド */
/******************************/
.p-shopguide {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .p-shopguide {
    display: none;
  }
}
.p-shopguide-wrap {
  display: flex;
  flex-wrap: wrap;
  margin-left: -23px;
  margin-right: -23px;
}
@media screen and (max-width: 1030px) {
  .p-shopguide-wrap {
    margin-left: -10px;
    margin-right: -10px;
  }
}
@media screen and (max-width: 767px) {
  .p-shopguide-wrap {
    display: block;
    margin-left: 0;
    margin-right: 0;
  }
}
.p-shopguide-column {
  box-sizing: border-box;
  padding-left: 23px;
  padding-right: 23px;
  width: 33.3333%;
  font-feature-settings: "palt" 1;
}
@media screen and (max-width: 1030px) {
  .p-shopguide-column {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-shopguide-column {
    padding-left: 0;
    padding-right: 0;
    width: auto;
  }
}
.p-shopguide-box {
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  height: 100%;
}
.p-shopguide-head {
  margin-bottom: 20px;
  padding-top: 30px;
  border-bottom: 1px solid #b2b2b2;
  text-align: center;
}
.p-shopguide-head .c-ttl-sub {
  margin-bottom: 30px;
}
.p-shopguide__icon {
  margin-bottom: 20px;
}
.p-shopguide__ttl {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: normal;
}
.p-shopguide__body {
  margin-bottom: 35px;
  margin-left: 0;
  color: #909090;
  overflow-wrap: break-word;
}
.p-shopguide__img {
  margin-bottom: 15px;
}
.p-shopguide__point-ttl {
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: bold;
}
.p-shopguide-cregit-list {
  display: flex;
  flex-wrap: wrap;
}
.p-shopguide-cregit-list__item {
  margin-right: 7px;
  margin-bottom: 10px;
}
.p-shopguide__attention {
  font-size: 12px;
}

/* ボタンNEWスライダーだけ矢印差し替え */
.p-new-item .bx-prev{
  background: url(https://img07.shop-pro.jp/PA01348/565/etc_base64/YXJyb3ctcHJldg.png?cmsp_timestamp=20260224184616) center center no-repeat !important;
  background-size: contain !important;
}

.p-new-item .bx-next{
  background: url(https://img07.shop-pro.jp/PA01348/565/etc_base64/YXJyb3ctbmV4dA.png?cmsp_timestamp=20260224184616) center center no-repeat !important;
  background-size: contain !important;
}

.p-new-item .bx-prev,
.p-new-item .bx-next{
  width: 32px !important;
  height: 32px !important;
}

/* 標準NEW画像を消す */
img.new_mark_img2{
  display:none !important;
}

/* 標準SALE画像を消す */
.itemlist_name img[src*="icons"],
.itemlist_name img[src*="sale"],
.itemlist_name img[src*="icons21"]{
  display:none !important;
}
/* ===== 既存NEW / SALE画像を消す ===== */
img.new_mark_img2,
.itemlist_name img[src*="icons"],
.itemlist_name img[src*="sale"]{
  display:none !important;
}

/* ===== オリジナルバッジ ===== */
.c-item-list__item,
.itemlist_box{
  position:relative;
}

/* ===== expl（型番）の下に表示 ===== */

/* 既存画像は消す */
img.new_mark_img2,
.itemlist_name img[src*="icons"],
.itemlist_name img[src*="sale"],
.itemlist_name img[src*="icons21"]{
  display:none !important;
}

/* NEW：型番の下 */
.c-item-list__item.is-new .c-item-list__expl::after{
  content:"new";
  display:block;
  margin-top:8px;
  width:fit-content;
  background:#D4A017;
  color:#fff;
  font-family: var(--font-serif);
  font-size:14px;
  font-weight: 600;
  padding: 0.5px 12px 4px 12px;
  border-radius:3px;
  text-transform:lowercase;
}

/* SALE：型番の下 */
.c-item-list__item.is-sale .c-item-list__expl::after{
  content:"sale";
  display:block;
  margin-top:8px;
  width:fit-content;
  background:#B5522D;
  color:#fff;
  font-family: var(--font-serif);
  font-size:14px;
  font-weight: 600;
  padding: 0.5px 12px;
  border-radius:3px;
  text-transform:lowercase;
}

/* SP微調整 */
@media screen and (max-width:768px){
  .c-item-list__item.is-new .c-item-list__expl::after,
  .c-item-list__item.is-sale .c-item-list__expl::after{
    font-size:12px;
    padding:5px 16px;
    border-radius:14px;
  }
}

/******************************/
/* footer */
/******************************/
/* ベース設定 */
:root {
  --color-primary: #000;
  --color-secondary: #fff;
}

.l-footer {
  background: var(--color-primary);
  color: var(--color-secondary);
  padding: 60px 5% 30px;
  font-family: var(--font-serif);
}

.l-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr; /* ★3カラム */
  gap: 80px;
  align-items: start;
}

/* ロゴのスタイル */
.l-footer-logo a {
  font-size: 40px;
  text-decoration: none;
  color: var(--color-secondary)!important;
}
.l-footer-logo {
  display:flex;
  justify-content:center;
}

/* SNSセクション */
.l-footer-sns {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.l-footer-sns__ttl {
  font-family: "Barlow", sans-serif;
  font-size: 18px;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
  font-weight: bold;
}

.l-footer-sns__ids {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  list-style: none;
  padding: 0;
}

.l-footer-sns__ids a {
  font-size: 14px;
  text-decoration: underline;
  color: inherit;
}

.l-footer-sns__ids a{
  text-decoration: underline;
  text-decoration-thickness: 1px; 
  text-underline-offset: 3px;      
}

/* ナビゲーション（2行目として配置） */
.l-footer-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 0;
}

.l-footer-nav__link {
  font-size: 14px;
  text-decoration: none;
  color: inherit;
  letter-spacing: 0.05em;
}

/* 下部エリア（Topとコピーライト） */
.l-footer-bottom {
  max-width: 1200px;
  margin: 60px auto 0;
  border-top: 1px solid #333;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.l-scroll-top a {
  font-size: 12px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-secondary)!important;
}

.l-scroll-top a::before {
  content: '▲';
  display: inline-block;
  border: 1px solid #fff;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  text-align: center;
  line-height: 24px;
  font-size: 10px;
  color: var(--color-secondary)!important;
}

.l-copyright {
  font-size: 10px;
  color: #888;
}

/******************************/
/* モバイル対応 (max-width: 767px) */
/******************************/
@media screen and (max-width: 767px) {
  .l-footer-inner {
    grid-template-columns: 1fr; /* 1列にする */
    gap: 30px;
  }

  .l-footer-sns {
    grid-template-columns: 1fr;
  }

  .l-footer-logo {
    order: 2; /* 画像の通り、SNSの後にロゴを配置 */
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    margin-bottom: 0;
  }

  .l-footer-sns {
    order: 1;
  }

  .l-footer-nav {
    order: 3;
    grid-column: 1;
    grid-template-columns: 1fr;
    text-align: left;
  }

  .l-footer-nav__link {
    padding: 2px 0;
    border-bottom: none;
  }

  .l-footer-bottom {
    flex-direction: column-reverse;
    gap: 30px;
    border-top: none;
  }
}

  /* footer最終調整 */
@media screen and (max-width: 767px) {
.l-footer {
  padding: 75px 20px;
  }
  
.l-footer-logo img {
  padding: 45px;
  }
}
/******************************/
/* free page */
/******************************/
.p-freepage__attention {
  margin-top: 15px;
  margin-bottom: 30px;
  color: #ff0000;
  font-weight: bold;
  text-align: center;
}
.p-freepage__img {
  margin-top: 15px;
  margin-bottom: 15px;
  text-align: center;
}
.p-freepage__img img {
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}
.p-freepage-ol {
  padding-left: 25px;
  list-style-type: decimal;
}
.p-freepage-ol__item {
  margin-top: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}

/* ===== smooth scroll ===== */
html {
  scroll-behavior: smooth;
}

/* ===== フォント調整 ===== */
.l-header-nav-list > li > a,
.l-header-utils,
.mega-name,
.p-product-recommend-list__price,
.p-item-list-num,
.c-pager-list__link {
  font-family: var(--font-en);
}

html, body {
  overflow-x: hidden;
}

/* ===== SPアコーディオン調整 ===== */
@media screen and (max-width:768px){
  .l-header.is-open .l-header-nav {
    max-height: calc(100vh - 120px);
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding-bottom: 80px;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
    width: 100%;
  }

  /* nav にpaddingを持たせた分、ul・liはwidth:100%に戻す */
  .l-header.is-open .l-header-nav-list {
    width: 100%;
    box-sizing: border-box;
  }

  .l-header.is-open .l-header-nav-list > li {
    width: 100%;
    box-sizing: border-box;
  }

  /* 検索ボックスのliも100%幅に */
  .l-header.is-open .l-header-search_sp {
    width: 100%;
    box-sizing: border-box;
  }
}

.fadeinup {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.fadeinup.scrollin {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
  古いフリーページコード（Bootstrap構造）の互換レイアウト
   ========================================================================== */

/* フリーページ（.free_pageなど）の中にある .row だけを安全に制御 */
.l-main.free .row, 
.l-main[class*="free"] .row,
#contents .row {
  display: flex !important;
  flex-wrap: wrap !important;
  margin-right: -15px !important;
  margin-left: -15px !important;
  box-sizing: border-box !important;
}

/* PC：4カラム（col-lg-3）の救済設定 */
.l-main.free .col-lg-3,
.l-main[class*="free"] .col-lg-3,
#contents .col-lg-3 {
  position: relative !important;
  width: 25% !important; /* 強制的に横並び4カラムにする */
  max-width: 25% !important;
  flex: 0 0 25% !important;
  padding-right: 15px !important;
  padding-left: 15px !important;
  margin-bottom: 30px !important;
  box-sizing: border-box !important;
}

/* PC：2カラム（col-6）のベース（スマホで上書きするためPCでは25%を優先） */
@media screen and (min-width: 769px) {
  .l-main.free .col-6,
  .l-main[class*="free"] .col-6,
  #contents .col-6 {
    width: 25% !important;
    max-width: 25% !important;
    flex: 0 0 25% !important;
  }
}

.l-main[class*="free"] .original-img::before {
  content: none !important; /* 固定比率の命令を完全にリセット */
  display: none !important;
}
.l-main[class*="free"] .original-img {
  width: 100% !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border-radius: 3px !important;
  position: relative !important;
  display: block !important;
}
.l-main[class*="free"] .original-img img {
  position: static !important; /* 絶対配置を解除し、画像本来の比率で表示 */
  display: block !important;
  width: 100% !important;     /* 4カラムの横幅いっぱいにフィット */
  height: auto !important;    /* 縦幅は画像に合わせて自動で可変（見切れをゼロに） */
  max-width: 100% !important; 
  max-height: none !important; 
  margin: 0 !important;       /* 左端を完璧に固定 */
  object-fit: normal !important; 
}

.l-main[class*="free"] .original-info {
  text-align: left !important;
  margin-top: 10px !important;
}
.l-main[class*="free"] .original-info .date {
  display: block !important;
  font-size: 12px !important;
  color: #909090 !important;
  margin-bottom: 3px !important;
}

/* 古いボタンの調整 */
.l-main[class*="free"] .a_button {
  display: inline-block !important;
  text-decoration: none !important;
  border: 1px solid darkgray !important;
  background-color: white !important;
  color: black !important;
  padding: 13px 20px !important;
  margin: 20px 5px 5px 5px !important;
  transition: all 0.3s ease !important;
}
.l-main[class*="free"] .a_button:hover {
  background-color: black !important;
  color: white !important;
}

/* ==========================================================================
   スマートフォン対応 (768px以下) 【最終完成版】
   ★2カラム化・横揺れ防止・float右ズレ解除をすべて1つにまとめた救済仕様
   ========================================================================== */
@media screen and (max-width: 768px) {
  
  /* フリーページ内のグリッド余白をスマホ用に調整 */
  .l-main.free .row,
  .l-main[class*="free"] .row,
  #contents .row,
  #free-content .original-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    margin-right: -10px !important;
    margin-left: -10px !important;
  }
  
  /* 旧f7・f31用：どんな古いクラス名（col-lg-4など）が使われても強制2カラム化 */
  .l-main.free [class*="col-"],
  .l-main[class*="free"] [class*="col-"],
  #contents [class*="col-"],
  #free-content [class*="col-"],
  .l-main.free .col-6,
  .l-main[class*="free"] .col-6,
  #contents .col-6,
  .l-main.free .col-lg-3,
  .l-main[class*="free"] .col-lg-3,
  #contents .col-lg-3,
  .l-main.free .col-lg-4,
  .l-main[class*="free"] .col-lg-4,
  #contents .col-lg-4 {
    display: block !important;
    width: 50% !important;        /* スマホは事例画像を強制2カラム固定 */
    max-width: 50% !important;
    flex: 0 0 50% !important;
    padding-right: 10px !important;
    padding-left: 10px !important;
    margin-bottom: 25px !important;
    float: left !important;
    box-sizing: border-box !important;
  }

  /* 旧f45・f54用：全体の「左ズレ（ネガティブマージン）」を解除し画面中央に戻す */
  .l-main.free #free-content,
  .l-main[class*="free"] #free-content,
  .l-main[class*="free"] #inner-contents {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 15px !important; /* 左右に15pxのクッションを作って見切れを防止 */
    box-sizing: border-box !important;
  }

  /* 旧f54用：古いPC用のfloat（回り込み設定）を解除し、画像を中央寄せ（縦積み）にする */
  .l-main[class*="free"] .pre-img,
  .l-main[class*="free"] .pricebox,
  .l-main[class*="free"] .price-img {
    float: none !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto 30px !important; /* 左右autoで完全に画面の中央へ */
    text-align: center !important;
    position: static !important;
  }

/* 旧f45・f87用：古いテキストボックス、表、コンテナの固定幅・ズレを画面幅に自動フィット */
  .l-main[class*="free"] #free-content, /* ★f87のネガティブマージン(左ズレ)をここで一括強制解除 */
  .l-main[class*="free"] .txtbox,
  .l-main[class*="free"] .txtbox2,
  .l-main[class*="free"] .txtbox3,
  .l-main[class*="free"] table,
  .l-main[class*="free"] .tbl-r03,
  .l-main[class*="free"] .guide,
  .l-main[class*="free"] .guide2,
  .l-main[class*="free"] .border,
  .l-main[class*="free"] .pricetext,
  .l-main[class*="free"] .btn-wrap { /* f87のアウトレット枠の固定幅(50%)もスマホで100%に可変 */
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important; /* マイナスマージンを上書きして中央に引き戻す */
    margin-right: auto !important;
    box-sizing: border-box !important;
  }

  /* すべての画像がスマホ画面の横幅を絶対に飛び出さないように制御 */
  .l-main[class*="free"] img {
    float: none !important;
    display: block !important;
    width: 100% !important;
    height: auto !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* 古いテキストがスマホ画面の左右ピタピタに張り付くのを防ぐためのクッション */
  .l-main[class*="free"] .txt,
  .l-main[class*="free"] .txt2,
  .l-main[class*="free"] .txtsize,
  .l-main[class*="free"] .txtspec {
    padding: 0 10px !important;
    box-sizing: border-box !important;
  }

  /* 全ての古いボタン（事例リンクやご購入ボタン）をスマホ幅（90%）に広げて押しやすくする */
  .l-main[class*="free"] .btnbox {
    width: 100% !important;
    text-align: center !important;
    margin-top: 10px !important;
    margin-bottom: 40px !important;
  }
  .l-main[class*="free"] .a_button {
    display: inline-block !important;
    width: 90% !important; /* ボタンを横長にしてスマホ最適化 */
    max-width: 340px !important; /* 広がりすぎ防止 */
    padding: 13px 10px !important;
    margin: 10px auto !important;
    box-sizing: border-box !important;
  }
}

/* ページ遷移 */
html.is-scroll-restoring body {
  opacity: 0;
}

html body {
  transition: opacity .5s ease;
}

html:not(.is-scroll-restoring) body {
  opacity: 1;
}