/********************************************
  ポリ美研究所 共通CSS 清書版
  カラーミーショップ用 (検索窓改善統合)
********************************************/

/* ============================================
   00. DESIGN TOKENS
============================================ */

:root {
  --poly-bg: #f7fafc;
  --poly-bg-soft: #f3f7f8;
  --poly-white: #ffffff;

  --poly-navy: #172b49;
  --poly-navy-deep: #10233b;
  --poly-text: #263445;
  --poly-muted: #667487;
  --poly-light-text: #8a96a3;

  --poly-green: #5f8f80;
  --poly-green-dark: #3f7162;
  --poly-green-soft: #e8f3ee;

  --poly-pink: #e97992;
  --poly-pink-dark: #d85f7c;
  --poly-pink-deep: #c84f6c;
  --poly-pink-soft: #fff4f7;

  --poly-border: #dfe7ec;
  --poly-border-soft: #edf2f5;

  --poly-danger: #b94b4b;
  --poly-soldout: #a1a9b2;

  --poly-radius-sm: 8px;
  --poly-radius-md: 14px;
  --poly-radius-lg: 20px;

  --poly-shadow-soft: 0 8px 22px rgba(16, 35, 59, 0.05);
  --poly-shadow-card: 0 10px 28px rgba(16, 35, 59, 0.07);
  --poly-shadow-cta: 0 12px 24px rgba(217, 95, 124, 0.28);

  --poly-font:
    "Noto Sans JP",
    "Hiragino Sans",
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic",
    "Meiryo",
    sans-serif;
}


/* ============================================
   01. BASE
============================================ */

html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--poly-bg);
  color: var(--poly-text);
  font-family: var(--poly-font);
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

ul,
ol,
dl {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  margin-top: 0;
}

a {
  color: var(--poly-navy);
  text-decoration: none;
  transition:
    color 0.2s ease,
    opacity 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

a:hover {
  color: var(--poly-green-dark);
}

button,
input,
select,
textarea {
  font-family: var(--poly-font);
}

button {
  cursor: pointer;
}

[data-whatinput="mouse"] *:focus,
[data-whatinput="touch"] *:focus {
  outline: none;
}


/* ============================================
   02. UTILITY / LAYOUT
============================================ */

.u-container {
  width: min(100%, 1120px);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.u-contents {
  padding-top: 32px;
  padding-bottom: 48px;
}

.u-contents-s {
  padding-top: 48px;
  padding-bottom: 48px;
}

.u-attention {
  color: var(--poly-danger);
  font-weight: 500;
}

.u-bold {
  font-weight: 700;
}

.u-text-right {
  text-align: right;
}

.u-marker {
  background: linear-gradient(transparent 68%, #fff4a3 68%);
}

.u-visually-hidden {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  white-space: nowrap;
}

.u-pc-only,
.u-pc-only-inline,
.u-pc-only-inlineBlock,
.u-pc-only-Flex {
  display: initial;
}

.u-sp-only,
.u-sp-only-inline,
.u-sp-only-inline-block,
.u-sp-only-flex {
  display: none;
}

.u-hidden {
  overflow: hidden;
}

.u-opa img {
  opacity: 1;
  transition: opacity 0.25s ease;
}

.u-opa img:hover {
  opacity: 0.78;
}

.u-img-scale {
  display: block;
  overflow: hidden;
  position: relative;
}

.u-img-scale img {
  display: inline-block;
  width: 100%;
  transform: scale(1);
  transition: transform 0.3s ease;
  backface-visibility: hidden;
}

.u-img-scale:hover img {
  transform: scale(1.035);
}

.u-overflow-slide {
  width: 100%;
}

.l-main {
  padding-top: 0;
  background: var(--poly-bg);
}

.l-bottom {
  margin-top: 48px;
  background: var(--poly-white);
}

.l-contents-wrap {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.l-contents-main {
  flex: 1;
  min-width: 0;
  width: auto;
}

.l-contents-side {
  flex: 0 0 220px;
  width: 220px;
}


/* ============================================
   03. COMMON TITLES
============================================ */

.c-ttl-main {
  display: block;
  margin: 0 0 28px;
  color: var(--poly-navy-deep);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.08em;
  font-feature-settings: "palt" 1;
}

.c-ttl-main__ja {
  display: block;
  margin-top: 8px;
  color: var(--poly-muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.c-ttl-sub {
  margin: 0 0 24px;
  color: var(--poly-navy-deep);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-align: center;
  font-feature-settings: "palt" 1;
}

.c-ttl-sub__ja {
  display: block;
  margin-top: 8px;
  color: var(--poly-muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.c-ttl-second {
  margin: 0 0 24px;
  color: var(--poly-navy-deep);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}


/* ============================================
   04. HEADER (検索窓まわりの不具合修正を統合済み)
============================================ */

.l-header {
  position: relative;
  z-index: 1000;
  width: 100%;
  min-width: 320px;
  background: var(--poly-white);
  border-top: 6px solid #bde3f4;
  border-bottom: 1px solid var(--poly-border);
  transition: box-shadow 0.25s ease;
}

.l-header.is-fixed,
.l-header.is-open {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 6px 22px rgba(16, 35, 59, 0.08);
  backdrop-filter: blur(8px);
}

.l-header-main {
  position: relative;
}

.l-header-main__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.l-header-logo {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
}

.l-header-logo__img {
  margin: 0;
  max-width: 420px;
  word-break: normal;
}

.l-header-logo__img a {
  display: inline-flex;
  align-items: center;
}

.l-header-logo__img img {
  display: block;
  max-width: 360px;
  max-height: 78px;
  width: auto;
  height: auto;
}

.l-header-logo__type-txt {
  color: var(--poly-navy-deep);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.l-header-logo__txt {
  display: none;
}

.l-header-search {
  display: flex;
  align-items: center;
  gap: 4px;
  position: static;
  z-index: 1000;
}

.l-header-search__btn,
.l-header-cart a,
.l-menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--poly-border);
  border-radius: 999px;
  background: var(--poly-white);
}

.l-header-search__btn:hover,
.l-header-cart a:hover,
.l-menu-btn:hover {
  background: var(--poly-bg-soft);
  text-decoration: none;
}

.l-header-search__btn img {
  width: 18px;
  height: auto;
}

.l-header-cart {
  position: relative;
}

.l-header-cart a {
  position: relative;
}

.l-header-cart a img {
  width: 19px;
  height: auto;
}

.p-global-header__cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--poly-pink);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.l-header-search__contents {
  display: none;
}

/* 開いたときの検索窓ラッパー（重なり・はみ出し対策版） */
.l-header-search__box {
  display: flex;
  align-items: center;
  position: absolute;
  top: calc(100% + 4px);
  right: 24px;
  z-index: 99999 !important; /* メニューの突き抜けを防ぐ最強値 */
  width: min(640px, calc(100vw - 48px));
  padding: 16px;
  border: 1px solid var(--poly-border);
  border-radius: var(--poly-radius-md);
  background: var(--poly-white) !important; /* 下地が絶対に透けない不透明白 */
  box-shadow: 0 10px 30px rgba(16, 35, 59, 0.15);
}

.l-header-search__form {
  position: relative;
  flex: 1;
  margin: 0;
}

/* 入力パーツの枠線・背景の視認性向上 */
.l-header-search__input {
  background: var(--poly-white);
  border: 1.5px solid var(--poly-muted);
  border-radius: 999px;
  overflow: hidden;
  box-shadow: inset 0 2px 4px rgba(16, 35, 59, 0.03);
}

.l-header-search__input input {
  box-sizing: border-box;
  width: 100%;
  height: 46px;
  padding: 0 54px 0 18px; /* 右側の虫眼鏡とテキストが絶対被らない余白 */
  border: none;
  background: transparent;
  color: var(--poly-text);
  font-size: 14px;
}

.l-header-search__input input::placeholder {
  color: var(--poly-muted);
  opacity: 0.8;
}

.l-header-search__input input:focus {
  outline: none;
}

/* 入力中（フォーカス時）の枠線アニメーション */
.l-header-search__box:has(input:focus) .l-header-search__input {
  border-color: var(--poly-green-dark);
  box-shadow: 0 0 0 3px var(--poly-green-soft);
}

/* 検索実行（虫眼鏡ボタン） */
.l-header-search__submit {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: var(--poly-navy);
  z-index: 2;
  transition: background-color 0.2s ease;
}

.l-header-search__submit:hover {
  background: var(--poly-green-dark);
}

.l-header-search__submit img {
  width: 16px;
  filter: brightness(0) invert(1);
}

/* 閉じる（×）ボタンのサイズ調整・収まり改善 */
.l-header-search__close {
  position: relative;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  margin-left: 12px;
  border: none;
  border-radius: 999px;
  background: var(--poly-bg-soft);
  cursor: pointer;
}

.l-header-search__close span {
  position: absolute;
  left: 10px;
  width: 18px;
  height: 2px; /* 少し太くしてバツマークの視認性アップ */
  background: var(--poly-muted);
}

.l-header-search__close span:nth-child(1) {
  top: 18px;
  transform: rotate(45deg);
}

.l-header-search__close span:nth-child(2) {
  top: 18px;
  transform: rotate(-45deg);
}

.l-menu-btn {
  display: none;
  position: relative;
  z-index: 10000;
}

.l-menu-btn span {
  position: absolute;
  left: 13px;
  width: 20px;
  height: 1px;
  background: var(--poly-navy);
  transition: transform 0.2s ease, top 0.2s ease;
}

.l-menu-btn span:nth-of-type(1) {
  top: 17px;
}

.l-menu-btn span:nth-of-type(2) {
  top: 27px;
}

.l-menu-btn.is-on span:nth-of-type(1) {
  top: 22px;
  transform: rotate(-45deg);
}

.l-menu-btn.is-on span:nth-of-type(2) {
  top: 22px;
  transform: rotate(45deg);
}

.l-main-navi {
  position: relative;
  z-index: 100;
  border-top: 1px solid var(--poly-border-soft);
}

.l-main-navi__in {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
}

.l-main-navi-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.l-main-navi-list__item {
  margin: 0;
}

.l-main-navi-list__item a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 6px 8px;
  border-radius: 999px;
}

.l-main-navi-list__item a:hover {
  background: var(--poly-bg-soft);
  opacity: 1;
}

.l-main-navi-list__item img {
  display: block;
  max-height: 32px;
  width: auto;
}

.l-main-navi-list__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--poly-navy);
  font-size: 13px;
  font-weight: 700;
  background: transparent;
}

.l-main-navi-list__link:hover,
.l-main-navi-list__link.is-on {
  background: var(--poly-green-soft);
  color: var(--poly-green-dark);
  text-decoration: none;
}

.l-main-navi-list__link::before {
  content: none;
}

.l-help-navi-box {
  display: flex;
  align-items: center;
  position: absolute;
  top: -54px;
  right: 0;
  gap: 18px;
}

.l-help-navi-list {
  display: flex;
  align-items: center;
  gap: 16px;
}

.l-help-navi-list__item {
  margin: 0;
}

.l-help-navi-list__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--poly-muted);
  font-size: 12px;
  font-weight: 500;
}

.l-help-navi-list__link img {
  width: 16px;
  height: auto;
}

.l-help-navi-list__link:hover {
  color: var(--poly-green-dark);
  text-decoration: none;
}

.l-sns-navi-list {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.l-sns-navi-list__item {
  margin: 0;
}

.l-main-navi-overlay {
  display: none;
}

.h-line {
  height: 10px;
  max-width: 1120px;
  margin: 10px auto;
  background-image: url(https://nissin-chemical.jp/shopimg/line.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
}


/* ============================================
   05. SIDE NAVIGATION
============================================ */

.l-side-navi {
  margin-bottom: 28px;
  border: 1px solid var(--poly-border);
  border-radius: var(--poly-radius-md);
  background: var(--poly-white);
  overflow: hidden;
}

.l-side-navi__ttl {
  margin: 0;
  padding: 14px 16px;
  border-bottom: 1px solid var(--poly-border);
  background: var(--poly-bg-soft);
  color: var(--poly-navy);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.l-side-navi-list {
  border: none;
}

.l-side-navi-list__item {
  border-top: 1px solid var(--poly-border-soft);
}

.l-side-navi-list__item:first-child {
  border-top: none;
}

.l-side-navi-list__link {
  display: block;
  position: relative;
  width: 100%;
  padding: 13px 34px 13px 16px;
  border: 0;
  background: transparent;
  color: var(--poly-text);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  text-align: left;
}

.l-side-navi-list__link:hover,
.l-side-navi-list__link.is-on {
  background: var(--poly-green-soft);
  color: var(--poly-green-dark);
  text-decoration: none;
}

.l-side-navi-list__link::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-right: 1px solid var(--poly-muted);
  border-bottom: 1px solid var(--poly-muted);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.l-side-navi-list__link.is-link::before {
  transform: rotate(-45deg);
}

.l-side-navi-list__link.is-on::before {
  transform: rotate(-135deg);
}

.l-side-navi-sub-list {
  display: none;
  padding: 6px 0;
  background: #fbfdfe;
}

.l-side-navi-sub-list__link {
  display: block;
  padding: 9px 16px 9px 28px;
  color: var(--poly-muted);
  font-size: 12px;
}

.l-side-navi-sub-list__link:hover {
  color: var(--poly-green-dark);
}


/* ============================================
   06. PRODUCT / FAVORITE CARD
============================================ */

.c-item-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px 24px;
  margin: 0;
  padding: 0;
}

.c-item-list__item {
  position: relative;
  width: auto;
  margin: 0;
  padding: 0;
  word-break: normal;
}

.c-item-list__item.is-hidden {
  display: none;
}

.c-item-list__img,
.c-favorite-list__img {
  position: relative;
  background: var(--poly-white);
  overflow: hidden;
}

.c-item-list__img {
  margin-bottom: 14px;
  border: 1px solid var(--poly-border);
  border-radius: var(--poly-radius-md);
}

.c-favorite-list__img {
  margin-bottom: 8px;
  border: 1px solid var(--poly-border);
  border-radius: var(--poly-radius-sm);
}

.c-item-list__img::before,
.c-favorite-list__img::before {
  content: "";
  display: block;
  padding-top: 100%;
}

.c-item-list__img a,
.c-favorite-list__img a {
  display: block;
  position: absolute;
  inset: 0;
}

.c-item-list__img a {
  padding: 14px;
}

.c-favorite-list__img a {
  padding: 8px;
}

.c-item-list__img img,
.c-favorite-list__img img {
  display: block;
  position: absolute;
  inset: 0;
  width: auto !important;
  margin: auto;
  object-fit: contain;
}

.c-item-list__img img {
  max-width: calc(100% - 28px);
  max-height: calc(100% - 28px);
}

.c-favorite-list__img img {
  max-width: calc(100% - 16px);
  max-height: calc(100% - 16px);
}

.c-item-list__ttl {
  color: var(--poly-navy-deep);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
}

.c-item-list__ttl a {
  color: inherit;
}

.c-item-list__ttl a:hover {
  color: var(--poly-green-dark);
}

.c-item-list__ttl img {
  vertical-align: middle;
}

.c-item-list__price,
.c-favorite-list__price {
  color: var(--poly-green-dark);
  font-weight: 700;
}

.c-item-list__price {
  margin-top: 8px;
  font-size: 14px;
}

.c-favorite-list__price {
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.5;
  white-space: normal;
}

.c-item-list__price.is-strikethrough,
.c-favorite-list__price.is-strikethrough {
  color: var(--poly-light-text);
  font-weight: 400;
  text-decoration: line-through;
}

.c-item-list__price.is-strikethrough {
  margin-top: 2px;
  font-size: 12px;
}

.c-item-list__price.is-soldout,
.c-favorite-list__price.is-soldout {
  color: var(--poly-soldout);
}

.c-item-list__expl {
  margin-top: 8px;
  color: var(--poly-muted);
  font-size: 12px;
  line-height: 1.7;
}

.c-item-list__btn {
  display: block;
  position: absolute;
  right: 8px;
  bottom: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #c9d2da;
  cursor: pointer;
  text-align: center;
}

.c-item-list__btn.is-added {
  color: var(--poly-pink);
}

.c-item-list__btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.c-favorite-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
  margin: 0;
  padding: 0;
}

.c-favorite-list__item {
  width: auto;
  margin: 0;
  padding: 0;
}

.c-favorite-list__txt {
  white-space: normal;
}


/* ============================================
   07. BUTTON / TABLE / BREADCRUMB / PAGER
============================================ */

.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid var(--poly-navy);
  border-radius: 999px;
  background: var(--poly-white);
  color: var(--poly-navy);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  cursor: pointer;
}

.c-btn::before,
.c-btn::after {
  content: none;
}

.c-btn:hover {
  background: var(--poly-navy);
  color: var(--poly-white);
  text-decoration: none;
}

.c-btn-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 62px;
  padding: 0 24px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--poly-pink) 0%, var(--poly-pink-dark) 100%);
  color: #ffffff;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  cursor: pointer;
  box-shadow: var(--poly-shadow-cta);
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
}

.c-btn-cart:hover {
  background: linear-gradient(135deg, var(--poly-pink-dark) 0%, var(--poly-pink-deep) 100%);
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(217, 95, 124, 0.34);
}

.c-btn-cart .c-icon-cart,
.c-btn-cart i.c-icon-cart {
  margin-right: 10px;
  filter: brightness(0) invert(1);
}

.c-btn-cart.is-disabled,
.c-btn-cart.is-disabled:hover {
  background: #c8d0d8;
  box-shadow: none;
  cursor: default;
  transform: none;
}

.c-btn-cart.is-soldout,
.c-btn-cart.is-soldout:hover {
  background: var(--poly-soldout);
  box-shadow: none;
  cursor: default;
  transform: none;
}

.c-btn-cart.is-membersonly,
.c-btn-cart.is-membersonly:hover {
  background: #5c99a5;
  box-shadow: none;
  cursor: default;
  transform: none;
}

.c-icon-cart {
  display: inline-block;
  width: 19px;
  height: 18px;
  margin-right: 10px;
  background: url(https://img.shop-pro.jp/tmpl_img/86/icon-template-cart.png) no-repeat;
  background-size: 19px 18px;
  filter: brightness(0) invert(1);
  vertical-align: -2px;
}

.c-more {
  text-align: center;
}

.c-not-found {
  margin-bottom: 48px;
  color: var(--poly-muted);
  text-align: center;
}

.c-tbl-list {
  border-top: 1px solid var(--poly-border);
}

.c-tbl-list__tr {
  display: flex;
  padding: 18px 0;
  border-bottom: 1px solid var(--poly-border);
}

.c-tbl-list__th {
  flex: 0 0 220px;
  margin: 0;
  color: var(--poly-navy);
  font-size: 13px;
  font-weight: 700;
}

.c-tbl-list__td {
  flex: 1;
  margin: 0 0 0 24px;
  color: var(--poly-muted);
  font-size: 13px;
  line-height: 1.8;
}

.c-breadcrumbs + .u-contents {
  padding-top: 24px;
}

.c-breadcrumbs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  padding-top: 16px;
  margin-bottom: 28px;
  color: var(--poly-muted);
  font-size: 12px;
}

.c-breadcrumbs-list__item {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-right: 22px;
}

.c-breadcrumbs-list__item::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -14px;
  width: 5px;
  height: 5px;
  margin-top: -3px;
  border-right: 1px solid var(--poly-light-text);
  border-bottom: 1px solid var(--poly-light-text);
  transform: rotate(-45deg);
}

.c-breadcrumbs-list__item:last-child::before {
  content: none;
}

.c-breadcrumbs-list a,
.c-breadcrumbs-list__link {
  color: var(--poly-muted);
}

.c-breadcrumbs-list a:hover,
.c-breadcrumbs-list__link:hover {
  color: var(--poly-green-dark);
}

.c-pager {
  margin-top: 48px;
  margin-bottom: 48px;
  text-align: center;
}

.c-pager__total {
  margin-bottom: 18px;
  color: var(--poly-muted);
  font-size: 13px;
}

.c-pager-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-bottom: 24px;
}

.c-pager-list__item {
  min-width: 34px;
  line-height: 34px;
  background: transparent;
  text-align: center;
}

.c-pager-list__link {
  display: block;
  min-width: 34px;
  border: 1px solid var(--poly-border);
  border-radius: 999px;
  background: var(--poly-white);
  color: var(--poly-text);
  text-decoration: none;
}

.c-pager-list__link:hover {
  border-color: var(--poly-green);
  background: var(--poly-green-soft);
  color: var(--poly-green-dark);
}

.c-pager-list__link.is-current {
  border-color: var(--poly-green-dark);
  background: var(--poly-green-dark);
  color: var(--poly-white);
}

.c-pager-list__link.is-prev,
.c-pager-list__link.is-next {
  position: relative;
  min-width: 38px;
  text-indent: -9999px;
  background: var(--poly-white);
}

.c-pager-list__link.is-prev::before,
.c-pager-list__link.is-next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
}

.c-pager-list__link.is-prev::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.c-pager-list__link.is-next::before {
  transform: translate(-65%, -50%) rotate(45deg);
}

.c-pager-list__link.is-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.c-pager-list__page {
  display: none;
}


/* ============================================
   08. ICON
============================================ */

.icon-b,
.icon-w {
  width: 16px;
  height: 16px;
  display: inline-block;
}

.icon-lg-b,
.icon-lg-w {
  width: 24px;
  height: 24px;
  display: inline-block;
}

.icon-b {
  background-image: url(https://img.shop-pro.jp/tmpl_img/73/icon16_b.png);
}

.icon-w {
  background-image: url(https://img.shop-pro.jp/tmpl_img/73/icon16_w.png);
}

.icon-lg-b {
  background-image: url(https://img.shop-pro.jp/tmpl_img/73/icon24_b.png);
}

.icon-lg-w {
  background-image: url(https://img.shop-pro.jp/tmpl_img/73/icon24_w.png);
}

.icon-lg-b.icon-instagram {
  background-position: -168px -288px;
}

.icon-lg-b.icon-twitter {
  background-position: -144px -264px;
}

.icon-lg-b.icon-facebook {
  background-position: -192px -264px;
}

.icon-lg-b.icon-video {
  background-position: -456px -144px;
}

.icon-lg-b.icon-pinterest {
  background-position: -312px -264px;
}


/* ============================================
   09. STAFF / CALENDAR / SHOP GUIDE
============================================ */

.p-shop-info {
  display: flex;
  gap: 24px;
}

.p-shop-info .u-contents-s {
  flex: 1;
}

.p-staff,
.p-calendar {
  padding: 32px;
  border: 1px solid var(--poly-border);
  border-radius: var(--poly-radius-lg);
  background: var(--poly-bg-soft);
}

.p-staff-box {
  overflow: hidden;
  color: var(--poly-muted);
  font-size: 13px;
  line-height: 1.9;
}

.p-staff__img {
  float: left;
  width: 100px;
  margin-right: 22px;
  margin-bottom: 16px;
}

.p-staff__img-name {
  margin-top: 6px;
  color: var(--poly-muted);
  font-size: 12px;
  text-align: center;
}

.p-calendar {
  flex: 1;
  min-width: 0;
}

.side_cal {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.tbl_calendar {
  width: 220px;
  text-align: center;
}

.tbl_calendar caption {
  margin-bottom: 12px;
  color: var(--poly-navy);
  font-size: 15px;
  font-weight: 700;
}

.tbl_calendar th,
.tbl_calendar td {
  padding: 5px;
  font-size: 12px;
}

.side_cal_memo {
  margin-top: 14px;
  color: var(--poly-muted);
  font-size: 12px;
}

.p-shopguide {
  margin-bottom: 48px;
}

.p-shopguide-wrap {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 0;
}

.p-shopguide-column {
  width: auto;
  padding: 0;
}

.p-shopguide-box {
  height: 100%;
  padding: 24px;
  border: 1px solid var(--poly-border);
  border-radius: var(--poly-radius-lg);
  background: var(--poly-white);
}

.p-shopguide-head {
  margin-bottom: 18px;
  padding-top: 0;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--poly-border);
  text-align: center;
}

.p-shopguide-head .c-ttl-sub {
  margin-bottom: 0;
}

.p-shopguide__icon {
  margin-bottom: 12px;
}

.p-shopguide__icon img {
  width: 36px;
  height: auto;
}

.p-shopguide__ttl {
  margin: 0 0 10px;
  color: var(--poly-navy);
  font-size: 13px;
  font-weight: 700;
}

.p-shopguide__body {
  margin: 0 0 22px;
  color: var(--poly-muted);
  font-size: 12px;
  line-height: 1.8;
  overflow-wrap: break-word;
}

.p-shopguide__img {
  margin-bottom: 12px;
}

.p-shopguide__point-ttl {
  margin: 0 0 8px;
  font-weight: 700;
}

.p-shopguide-cregit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.p-shopguide-cregit-list__item {
  margin: 0;
}

.p-shopguide__attention {
  font-size: 12px;
}


/* ============================================
   10. FOOTER / FREE PAGE
============================================ */

.l-footer {
  padding: 44px 0 36px;
  background: #f4e6ea;
  border-top: 1px solid rgba(16, 35, 59, 0.06);
}

.l-footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: flex-start;
}

.l-footer-shopinfo {
  flex: 0 0 260px;
  margin: 0;
  word-break: normal;
}

.l-footer-shopinfo__logo img {
  max-width: 220px;
  height: auto;
}

.l-footer-shopinfo__txt {
  margin-top: 10px;
  color: var(--poly-muted);
  font-size: 12px;
}

.l-footer-sns-list {
  display: flex;
  gap: 14px;
  margin-top: 24px;
}

.l-footer-sns-list__item {
  margin: 0;
}

.l-footer-qrcode {
  margin-top: 24px;
}

.l-footer-navi {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.l-footer-navi-list {
  margin: 0;
  width: auto;
}

.l-footer-navi-list__item {
  margin-bottom: 8px;
}

.l-footer-navi-list__link {
  color: var(--poly-text);
  font-size: 13px;
  line-height: 1.7;
}

.l-footer-navi-list__link:hover {
  color: var(--poly-green-dark);
}

.l-copyright {
  padding-top: 20px;
  padding-bottom: 22px;
  background: var(--poly-white);
  color: var(--poly-muted);
  font-size: 11px;
  text-align: center;
}

.l-copyright__txt {
  padding: 0 20px;
}

.p-freepage__attention {
  margin: 16px 0 28px;
  color: var(--poly-danger);
  font-weight: 700;
  text-align: center;
}

.p-freepage__img {
  margin: 16px 0;
  text-align: center;
}

.p-freepage__img img {
  border-radius: var(--poly-radius-md);
  box-shadow: var(--poly-shadow-soft);
}

.p-freepage-ol {
  padding-left: 24px;
  list-style-type: decimal;
}

.p-freepage-ol__item {
  margin: 16px 0;
  letter-spacing: 0.03em;
}


/* ============================================
   11. LOWER PAGE / CART / INQUIRY
============================================ */

.l-main.shopkeeper,
.l-main.privacy,
.l-main.inq,
.l-main.mypage,
.l-main.cart,
.l-main.free,
.l-main.free1,
.l-main.free2,
.l-main.free3,
.l-main.free4,
.l-main.free5 {
  background: var(--poly-bg);
}

.l-main.shopkeeper .u-contents,
.l-main.privacy .u-contents,
.l-main.inq .u-contents,
.l-main.mypage .u-contents,
.l-main.cart .u-contents,
.l-main.free .u-contents,
.l-main.free1 .u-contents,
.l-main.free2 .u-contents,
.l-main.free3 .u-contents,
.l-main.free4 .u-contents,
.l-main.free5 .u-contents {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 32px 56px;
  border: 1px solid var(--poly-border);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(16, 35, 59, 0.04);
}

.l-main.shopkeeper table,
.l-main.privacy table,
.l-main.inq table,
.l-main.mypage table,
.l-main.cart table,
.l-main.free table,
.l-main.free1 table,
.l-main.free2 table,
.l-main.free3 table,
.l-main.free4 table,
.l-main.free5 table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: #fff;
}

.l-main.shopkeeper th,
.l-main.shopkeeper td,
.l-main.privacy th,
.l-main.privacy td,
.l-main.inq th,
.l-main.inq td,
.l-main.mypage th,
.l-main.mypage td,
.l-main.cart th,
.l-main.cart td,
.l-main.free th,
.l-main.free td,
.l-main.free1 th,
.l-main.free1 td,
.l-main.free2 th,
.l-main.free2 td,
.l-main.free3 th,
.l-main.free3 td,
.l-main.free4 th,
.l-main.free4 td,
.l-main.free5 th,
.l-main.free5 td {
  padding: 14px 16px;
  border: 1px solid var(--poly-border);
  color: var(--poly-text);
  font-size: 13px;
  line-height: 1.8;
  vertical-align: top;
}

.l-main.shopkeeper th,
.l-main.privacy th,
.l-main.inq th,
.l-main.mypage th,
.l-main.cart th,
.l-main.free th,
.l-main.free1 th,
.l-main.free2 th,
.l-main.free3 th,
.l-main.free4 th,
.l-main.free5 th {
  width: 28%;
  background: var(--poly-bg-soft);
  color: var(--poly-navy);
  font-weight: 700;
}

.l-main.inq input[type="text"],
.l-main.inq input[type="email"],
.l-main.inq input[type="tel"],
.l-main.inq textarea,
.l-main.inq select,
.l-main.mypage input[type="text"],
.l-main.mypage input[type="email"],
.l-main.mypage input[type="tel"],
.l-main.mypage input[type="password"],
.l-main.cart input[type="text"],
.l-main.cart input[type="email"],
.l-main.cart input[type="tel"],
.l-main.cart textarea,
.l-main.shopkeeper input[type="text"],
.l-main.shopkeeper input[type="email"],
.l-main.shopkeeper input[type="tel"],
.l-main.shopkeeper textarea {
  box-sizing: border-box;
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--poly-border);
  border-radius: 10px;
  background: #fff;
  color: var(--poly-text);
  font-size: 14px;
  line-height: 1.6;
}

.l-main.inq textarea,
.l-main.cart textarea,
.l-main.shopkeeper textarea {
  min-height: 140px;
}

.l-main.inq input:focus,
.l-main.inq textarea:focus,
.l-main.mypage input:focus,
.l-main.cart input:focus,
.l-main.cart textarea:focus,
.l-main.shopkeeper input:focus,
.l-main.shopkeeper textarea:focus {
  outline: none;
  border-color: var(--poly-green);
  box-shadow: 0 0 0 3px rgba(95, 143, 128, 0.12);
}

.l-main.inq input[type="submit"],
.l-main.inq button,
.l-main.mypage input[type="submit"],
.l-main.mypage button,
.l-main.cart input[type="submit"],
.l-main.cart button,
.l-main.shopkeeper input[type="submit"],
.l-main.shopkeeper button {
  min-height: 46px;
  padding: 0 24px;
  border: none;
  border-radius: 999px;
  background: var(--poly-green-dark);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
}

.l-main.inq input[type="submit"]:hover,
.l-main.inq button:hover,
.l-main.mypage input[type="submit"]:hover,
.l-main.mypage button:hover,
.l-main.cart input[type="submit"]:hover,
.l-main.cart button:hover,
.l-main.shopkeeper input[type="submit"]:hover,
.l-main.shopkeeper button:hover {
  background: var(--poly-navy);
}

.l-main.cart .c-btn-cart,
.l-main.cart input[name="submit"],
.l-main.cart input[type="submit"].btn,
.l-main.cart button[type="submit"] {
  background: linear-gradient(135deg, var(--poly-pink) 0%, var(--poly-pink-dark) 100%);
  color: #fff;
  box-shadow: 0 10px 22px rgba(217, 95, 124, 0.24);
}

.l-main.cart img,
.l-main.shopkeeper img,
.l-main.privacy img,
.l-main.inq img,
.l-main.mypage img,
.l-main.free img,
.l-main.free1 img,
.l-main.free2 img,
.l-main.free3 img,
.l-main.free4 img,
.l-main.free5 img {
  max-width: 100%;
  height: auto;
}

.l-main.cart .quantity,
.l-main.cart .num,
.l-main.cart input[name*="num"],
.l-main.cart input[name*="quantity"] {
  max-width: 88px;
  text-align: center;
}

.l-main.shopkeeper .mar_t_50,
.l-main.privacy .mar_t_50,
.l-main.inq .mar_t_50,
.l-main.mypage .mar_t_50,
.l-main.cart .mar_t_50,
.l-main.free .mar_t_50 {
  margin-top: 32px !important;
}

.l-main.shopkeeper .txt_c,
.l-main.privacy .txt_c,
.l-main.inq .txt_c,
.l-main.mypage .txt_c,
.l-main.cart .txt_c,
.l-main.free .txt_c {
  text-align: center;
}

.l-main.shopkeeper .txt_18,
.l-main.privacy .txt_18,
.l-main.inq .txt_18,
.l-main.mypage .txt_18,
.l-main.cart .txt_18,
.l-main.free .txt_18 {
  font-size: 16px !important;
  line-height: 1.8;
}


/* ============================================
   12. PC FIX
============================================ */

@media screen and (min-width: 1031px) {
  .l-header-main__in {
    position: relative;
    gap: 24px;
  }

  .l-header-logo {
    flex: 1 1 auto;
    max-width: calc(100% - 520px);
  }

  .l-header-logo__img img {
    max-width: 520px;
    max-height: 92px;
  }

  .l-header-search {
    flex: 0 0 auto;
    position: relative;
    z-index: 5;
    margin-left: auto;
  }

  .l-help-navi-box {
    position: static;
    flex: 0 0 auto;
    margin-left: auto;
    gap: 16px;
  }

  .l-help-navi-list {
    gap: 18px;
  }

  .l-help-navi-list__link {
    font-size: 14px;
    white-space: nowrap;
  }

  .l-help-navi-list__link img {
    width: 18px;
  }

  .l-sns-navi-list {
    margin-left: 4px;
  }

  .l-main-navi {
    clear: both;
  }
}

@media screen and (min-width: 1031px) and (max-width: 1280px) {
  .l-header-logo {
    max-width: calc(100% - 430px);
  }

  .l-header-logo__img img {
    max-width: 430px;
  }

  .l-help-navi-list {
    gap: 12px;
  }

  .l-help-navi-list__link {
    font-size: 12px;
  }

  .l-header-search__btn,
  .l-header-cart a {
    width: 42px;
    height: 42px;
  }
}


/* ============================================
   13. TABLET / SMARTPHONE (検索窓レスポンシブ崩れ対策統合)
============================================ */

@media screen and (max-width: 1030px) {
  body {
    padding-top: 0;
    font-size: 14px;
  }

  .u-container {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .l-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    min-height: 64px;
    box-shadow: 0 4px 16px rgba(16, 35, 59, 0.08);
  }

  .l-header-main__in {
    min-height: 58px;
    padding-top: 0;
    padding-bottom: 0;
    background: var(--poly-white);
  }

  .l-header-logo {
    flex: 1;
    overflow: hidden;
  }

  .l-header-logo__img {
    display: flex;
    align-items: center;
    max-width: none;
    min-height: 58px;
  }

  .l-header-logo__img img {
    max-width: 220px;
    max-height: 40px;
  }

  /* タブレット・スマホ時のヘッダーアイコン調整 */
  .l-header-search__btn,
  .l-header-cart a,
  .l-menu-btn {
    width: 46px !important;
    height: 46px !important;
    border: 1px solid var(--poly-border) !important;
  }

  .l-menu-btn {
    display: inline-flex;
  }

  .l-main-navi {
    display: none;
  }

  .l-main-navi.is-open {
    display: block;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    padding: 0;
    background: var(--poly-white);
    border-top: 1px solid var(--poly-border);
  }

  .l-main-navi.is-open .l-main-navi__in,
  .l-main-navi.is-open .l-main-navi-list {
    display: block;
  }

  .l-main-navi.is-open .l-main-navi-list__item {
    margin: 0;
    border-bottom: 1px solid var(--poly-border-soft);
  }

  .l-main-navi.is-open .l-main-navi-list__item a {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    min-height: 54px;
    padding: 14px 20px;
    border-radius: 0;
  }

  .l-main-navi.is-open .l-main-navi-list__item img {
    max-height: 28px;
  }

  .l-main-navi.is-open .l-help-navi-box {
    display: block;
    position: static;
    padding: 18px 20px 28px;
  }

  .l-help-navi-list {
    display: block;
    border-top: 1px solid var(--poly-border-soft);
  }

  .l-help-navi-list__item {
    border-bottom: 1px solid var(--poly-border-soft);
  }

  .l-help-navi-list__link {
    display: flex;
    min-height: 48px;
  }

  .l-sns-navi-list {
    justify-content: center;
    margin-top: 22px;
  }

  /* スマホ・タブレット用 検索モーダル展開（フル幅最適化） */
  .l-header-search__box {
    top: 100% !important;
    left: 0;
    right: 0;
    width: 100% !important;
    padding: 14px 20px !important;
    border-left: none;
    border-right: none;
    border-radius: 0;
    box-shadow: 0 8px 20px rgba(16, 35, 59, 0.1);
  }

  .l-header-search__input input {
    height: 48px; /* タップ領域の拡大 */
    font-size: 16px !important; /* iPhoneの勝手にズーム現象防止 */
    padding: 0 56px 0 18px;
  }

  .l-header-search__submit {
    width: 40px;
    height: 40px;
  }

  .l-header-search__close {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    margin-left: 10px;
  }

  .h-line {
    display: none;
  }

  .l-main {
    margin-top: 0 !important;
  }

  .l-contents-wrap {
    display: block;
  }

  .l-contents-main,
  .l-contents-side {
    width: auto;
  }

  .l-contents-side {
    margin-top: 40px;
  }

  .c-item-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px 20px;
  }

  .c-favorite-list {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 16px;
  }

  .c-favorite-list__item {
    flex: 0 0 120px;
  }

  .p-shop-info {
    display: block;
  }

  .p-calendar,
  .p-staff {
    margin-top: 20px;
  }

  .p-shopguide-wrap {
    grid-template-columns: 1fr;
  }

  .l-footer-main {
    display: block;
    text-align: center;
  }

  .l-footer-shopinfo {
    margin-bottom: 32px;
  }

  .l-footer-sns-list {
    justify-content: center;
  }

  .l-footer-navi {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    text-align: left;
  }
}

@media screen and (max-width: 767px) {
  html,
  body {
    overflow-x: hidden;
  }

  body {
    background: var(--poly-bg);
    font-size: 13px;
    line-height: 1.75;
    letter-spacing: 0.01em;
  }

  .u-pc-only,
  .u-pc-only-inline,
  .u-pc-only-inlineBlock,
  .u-pc-only-Flex {
    display: none !important;
  }

  .u-sp-only {
    display: block !important;
  }

  .u-sp-only-inline {
    display: inline !important;
  }

  .u-sp-only-inline-block {
    display: inline-block !important;
  }

  .u-sp-only-flex {
    display: flex !important;
  }

  .u-container,
  .pm-container,
  .pl-wrap .pm-container {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .u-contents {
    padding-top: 24px !important;
    padding-bottom: 32px !important;
  }

  .u-contents-s {
    padding-top: 28px !important;
    padding-bottom: 28px !important;
  }

  .l-header {
    border-top-width: 4px;
    border-bottom-color: var(--poly-border) !important;
    box-shadow: 0 4px 16px rgba(16, 35, 59, 0.08) !important;
  }

  .l-header-main__in {
    min-height: 56px !important;
    gap: 6px !important;
  }

  .l-header-logo__img img {
    max-width: 170px !important;
    max-height: 40px !important;
  }

  .l-header-search {
    flex: 0 0 auto;
    gap: 0;
  }

  .l-header-search__btn,
  .l-header-cart a,
  .l-menu-btn {
    width: 42px !important;
    height: 42px !important;
  }

  .l-header-search__btn img,
  .l-header-cart a img {
    max-width: 18px;
  }

  .p-global-header__cart-count {
    top: -2px;
    right: -2px;
    min-width: 18px;
    height: 18px;
    font-size: 10px;
  }

  /* 極小幅スマホ時の再微調整 */
  .l-header-search__box {
    top: 60px !important;
    padding: 12px 14px !important;
  }

  .l-main-navi.is-open {
    top: 60px !important;
    border-top-color: var(--poly-border) !important;
  }

  .l-main-navi.is-open .l-main-navi-list__item a {
    min-height: 52px !important;
    padding: 13px 18px !important;
  }

  .l-main-navi.is-open .l-main-navi-list__item img {
    max-height: 30px;
    width: auto;
  }

  .l-main-navi-overlay {
    display: none !important;
    border: none !important;
    background: transparent !important;
  }

  .l-main-navi-overlay.is-on {
    display: block !important;
    border: none !important;
    background: rgba(16, 35, 59, 0.18) !important;
  }

  .c-ttl-main {
    margin-bottom: 22px;
    font-size: 20px;
    letter-spacing: 0.05em;
  }

  .c-ttl-main__ja {
    font-size: 12px;
  }

  .c-ttl-sub {
    margin-bottom: 20px;
    font-size: 14px;
  }

  .c-ttl-second {
    margin-bottom: 18px;
    font-size: 18px;
  }

  .c-item-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 14px;
  }

  .c-item-list__img a {
    padding: 10px;
  }

  .c-item-list__img img {
    max-width: calc(100% - 20px);
    max-height: calc(100% - 20px);
  }

  .c-item-list__ttl {
    font-size: 12px;
    line-height: 1.65;
  }

  .c-item-list__price {
    font-size: 13px;
  }

  .c-item-list__expl {
    font-size: 11px;
  }

  .c-favorite-list__item {
    flex-basis: 92px;
  }

  .c-tbl-list__tr {
    display: block;
    padding: 16px 0;
  }

  .c-tbl-list__th {
    width: auto;
    margin-bottom: 8px;
  }

  .c-tbl-list__td {
    margin-left: 0;
  }

  .c-breadcrumbs-list {
    padding-top: 12px;
    margin-bottom: 20px;
    font-size: 11px;
  }

  .c-pager {
    margin-top: 36px;
    margin-bottom: 36px;
  }

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

  .c-pager-list__item.is-visible,
  .c-pager-list__item:first-child,
  .c-pager-list__item:last-child {
    display: block;
  }

  .c-pager-list__page {
    display: inline-block;
  }

  .l-side-navi {
    border-radius: var(--poly-radius-md);
  }

  .l-side-navi__ttl {
    padding: 13px 14px;
    font-size: 13px;
  }

  .l-side-navi-list__link {
    padding: 14px 34px 14px 14px;
    font-size: 13px;
  }

  .p-staff,
  .p-calendar {
    padding: 20px 16px !important;
  }

  .p-staff__img {
    float: none;
    width: 90px;
    margin: 0 auto 16px;
  }

  .side_cal {
    display: block;
  }

  .tbl_calendar {
    width: 100%;
    margin: 0 0 24px;
  }

  .p-shopguide {
    display: none;
  }

  .l-bottom {
    margin-top: 36px !important;
  }

  .l-footer {
    padding: 32px 0 24px;
  }

  .l-footer-main {
    text-align: center;
  }

  .l-footer-shopinfo {
    margin-bottom: 24px !important;
  }

  .l-footer-shopinfo__logo img {
    max-width: 180px !important;
  }

  .l-footer-navi {
    display: block;
    margin-top: 24px;
    text-align: left;
  }

  .l-footer-navi-list {
    border-top: 1px solid rgba(16, 35, 59, 0.08);
  }

  .l-footer-navi-list__item {
    margin: 0;
    border-bottom: 1px solid rgba(16, 35, 59, 0.08);
  }

  .l-footer-navi-list__link {
    display: block;
    position: relative;
    padding: 13px 28px 13px 4px;
    font-size: 12.5px !important;
  }

  .l-footer-navi-list__link::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 8px;
    width: 7px;
    height: 7px;
    margin-top: -4px;
    border-right: 1px solid var(--poly-muted);
    border-bottom: 1px solid var(--poly-muted);
    transform: rotate(-45deg);
  }

  .l-footer-qrcode {
    display: none;
  }

  .u-img-scale:hover img {
    transform: none;
  }

  .l-main,
  .pm-hero,
  .pm-section,
  .pl-wrap,
  .p-product {
    max-width: 100%;
    overflow-x: hidden;
  }

  table,
  iframe,
  video {
    max-width: 100%;
  }

  .c-btn-cart {
    min-height: 60px !important;
    font-size: 16px !important;
    letter-spacing: 0.06em !important;
  }

  .l-main.shopkeeper .u-contents,
  .l-main.privacy .u-contents,
  .l-main.inq .u-contents,
  .l-main.mypage .u-contents,
  .l-main.cart .u-contents,
  .l-main.free .u-contents,
  .l-main.free1 .u-contents,
  .l-main.free2 .u-contents,
  .l-main.free3 .u-contents,
  .l-main.free4 .u-contents,
  .l-main.free5 .u-contents {
    padding: 28px 16px 40px;
    border-radius: 16px;
    box-shadow: none;
  }

  .l-main.shopkeeper table,
  .l-main.privacy table,
  .l-main.mypage table,
  .l-main.cart table,
  .l-main.free table,
  .l-main.free1 table,
  .l-main.free2 table,
  .l-main.free3 table,
  .l-main.free4 table,
  .l-main.free5 table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .l-main.inq .u-contents {
    padding: 24px 14px 38px !important;
  }

  .l-main.inq form {
    width: 100%;
  }

  .l-main.inq table {
    display: block !important;
    width: 100% !important;
    margin: 18px 0 24px !important;
    overflow: visible !important;
    white-space: normal !important;
    border: none !important;
  }

  .l-main.inq tbody,
  .l-main.inq tr,
  .l-main.inq th,
  .l-main.inq td {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .l-main.inq tr {
    margin-bottom: 16px !important;
    padding-bottom: 16px !important;
    border-bottom: 1px solid var(--poly-border-soft) !important;
  }

  .l-main.inq th {
    margin-bottom: 7px !important;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
    color: var(--poly-navy) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1.6 !important;
    text-align: left !important;
  }

  .l-main.inq td {
    padding: 0 !important;
    border: none !important;
    font-size: 13px !important;
    line-height: 1.7 !important;
  }

  .l-main.inq input[type="text"],
  .l-main.inq input[type="email"],
  .l-main.inq input[type="tel"],
  .l-main.inq textarea,
  .l-main.inq select {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 46px !important;
    padding: 11px 12px !important;
    border: 1px solid var(--poly-border) !important;
    border-radius: 10px !important;
    background: #fff !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
  }

  .l-main.inq textarea {
    min-height: 150px !important;
    resize: vertical;
  }

  .l-main.inq input[type="radio"],
  .l-main.inq input[type="checkbox"] {
    width: auto !important;
    min-height: auto !important;
    margin-right: 6px !important;
    vertical-align: middle;
  }

  .l-main.inq label {
    display: inline-flex;
    align-items: center;
    margin: 0 12px 8px 0;
    font-size: 13px;
    line-height: 1.6;
  }

  .l-main.inq input[type="submit"],
  .l-main.inq button[type="submit"],
  .l-main.inq .btn {
    width: 100% !important;
    min-height: 54px !important;
    margin-top: 10px !important;
    border-radius: 14px !important;
    background: var(--poly-green-dark) !important;
    color: #fff !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    letter-spacing: 0.06em !important;
  }
}

@media screen and (max-width: 420px) {
  body {
    font-size: 13px;
  }

  .u-container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .l-header-logo__img img {
    max-width: 160px;
  }

  .c-item-list {
    gap: 24px 12px;
  }

  .c-btn-cart {
    min-height: 58px;
    border-radius: 14px;
    font-size: 15px;
  }
}/* 親要素のスタッキングコンテキストを強制的に最前面にするテスト */
.l-header-search,
.l-header-main__in,
.l-header-main {
  position: relative !important;
  z-index: 99999 !important;
}