/** Shopify CDN: Minification failed

Line 2533:10 Unexpected "{"
Line 2533:19 Expected ":"
Line 2534:14 Expected identifier but found whitespace
Line 2534:16 Unexpected "{"
Line 2534:25 Expected ":"
Line 2534:51 Expected ":"
Line 2535:17 Expected identifier but found whitespace
Line 2535:19 Unexpected "{"
Line 2535:28 Expected ":"
Line 2535:57 Expected ":"
... and 10 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:main-cart (INDEX:8) */
.tgtp-main-cart {
  color: var(--tgtp-color-on-surface);
}

.tgtp-main-cart__layout {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
}

.tgtp-main-cart__items {
  min-width: 0;
}

.tgtp-main-cart__summary {
  position: relative;
}

.tgtp-main-cart__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 60px 0;
  text-align: center;
}

.tgtp-main-cart__empty-cta {
  display: inline-block;
  padding: 12px 32px;
  border: 1px solid var(--tgtp-color-outline);
  border-radius: 24px;
  color: var(--tgtp-color-on-surface);
  text-decoration: none;
  transition: background-color 120ms linear;
}

.tgtp-main-cart__empty-cta:hover {
  background-color: var(--tgtp-color-surface-scrim);
}

@media screen and (min-width: 990px) {
  .tgtp-main-cart__layout {
    grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  }

  .tgtp-main-cart__summary {
    position: sticky;
    top: 24px;
  }
}
/* END_SECTION:main-cart */

/* START_SECTION:tgtp-news-article-main (INDEX:37) */
.tgtp-news-article-main__container {
  display: flex;
  flex-direction: column;
  gap: var(--tgtp-news-article-main-section-gap);
}
/* END_SECTION:tgtp-news-article-main */

/* START_SECTION:tgtp-section-divider (INDEX:47) */
.tgtp-section-divider {
  overflow-x: clip;
  overflow-y: visible;
  position: relative;
}
/* END_SECTION:tgtp-section-divider */

/* START_SECTION:tgtp-section-fixed-sns-icons (INDEX:48) */
.tgtp-fixed-sns {
  position: fixed;
  z-index: 9998;
  top: var(--fixed-sns-top, auto);
  right: var(--fixed-sns-right, auto);
  bottom: var(--fixed-sns-bottom, auto);
  left: var(--fixed-sns-left, auto);
  transform: var(--fixed-sns-transform, none);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--fixed-sns-gap);
}

.tgtp-fixed-sns__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--fixed-sns-icon-size);
  height: var(--fixed-sns-icon-size);
  color: var(--fixed-sns-icon-color, var(--tgtp-color-primary, #303030));
  transition: opacity 0.2s ease;
}

.tgtp-fixed-sns__item:hover {
  opacity: 0.7;
}

.tgtp-fixed-sns__item svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* Optical sizing per icon */
.tgtp-fixed-sns__item[data-preset="x"] svg { transform: scale(0.8); }
.tgtp-fixed-sns__item[data-preset="spotify"] svg { transform: scale(0.85); }
.tgtp-fixed-sns__item[data-preset="apple_music"] svg { transform: scale(0.85); }
.tgtp-fixed-sns__item[data-preset="tiktok"] svg { transform: scale(1.1); }
.tgtp-fixed-sns__item[data-preset="youtube"] svg { transform: scale(1.05); }
/* END_SECTION:tgtp-section-fixed-sns-icons */

/* START_SECTION:tgtp-section-home-news-list (INDEX:51) */
.tgtp-section-home-news-list {
  width: 100%;
}

.tgtp-section-home-news-list__items {
  display: flex;
  flex-direction: column;
  gap: var(--tgtp-home-news-list-gap);
}
/* END_SECTION:tgtp-section-home-news-list */

/* START_SECTION:tgtp-section-kv (INDEX:52) */
.tgtp-section-kv .tgtp-section__inner {
  position: relative;
}
/* END_SECTION:tgtp-section-kv */

/* START_SECTION:tgtp-section-rich-text (INDEX:55) */
.tgtp-section-rich-text .tgtp-inner {
  display: flex;
  flex-direction: column;
  gap: var(--tgtp-rich-text-gap, 16px);
  align-items: var(--tgtp-rich-text-align, center);
}

.tgtp-section-rich-text .tgtp-inner > *:not(.tgtp-rich-text-button) {
  width: 100%;
}
/* END_SECTION:tgtp-section-rich-text */

/* START_SECTION:tgtp-section-sidebar-cart (INDEX:57) */
/* === Overlay === */
.tgtp-sidebar-cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.tgtp-sidebar-cart-overlay.is-open {
  display: block;
  opacity: 1;
  visibility: visible;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* === Sidebar === */
.tgtp-sidebar-cart {
  position: fixed;
  top: 0;
  right: 0;
  width: var(--sidebar-cart-width, 400px);
  max-width: 90vw;
  height: 100vh;
  height: 100dvh;
  background-color: var(--tgtp-color-surface-scrim);
  color: var(--tgtp-color-on-surface-scrim);
  backdrop-filter: blur(7.5px);
  -webkit-backdrop-filter: blur(7.5px);
  z-index: 10000;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.3s ease, visibility 0.3s ease;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.tgtp-sidebar-cart.is-open {
  transform: translateX(0);
  visibility: visible;
}

/* === Header / Content / Footer === */
.tgtp-sidebar-cart__header,
.tgtp-sidebar-cart__content,
.tgtp-sidebar-cart__footer {
  width: 100%;
  display: block;
}

.tgtp-sidebar-cart__content {
  overflow-y: auto;
  min-height: 0;
}

/* === Items === */
.tgtp-sidebar-cart-items {
  padding: 16px 24px;
}

.tgtp-sidebar-cart-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
  opacity: 0.5;
  font-size: 14px;
}

.tgtp-sidebar-cart-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.tgtp-sidebar-cart-item:last-child {
  border-bottom: none;
}

.tgtp-sidebar-cart-item__img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 4px;
}

.tgtp-sidebar-cart-item__info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tgtp-sidebar-cart-item__title {
  font-size: 13px;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tgtp-sidebar-cart-item__title a {
  color: inherit;
  text-decoration: none;
}

.tgtp-sidebar-cart-item__variant {
  font-size: 12px;
  opacity: 0.6;
}

.tgtp-sidebar-cart-item__price {
  font-size: 13px;
  font-weight: 500;
}

.tgtp-sidebar-cart-item__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.tgtp-sidebar-cart-item__qty {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
}

.tgtp-sidebar-cart-item__qty-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  font-size: 14px;
  padding: 0;
}

.tgtp-sidebar-cart-item__qty-btn:hover {
  opacity: 0.6;
}

.tgtp-sidebar-cart-item__qty-value {
  font-size: 13px;
  min-width: 24px;
  text-align: center;
}

.tgtp-sidebar-cart-item__remove {
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  opacity: 0.4;
  font-size: 12px;
  padding: 4px;
  text-decoration: underline;
}

.tgtp-sidebar-cart-item__remove:hover {
  opacity: 0.8;
}

/* === Footer === */
.tgtp-sidebar-cart__footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1em;
  padding: 1.75em 0;
}

.tgtp-sidebar-cart-subtotal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.tgtp-sidebar-cart-subtotal__label {
  font-size: 14px;
  font-weight: 500;
}

.tgtp-sidebar-cart-subtotal__price {
  font-size: 16px;
  font-weight: 600;
}

/* checkout button styling は assets/tgtp-checkout-button.css に共通化 (.tgtp-checkout-button*) */
/* END_SECTION:tgtp-section-sidebar-cart */

/* START_SECTION:tgtp-section-slideshow (INDEX:58) */
.tgtp-section-slideshow .tgtp-inner {
  position: relative;
}

.tgtp-section-slideshow .tgtp-slideshow__swiper {
  overflow: hidden;
}

.tgtp-section-slideshow .swiper-pagination-bullet {
  background: currentColor;
  opacity: 0.4;
}

.tgtp-section-slideshow .swiper-pagination-bullet-active {
  opacity: 1;
}

.tgtp-section-slideshow .swiper-button-prev,
.tgtp-section-slideshow .swiper-button-next {
  color: currentColor;
}
/* END_SECTION:tgtp-section-slideshow */

/* START_SECTION:tgtp-section-sns-links (INDEX:59) */
.tgtp-sns-links {
  display: flex;
  justify-content: center;
  align-items: center;
}
.tgtp-sns-links__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--tgtp-sns-icon-size, 40px);
  height: var(--tgtp-sns-icon-size, 40px);
  color: var(--tgtp-sns-icon-color, var(--tgtp-color-primary, #303030));
  transition: opacity 0.2s ease;
}
.tgtp-sns-links__item:hover {
  opacity: 0.7;
}
.tgtp-sns-links__item svg {
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 749px) {
  .tgtp-sns-links__item {
    width: var(--tgtp-sns-icon-size-mobile, 32px);
    height: var(--tgtp-sns-icon-size-mobile, 32px);
  }
}

/* Optical sizing per icon */
.tgtp-sns-links__item[data-preset="x"] svg { transform: scale(0.8); }
.tgtp-sns-links__item[data-preset="spotify"] svg { transform: scale(0.85); }
.tgtp-sns-links__item[data-preset="apple_music"] svg { transform: scale(0.85); }
.tgtp-sns-links__item[data-preset="tiktok"] svg { transform: scale(1.1); }
.tgtp-sns-links__item[data-preset="youtube"] svg { transform: scale(1.05); }
/* END_SECTION:tgtp-section-sns-links */

/* CSS from block stylesheet tags */
/* START_BLOCK:_cart-summary-heading (INDEX:66) */
.tgtp-cart-summary-heading {
  margin: 0;
}

.tgtp-cart-summary-heading h2 {
  margin: 0;
  font-size: var(--tgtp-cart-summary-heading-font-size-mobile, 18px);
  font-weight: var(--tgtp-cart-summary-heading-font-weight, 400);
  letter-spacing: 0.05em;
}

.tgtp-cart-summary-heading--upper h2 {
  text-transform: uppercase;
}

@media screen and (min-width: 990px) {
  .tgtp-cart-summary-heading h2 {
    font-size: var(--tgtp-cart-summary-heading-font-size-pc, 18px);
  }
}
/* END_BLOCK:_cart-summary-heading */

/* START_BLOCK:_cart-summary-shipping (INDEX:67) */
.tgtp-cart-summary-row__value--muted {
  font-weight: 400;
  opacity: 0.7;
}
/* END_BLOCK:_cart-summary-shipping */

/* START_BLOCK:_cart-summary-subtotal (INDEX:68) */
.tgtp-cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: var(--tgtp-cart-summary-row-font-size-mobile, 13px);
  font-weight: var(--tgtp-cart-summary-row-font-weight, 500);
  color: var(--tgtp-color-on-surface);
}

.tgtp-cart-summary-row__label {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}

.tgtp-cart-summary-row__count {
  font-weight: 400;
  opacity: 0.7;
}

.tgtp-cart-summary-row__value {
  font-weight: var(--tgtp-cart-summary-row-font-weight, 500);
  text-align: right;
}

.tgtp-cart-summary-row__tax {
  font-size: 0.8em;
  font-weight: 400;
  opacity: 0.7;
  margin-left: 4px;
}

@media screen and (min-width: 750px) {
  .tgtp-cart-summary-row {
    font-size: var(--tgtp-cart-summary-row-font-size-pc, 14px);
  }
}
/* END_BLOCK:_cart-summary-subtotal */

/* START_BLOCK:_cart-summary-total (INDEX:69) */
.tgtp-cart-summary-row--total .tgtp-cart-summary-row__currency {
  font-size: 0.65em;
  font-weight: 400;
  opacity: 0.7;
  margin-right: 6px;
}
/* END_BLOCK:_cart-summary-total */

/* START_BLOCK:_cart-summary (INDEX:70) */
.tgtp-cart-summary {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--tgtp-color-on-surface);
}

.tgtp-cart-summary__body {
  display: flex;
  flex-direction: column;
  gap: 1.25em;
}

.tgtp-cart-summary__rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
/* END_BLOCK:_cart-summary */

/* START_BLOCK:_cart-table-divider (INDEX:71) */
.tgtp-cart-table-divider {
  width: 100%;
  height: 0;
  border-top: var(--tgtp-table-divider-thickness, 1px) solid var(--tgtp-color-outline);
  opacity: var(--tgtp-table-divider-opacity, 1);
  margin: var(--tgtp-table-divider-margin, 0) 0;
}
/* END_BLOCK:_cart-table-divider */

/* START_BLOCK:_cart-table-header (INDEX:72) */
.tgtp-cart-table-header {
  display: none;
}

@media screen and (min-width: 750px) {
  .tgtp-cart-table-header {
    display: grid;
    grid-template-columns: var(--tgtp-cart-item-image-pc, 96px) 2fr 1fr auto;
    gap: var(--tgtp-cart-item-gap-pc, 24px);
    padding: 0.5em 0;
    font-size: var(--tgtp-table-header-font-size-pc, 13px);
    font-weight: var(--tgtp-table-header-font-weight, 500);
    color: var(--tgtp-color-on-surface);
    align-items: center;
  }

  .tgtp-cart-table-header__column--item {
    grid-column: 2 / 3;
  }

  .tgtp-cart-table-header__column--quantity {
    grid-column: 3 / 4;
    text-align: center;
  }

  .tgtp-cart-table-header__column--subtotal {
    grid-column: 4 / 5;
    text-align: right;
  }
}
/* END_BLOCK:_cart-table-header */

/* START_BLOCK:_cart-table (INDEX:74) */
.tgtp-cart-table {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.tgtp-cart-table__items {
  display: flex;
  flex-direction: column;
}

.tgtp-cart-item {
  display: grid;
  grid-template-columns: var(--tgtp-cart-item-image-mobile, 72px) minmax(0, 1fr) auto;
  grid-template-areas:
    "media details subtotal"
    "quantity quantity quantity";
  align-items: start;
  column-gap: var(--tgtp-cart-item-gap-mobile, 16px);
  row-gap: 16px;
  padding: 16px 0;
  font-size: var(--tgtp-cart-item-font-size-mobile, 12px);
  font-weight: var(--tgtp-cart-item-font-weight, 400);
  color: var(--tgtp-color-on-surface);
}

.tgtp-cart-item__media {
  grid-area: media;
}

.tgtp-cart-item__image {
  display: block;
  width: var(--tgtp-cart-item-image-mobile, 72px);
  height: auto;
  object-fit: cover;
}

.tgtp-cart-item__details {
  grid-area: details;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.tgtp-cart-item__name {
  color: inherit;
  text-decoration: none;
  font-weight: var(--tgtp-cart-item-font-weight, 400);
  overflow: hidden;
  text-overflow: ellipsis;
}

.tgtp-cart-item__name:hover {
  text-decoration: underline;
}

.tgtp-cart-item__variant {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.85em;
  opacity: 0.7;
}

.tgtp-cart-item__price-mobile {
  display: none;
  font-weight: 500;
}

.tgtp-cart-item__quantity {
  grid-area: quantity;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.tgtp-cart-item__remove {
  display: inline-flex;
}

.tgtp-cart-item__remove-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--tgtp-color-on-surface);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
}

.tgtp-cart-item__remove-link svg {
  width: 16px;
  height: 16px;
}

.tgtp-cart-item__error {
  color: #eb001b;
  font-size: 0.85em;
  margin-top: 4px;
}

.tgtp-cart-item__error:empty {
  display: none;
}

.tgtp-cart-item__subtotal {
  grid-area: subtotal;
  text-align: right;
  font-weight: 500;
  font-size: var(--tgtp-cart-item-font-size-mobile, 12px);
}

@media screen and (min-width: 750px) {
  .tgtp-cart-item {
    grid-template-columns: var(--tgtp-cart-item-image-pc, 96px) minmax(0, 2fr) 1fr auto;
    grid-template-areas: "media details quantity subtotal";
    align-items: center;
    column-gap: var(--tgtp-cart-item-gap-pc, 24px);
    row-gap: 0;
    padding: 24px 0;
    font-size: var(--tgtp-cart-item-font-size-pc, 14px);
  }

  .tgtp-cart-item__image {
    width: var(--tgtp-cart-item-image-pc, 96px);
  }

  .tgtp-cart-item__subtotal {
    font-size: var(--tgtp-cart-item-font-size-pc, 14px);
  }

  .tgtp-cart-item__price-mobile {
    display: none;
  }
}
/* END_BLOCK:_cart-table */

/* START_BLOCK:_main-cart-heading (INDEX:76) */
.tgtp-main-cart-heading {
  margin-bottom: var(--tgtp-main-cart-heading-margin-bottom, 32px);
}

.tgtp-main-cart-heading h1 {
  margin: 0;
  font-size: var(--tgtp-main-cart-heading-font-size-mobile, 32px);
  font-weight: var(--tgtp-main-cart-heading-font-weight, 400);
  letter-spacing: 0.02em;
}

.tgtp-main-cart-heading__count {
  margin-left: 8px;
  font-size: 0.5em;
  font-weight: inherit;
  opacity: 0.6;
  vertical-align: middle;
  letter-spacing: 0;
}

@media screen and (min-width: 990px) {
  .tgtp-main-cart-heading h1 {
    font-size: var(--tgtp-main-cart-heading-font-size-pc, 40px);
  }
}
/* END_BLOCK:_main-cart-heading */

/* START_BLOCK:_tgtp-block-blog-item (INDEX:78) */
.tgtp-blog-item {
  display: flex;
  align-items: baseline;
  gap: var(--tgtp-blog-item-gap);
  padding: var(--tgtp-blog-item-padding-vertical) 0;
  border-bottom: 1px solid var(--tgtp-blog-item-border-color);
  text-decoration: none;
  color: inherit;
}

.tgtp-blog-item:first-child {
  padding-top: 0;
}

.tgtp-blog-item__date {
  flex-shrink: 0;
  font-size: var(--tgtp-blog-item-date-font-size);
  color: var(--tgtp-blog-item-date-color);
  font-weight: 500;
  white-space: nowrap;
}

.tgtp-blog-item__title {
  flex: 1;
  min-width: 0;
  font-size: var(--tgtp-blog-item-font-size);
  color: var(--tgtp-blog-item-text-color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* END_BLOCK:_tgtp-block-blog-item */

/* START_BLOCK:_tgtp-block-blog-more-indicator (INDEX:79) */
.tgtp-blog-more {
  display: flex;
  justify-content: flex-end;
  margin-top: var(--tgtp-blog-more-margin-top);
}

.tgtp-blog-more__link {
  display: inline-flex;
  align-items: center;
  gap: var(--tgtp-blog-more-icon-gap);
  font-size: var(--tgtp-blog-more-font-size);
  font-weight: 700;
  color: var(--tgtp-blog-more-text-color);
  text-decoration: none;
  letter-spacing: 0.05em;
}

.tgtp-blog-more__icon {
  display: inline-flex;
  align-items: center;
  color: var(--tgtp-color-primary);
}

.tgtp-blog-more__icon svg {
  width: 1em;
  height: 0.43em;
  fill: currentColor;
}
/* END_BLOCK:_tgtp-block-blog-more-indicator */

/* START_BLOCK:_tgtp-block-card-collection (INDEX:80) */
.tgtp-card-collection {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--tgtp-card-collection-gap);
  color: var(--tgtp-card-collection-text-color);
  border-radius: var(--tgtp-card-collection-border-radius);
  overflow: hidden;
  padding: var(--tgtp-card-collection-padding-vertical) var(--tgtp-card-collection-padding-horizontal);
  text-align: var(--tgtp-card-collection-text-align, left);
  text-decoration: none;
}

.tgtp-card-collection__image {
  margin: 0;
  overflow: hidden;
  border-radius: var(--tgtp-card-collection-thumbnail-border-radius);
}

.tgtp-card-collection__image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: var(--tgtp-card-collection-thumbnail-ratio);
  object-fit: cover;
}

.tgtp-card-collection__image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: var(--tgtp-card-collection-thumbnail-ratio);
  background-color: #f5f5f5;
  border-radius: var(--tgtp-card-collection-thumbnail-border-radius);
}
.tgtp-card-collection__image-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.3;
}

.tgtp-card-collection__title {
  font-size: var(--tgtp-card-collection-title-font-size);
  font-weight: var(--tgtp-card-collection-title-font-weight);
  line-height: var(--tgtp-card-collection-title-line-height);
  letter-spacing: var(--tgtp-card-collection-title-letter-spacing);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@media (hover: hover) {
  .tgtp-card-collection:hover {
    opacity: 1;
  }
  .tgtp-card-collection::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: inherit;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 120ms linear;
  }
  .tgtp-card-collection:hover::before {
    opacity: 1;
  }
  .tgtp-card-collection:hover .tgtp-card-collection__title {
    text-decoration: underline;
  }
}

.tgtp-card-collection--empty {
  cursor: default;
  position: relative;
  pointer-events: none;
}
/* END_BLOCK:_tgtp-block-card-collection */

/* START_BLOCK:_tgtp-block-cart-field (INDEX:88) */
.tgtp-cart-attribute-form-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tgtp-cart-attribute-form-field__label {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.8;
}

.tgtp-cart-attribute-form-field__input {
  width: 100%;
  box-sizing: border-box;
  padding: 8px 10px;
  font-size: 14px;
  border: 1px solid var(--tgtp-color-outline);
  border-radius: 4px;
  background-color: var(--tgtp-color-surface);
  color: var(--tgtp-color-on-surface);
  font-family: inherit;
}
/* END_BLOCK:_tgtp-block-cart-field */

/* START_BLOCK:_tgtp-block-cart-fieldset (INDEX:89) */
.tgtp-cart-attribute-form-list {
  display: flex;
  flex-direction: column;
  gap: 0.75em;
  margin-bottom: 1em;
}
/* END_BLOCK:_tgtp-block-cart-fieldset */

/* START_BLOCK:_tgtp-block-detail-button (INDEX:92) */
.tgtp-block-detail-button {
  display: flex;
  justify-content: var(--tgtp-block-detail-button-flex-justify);
}

.tgtp-block-detail-button .tgtp-block-detail-button__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--tgtp-block-detail-button-icon-gap);
  font-size: var(--tgtp-block-detail-button-font-size);
  color: var(--tgtp-block-detail-button-text-color);
  font-weight: var(--tgtp-block-detail-button-font-weight);
  text-decoration: none;
  flex-direction: var(--tgtp-block-detail-button-flex-direction);
  border-width: var(--tgtp-block-detail-button-border-size);
  border-style: solid;
  border-color: var(--tgtp-block-detail-button-border-color);
  border-radius: var(--tgtp-block-detail-button-border-radius-size);
  background: var(--tgtp-block-detail-button-bg-color);
  width: var(--tgtp-block-detail-button-width);
  box-sizing: border-box;
  line-height: 1em;
  padding-top: var(--tgtp-block-detail-button-padding-top);
  padding-bottom: var(--tgtp-block-detail-button-padding-bottom);
  padding-left: var(--tgtp-block-detail-button-padding-left);
  padding-right: var(--tgtp-block-detail-button-padding-right);
  box-shadow: var(--tgtp-block-detail-button-box-shadow);
}

.tgtp-block-detail-button__icon .tgtp-block-detail-button__iconfigure img {
  aspect-ratio: auto;
}

.tgtp-block-detail-button__img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}
.tgtp-block-detail-button__figure {
  margin: 0;
  width: 100%;
}
.tgtp-block-detail-button__text {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  padding: 0 4px;
}
.tgtp-block-detail-button__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.tgtp-block-detail-button__iconimg {
  width: var(--tgtp-block-detail-button-icon-size);
  height: auto;
}
.tgtp-block-detail-button__iconfigure {
  margin: 0;
}
/* END_BLOCK:_tgtp-block-detail-button */

/* START_BLOCK:_tgtp-block-filter-tabs (INDEX:95) */
.tgtp-filter-tabs {
  margin-bottom: var(--tgtp-filter-tabs-margin-bottom);
}

.tgtp-filter-tabs__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: var(--tgtp-filter-tabs-gap);
  list-style: none;
  margin: 0;
  padding: 0;
}

.tgtp-filter-tabs__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: var(--tgtp-filter-tabs-font-size);
  font-family: inherit;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: var(--tgtp-filter-tabs-text-color);
  background: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
  white-space: nowrap;
  opacity: var(--tgtp-filter-tabs-inactive-opacity);
}

.tgtp-filter-tabs__button:hover {
  opacity: 0.8;
}

.tgtp-filter-tabs__button.current {
  opacity: 1;
}
/* END_BLOCK:_tgtp-block-filter-tabs */

/* START_BLOCK:_tgtp-block-fixed-header-logo-button (INDEX:96) */
.tgtp-fixed-header-logo {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: auto;
}
.tgtp-fixed-header-logo--start {
  left: var(--header-padding-horizontal, 25px);
}
.tgtp-fixed-header-logo--center {
  left: 50%;
  transform: translateX(-50%);
}
.tgtp-fixed-header-logo--end {
  right: var(--header-padding-horizontal, 25px);
}
.tgtp-fixed-header-logo__link {
  display: flex;
  align-items: center;
  height: 100%;
  color: inherit;
}
.tgtp-fixed-header-logo__img {
  display: block;
  width: auto;
  height: 100%;
}
.tgtp-fixed-header-logo__img--mobile {
  display: none;
}
@media screen and (max-width: 749px) {
  .tgtp-fixed-header-logo__img--pc {
    display: none;
  }
  .tgtp-fixed-header-logo__img--mobile {
    display: block;
  }
}
/* END_BLOCK:_tgtp-block-fixed-header-logo-button */

/* START_BLOCK:_tgtp-block-footer-container (INDEX:97) */
/* ネストされた FooterContainer 同士は既定で均等割り（flex: 1）。
   親が flex でない最上位（.footer__inner 直下）では効かない。
   Flex Grow / Width 設定があれば block 固有 style（body 側で後出力）が上書きする。 */
.tgtp-footer-container {
  flex: 1 1 0%;
}
/* END_BLOCK:_tgtp-block-footer-container */

/* START_BLOCK:_tgtp-block-footer-translation (INDEX:104) */
.tgtp-footer-locale {
  position: relative;
}
.tgtp-footer-locale__toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  list-style: none;
  color: var(--tgtp-color-on-footer);
  transition: background-color 0.15s ease;
}
.tgtp-footer-locale__toggle:hover,
.tgtp-footer-locale__toggle:focus-visible {
  background: color-mix(in srgb, var(--tgtp-color-on-footer, #ffffff) 12%, transparent);
}
.tgtp-footer-locale__toggle::-webkit-details-marker {
  display: none;
}
.tgtp-footer-locale__icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}
.tgtp-footer-locale__icon svg,
.tgtp-footer-locale__icon img {
  width: 100%;
  height: 100%;
}
.tgtp-footer-locale__label {
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (max-width: 749px) {
  .tgtp-footer-locale__icon {
    width: 20px;
    height: 20px;
  }
  .tgtp-footer-locale__label {
    font-size: 12px;
  }
}
.tgtp-footer-locale__panel {
  position: absolute;
  /* フッター下部にあるためパネルは上方向へ展開 */
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  min-width: 140px;
  padding: 6px;
  background: var(--tgtp-color-surface-scrim, #000000);
  color: var(--tgtp-color-on-surface-scrim, #ffffff);
  border: 1px solid var(--tgtp-color-outline, rgba(255, 255, 255, 0.16));
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.24);
}
.tgtp-footer-locale__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.tgtp-footer-locale__option {
  display: block;
  width: 100%;
  padding: 8px 12px;
  font: inherit;
  text-align: left;
  white-space: nowrap;
  color: inherit;
  background: transparent;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
}
.tgtp-footer-locale__option:hover,
.tgtp-footer-locale__option:focus-visible {
  background: color-mix(in srgb, var(--tgtp-color-on-surface-scrim, #ffffff) 14%, transparent);
}
.tgtp-footer-locale__option--active {
  font-weight: 700;
  /* 選択中の言語は再選択不可 */
  pointer-events: none;
}
/* END_BLOCK:_tgtp-block-footer-translation */

/* START_BLOCK:_tgtp-block-grid-products (INDEX:105) */
.tgtp-grid-products {
  display: grid;
  gap: var(--tgtp-grid-products-rows-gap) var(--tgtp-grid-products-columns-gap);
  grid-template-columns: var(--tgtp-grid-products-columns);
}

.tgtp-grid-products img {
  max-width: 100%;
  height: auto;
}
/* END_BLOCK:_tgtp-block-grid-products */

/* START_BLOCK:_tgtp-block-header-buttons (INDEX:108) */
.tgtp-header-buttons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  /* grid item として最右トラックに置かれた時、トラック内で右端へ寄せる
     (1fr トラックでも content が左に流れず右端固定になる)。 */
  justify-self: end;
  gap: 15px;
}
.tgtp-header-buttons__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  color: inherit;
  position: relative;
}
.tgtp-header-buttons__btn svg {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 749px) {
  .tgtp-header-buttons {
    gap: 12px;
  }
  .tgtp-header-buttons__btn {
    width: 24px;
    height: 24px;
  }
}
/* END_BLOCK:_tgtp-block-header-buttons */

/* START_BLOCK:_tgtp-block-header-locale-button (INDEX:110) */
.tgtp-header-locale {
  position: relative;
}
.tgtp-header-locale__toggle {
  /* アイコン + 言語名を横並びにするため固定サイズ(28px)を解除 */
  width: auto;
  height: auto;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  list-style: none;
  transition: background-color 0.15s ease;
}
.tgtp-header-locale__toggle:hover,
.tgtp-header-locale__toggle:focus-visible {
  /* ヘッダー上にあるので on-header を薄く乗せる */
  background: color-mix(in srgb, var(--tgtp-color-on-header, #ffffff) 12%, transparent);
}
.tgtp-header-locale__toggle::-webkit-details-marker {
  display: none;
}
.tgtp-header-locale__icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}
.tgtp-header-locale__icon svg,
.tgtp-header-locale__icon img {
  width: 100%;
  height: 100%;
}
.tgtp-header-locale__label {
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (max-width: 749px) {
  .tgtp-header-locale__icon {
    width: 20px;
    height: 20px;
  }
  .tgtp-header-locale__label {
    font-size: 12px;
  }
}
.tgtp-header-locale__panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 30;
  min-width: 140px;
  padding: 6px;
  background: var(--tgtp-color-surface-scrim, #000000);
  color: var(--tgtp-color-on-surface-scrim, #ffffff);
  border: 1px solid var(--tgtp-color-outline, rgba(255, 255, 255, 0.16));
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.24);
}
.tgtp-header-locale__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.tgtp-header-locale__option {
  display: block;
  width: 100%;
  padding: 8px 12px;
  font: inherit;
  text-align: left;
  white-space: nowrap;
  color: inherit;
  background: transparent;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
}
.tgtp-header-locale__option:hover,
.tgtp-header-locale__option:focus-visible {
  background: color-mix(in srgb, var(--tgtp-color-on-surface-scrim, #ffffff) 14%, transparent);
}
.tgtp-header-locale__option--active {
  font-weight: 700;
  /* 選択中の言語は再選択不可 */
  pointer-events: none;
}
/* END_BLOCK:_tgtp-block-header-locale-button */

/* START_BLOCK:_tgtp-block-header-logo (INDEX:111) */
.tgtp-header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}
.tgtp-header-logo__link {
  display: block;
  height: 100%;
  max-width: 100%;
  color: inherit;
}
.tgtp-header-logo__img {
  display: block;
  height: 100%;
  max-height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.tgtp-header-logo__img--mobile {
  display: none;
}
@media screen and (max-width: 749px) {
  .tgtp-header-logo__img--pc {
    display: none;
  }
  .tgtp-header-logo__img--mobile {
    display: block;
  }
}

/* Dropdown Menu 表示中は transparent 用ロゴへ切り替える
   （--dd はドロップダウン用ロゴがあるテナントでのみ描画される） */
.tgtp-header-logo__img--dd-pc,
.tgtp-header-logo__img--dd-mobile {
  display: none;
}
.tgtp-header.nav-dropdown-is-open .tgtp-header-logo--has-dd .tgtp-header-logo__img--pc,
.tgtp-header.nav-dropdown-is-open .tgtp-header-logo--has-dd .tgtp-header-logo__img--mobile {
  display: none;
}
.tgtp-header.nav-dropdown-is-open .tgtp-header-logo--has-dd .tgtp-header-logo__img--dd-pc {
  display: block;
}
@media screen and (max-width: 749px) {
  .tgtp-header.nav-dropdown-is-open .tgtp-header-logo--has-dd .tgtp-header-logo__img--dd-pc {
    display: none;
  }
  .tgtp-header.nav-dropdown-is-open .tgtp-header-logo--has-dd .tgtp-header-logo__img--dd-mobile {
    display: block;
  }
}
/* END_BLOCK:_tgtp-block-header-logo */

/* START_BLOCK:_tgtp-block-header-nav (INDEX:119) */
.tgtp-header-nav {
  display: flex;
  align-items: center;
  gap: var(--header-nav-gap);
  justify-content: var(--header-nav-alignment, center);
  width: 100%;
  height: 100%;
}

.tgtp-header-nav__nav-items {
  display: flex;
  align-items: center;
  gap: inherit;
  width: 100%;
  height: 100%;
  justify-content: inherit;
}

@media screen and (max-width: 768px) {
  .tgtp-header-nav {
    display: none;
  }
}

a.tgtp-header-nav-item {
  color: inherit;
}

.tgtp-header-nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.tgtp-header-nav-item__label {
  display: flex;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: inherit;
  font-family: inherit;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.tgtp-header-nav-item__label:hover {
  opacity: 0.7;
}

.tgtp-header-nav-item__label {
  gap: 4px;
}

.tgtp-header-nav-item__chevron {
  display: inline-flex;
  transition: transform 0.2s ease;
}

.tgtp-header-nav-item__chevron svg {
  width: 10px;
  height: 10px;
  fill: currentColor;
}

.tgtp-header-nav-item__label[aria-expanded="true"] .tgtp-header-nav-item__chevron {
  transform: rotate(180deg);
}

.tgtp-header-nav-dropdown {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  width: 100vw;
  background-color: var(--header-nav-dropdown-bg, var(--tgtp-color-header));
  color: var(--tgtp-color-on-header);
  border-bottom: var(--header-nav-dropdown-border-top, 1px solid var(--tgtp-color-outline));
  padding: var(--header-nav-dropdown-padding, 16px);
  max-height: var(--header-nav-dropdown-max-height, none);
  overflow: hidden;
  box-shadow: var(--header-nav-dropdown-shadow, none);
  /* box-shadow を下方向のみに（上/左/右の影をクリップ）。値に依存せず常に下だけ表示。 */
  clip-path: inset(0 0 -40px 0);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--header-nav-dropdown-animation-duration, 200ms) ease,
              visibility var(--header-nav-dropdown-animation-duration, 200ms) ease,
              transform var(--header-nav-dropdown-animation-duration, 200ms) ease;
}

.tgtp-header-nav-dropdown[data-animation="fade"] {
  transform: none;
}

.tgtp-header-nav-dropdown[data-animation="slide-down"] {
  transform: translateY(-8px);
}

.tgtp-header-nav-dropdown[data-animation="none"] {
  transition: none;
}

.tgtp-header-nav-dropdown.is-open {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.tgtp-header-nav-dropdown__link {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: var(--header-nav-link-font-size, 13px);
  font-weight: var(--header-nav-link-font-weight, 400);
  letter-spacing: var(--header-nav-link-letter-spacing, 0);
  color: var(--header-nav-link-color, inherit);
  padding: var(--header-nav-link-padding, 8px 12px);
  text-decoration: none;
  border-bottom: var(--header-nav-link-divider, none);
  transition: color 0.2s ease;
}

.tgtp-header-nav-dropdown__link:hover {
  color: var(--header-nav-link-color-hover, inherit);
}

.tgtp-header-nav-dropdown__link:last-child {
  border-bottom: none;
}

.tgtp-header-nav-dropdown__date {
  font-size: calc(var(--header-nav-link-font-size, 13px) * 0.85);
  opacity: 0.6;
  margin-right: 0.75em;
}

.tgtp-header-nav-dropdown__product {
  display: flex;
  align-items: center;
  gap: 0.75em;
  padding: var(--header-nav-link-padding, 8px 12px);
  text-decoration: none;
  color: var(--header-nav-link-color, inherit);
  transition: color 0.2s ease;
}

.tgtp-header-nav-dropdown__product:hover {
  color: var(--header-nav-link-color-hover, inherit);
}

.tgtp-header-nav-dropdown__product-img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  flex-shrink: 0;
}

.tgtp-header-nav-dropdown__product-info {
  min-width: 0;
}

.tgtp-header-nav-dropdown__product-title {
  font-size: var(--header-nav-link-font-size, 13px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tgtp-header-nav-dropdown__product-price {
  font-size: calc(var(--header-nav-link-font-size, 13px) * 0.85);
  opacity: 0.6;
}
/* END_BLOCK:_tgtp-block-header-nav */

/* START_BLOCK:_tgtp-block-header-settings (INDEX:120) */
.tgtp-header__inner {
  display: grid;
  width: 100%;
  height: 100%;
}
/* END_BLOCK:_tgtp-block-header-settings */

/* START_BLOCK:_tgtp-block-header-wishlist-button (INDEX:121) */
.tgtp-header-wishlist {
  position: relative;
  text-decoration: none;
}
.tgtp-header-wishlist svg {
  width: 100%;
  height: 100%;
}
.tgtp-header-wishlist__count {
  position: absolute;
  top: -6px;
  right: -8px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 8px;
  background: var(--tgtp-color-on-header, #000);
  color: var(--tgtp-color-header, #fff);
  font-size: 10px;
  line-height: 16px;
  text-align: center;
}
/* END_BLOCK:_tgtp-block-header-wishlist-button */

/* START_BLOCK:_tgtp-block-home-news-item (INDEX:124) */
.tgtp-home-news-item {
  display: flex;
  flex-direction: var(--tgtp-home-news-item-flex-direction, row);
  align-items: baseline;
  gap: var(--tgtp-home-news-item-gap);
  padding: var(--tgtp-home-news-item-padding-vertical) 0;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
}

.tgtp-home-news-item__divider {
  border: none;
  border-top: var(--tgtp-home-news-item-divider-width, 1px) solid var(--tgtp-home-news-item-divider-color, transparent);
  margin: var(--tgtp-home-news-item-divider-margin-top, 0) 0 0 0;
  padding: 0;
}

.tgtp-home-news-item__date {
  flex-shrink: 0;
  font-size: var(--tgtp-home-news-item-date-font-size);
  font-weight: var(--tgtp-home-news-item-date-font-weight);
  color: var(--tgtp-home-news-item-date-color);
  letter-spacing: var(--tgtp-home-news-item-date-letter-spacing);
  white-space: nowrap;
  background-color: var(--tgtp-home-news-item-date-bg-color, transparent);
  border-radius: var(--tgtp-home-news-item-date-border-radius, 0);
  padding: var(--tgtp-home-news-item-date-padding, 0);
}

.tgtp-home-news-item__title {
  width: 100%;
  min-width: 0;
  font-size: var(--tgtp-home-news-item-font-size);
  font-weight: var(--tgtp-home-news-item-font-weight);
  color: var(--tgtp-home-news-item-text-color);
  letter-spacing: var(--tgtp-home-news-item-letter-spacing);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* END_BLOCK:_tgtp-block-home-news-item */

/* START_BLOCK:_tgtp-block-image-more-button (INDEX:126) */
.tgtp-more-button-image {
  display: flex;
  justify-content: center;
  margin-top: var(--tgtp-more-button-margin-top);
}

.tgtp-more-button-image__link {
  display: inline-flex;
  align-items: center;
  gap: var(--tgtp-more-button-gap);
  color: var(--tgtp-more-button-text-color);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.tgtp-more-button-image__link--column {
  flex-direction: column;
}

.tgtp-more-button-image__link--image-right {
  flex-direction: row-reverse;
}

.tgtp-more-button-image__link:hover {
  opacity: 0.7;
}

.tgtp-more-button-image__image {
  display: block;
  width: var(--tgtp-more-button-image-width);
  height: auto;
}

.tgtp-more-button-image__label {
  font-size: var(--tgtp-more-button-font-size);
  font-weight: var(--tgtp-more-button-font-weight);
  letter-spacing: var(--tgtp-more-button-letter-spacing);
  line-height: 1;
}
/* END_BLOCK:_tgtp-block-image-more-button */

/* START_BLOCK:_tgtp-block-kv-carousel-slide (INDEX:127) */
.tgtp-kv-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* END_BLOCK:_tgtp-block-kv-carousel-slide */

/* START_BLOCK:_tgtp-block-kv-carousel (INDEX:128) */
.tgtp-kv-carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--tgtp-kv-border-radius, 0);
  border: var(--tgtp-kv-stroke-weight, 0) solid var(--tgtp-kv-stroke-color, transparent);
  min-height: 100px;
}

.tgtp-kv-carousel .swiper-slide {
  aspect-ratio: var(--tgtp-kv-aspect-ratio, auto);
  overflow: hidden;
}

.tgtp-kv-carousel .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.5;
}
.tgtp-kv-carousel .swiper-pagination-bullet-active {
  opacity: 1;
}

.tgtp-kv-carousel .swiper-button-prev,
.tgtp-kv-carousel .swiper-button-next {
  color: #fff;
}
/* END_BLOCK:_tgtp-block-kv-carousel */

/* START_BLOCK:_tgtp-block-kv-image (INDEX:129) */
.tgtp-kv-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--tgtp-kv-border-radius, 0);
  border: var(--tgtp-kv-stroke-weight, 0) solid var(--tgtp-kv-stroke-color, transparent);
  aspect-ratio: var(--tgtp-kv-aspect-ratio, auto);
}

.tgtp-kv-image img {
  width: 100%;
  height: var(--tgtp-kv-img-height, 100%);
  object-fit: cover;
  display: block;
}
/* END_BLOCK:_tgtp-block-kv-image */

/* START_BLOCK:_tgtp-block-kv-text (INDEX:130) */
.tgtp-kv-text-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media screen and (max-width: 750px) {
  .tgtp-kv-text-overlay {
    padding: 16px;
    gap: 4px;
  }
}
/* END_BLOCK:_tgtp-block-kv-text */

/* START_BLOCK:_tgtp-block-kv-video (INDEX:131) */
.tgtp-kv-video {
  position: relative;
  overflow: hidden;
  border-radius: var(--tgtp-kv-border-radius, 0);
  border: var(--tgtp-kv-stroke-weight, 0) solid var(--tgtp-kv-stroke-color, transparent);
  aspect-ratio: var(--tgtp-kv-aspect-ratio, auto);
}

.tgtp-kv-video video,
.tgtp-kv-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tgtp-kv-video__media--pc {
  display: block;
  width: 100%;
  height: 100%;
}
.tgtp-kv-video__media--mobile {
  display: none;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 750px) {
  .tgtp-kv-video__media--pc.has-mobile {
    display: none;
  }
  .tgtp-kv-video__media--mobile {
    display: block;
  }
}
/* END_BLOCK:_tgtp-block-kv-video */

/* START_BLOCK:_tgtp-block-news-article-content (INDEX:133) */
.tgtp-news-article-content {
  width: 100%;
  max-width: var(--tgtp-news-article-content-max-width);
  margin: 0 auto;
  padding: var(--tgtp-news-article-content-padding-vertical) 0;

  font-family: 'Noto Sans JP', sans-serif;
  font-size: var(--tgtp-news-article-content-font-size);
  font-weight: var(--tgtp-news-article-content-font-weight);
  line-height: var(--tgtp-news-article-content-line-height);
  letter-spacing: var(--tgtp-news-article-content-letter-spacing);
  color: var(--tgtp-color-on-surface);
  word-break: break-word;
}

.tgtp-news-article-content > * + * {
  margin-top: var(--tgtp-news-article-content-paragraph-gap);
}

.tgtp-news-article-content img {
  max-width: 100%;
  height: auto;
}

.tgtp-news-article-content a {
  color: inherit;
  text-decoration: underline;
}

.tgtp-news-article-content ul,
.tgtp-news-article-content ol {
  padding-left: 1.5em;
}
/* END_BLOCK:_tgtp-block-news-article-content */

/* START_BLOCK:_tgtp-block-news-article-heading (INDEX:134) */
.tgtp-news-article-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--tgtp-news-article-heading-gap);
  width: 100%;
  max-width: var(--tgtp-news-article-heading-max-width);
  margin: 0 auto;
  padding: var(--tgtp-news-article-heading-padding-vertical) 0;
}

.tgtp-news-article-heading__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: var(--tgtp-news-article-heading-tags-justify);
  gap: var(--tgtp-news-article-heading-tags-gap);
  width: 100%;
}

.tgtp-news-article-heading__tag {
  font-family: 'Inter', sans-serif;
  font-size: var(--tgtp-news-article-heading-tags-font-size);
  font-weight: var(--tgtp-news-article-heading-tags-font-weight);
  letter-spacing: var(--tgtp-news-article-heading-tags-letter-spacing);
  line-height: 1;
  color: var(--tgtp-news-article-heading-tags-color);
  text-transform: uppercase;
}

.tgtp-news-article-heading .tgtp-news-article-heading__title {
  width: 100%;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: var(--tgtp-news-article-heading-title-font-size);
  font-weight: var(--tgtp-news-article-heading-title-font-weight);
  line-height: var(--tgtp-news-article-heading-title-line-height);
  letter-spacing: var(--tgtp-news-article-heading-title-letter-spacing);
  color: var(--tgtp-news-article-heading-title-color);
  text-align: var(--tgtp-news-article-heading-title-text-align);
  margin: 0;
}

.tgtp-news-article-heading__date {
  width: 100%;
  font-family: 'Oswald', sans-serif;
  font-size: var(--tgtp-news-article-heading-date-font-size);
  font-weight: var(--tgtp-news-article-heading-date-font-weight);
  letter-spacing: var(--tgtp-news-article-heading-date-letter-spacing);
  line-height: 1;
  color: var(--tgtp-color-on-surface);
  opacity: var(--tgtp-news-article-heading-date-opacity);
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
}
/* END_BLOCK:_tgtp-block-news-article-heading */

/* START_BLOCK:_tgtp-block-news-item (INDEX:135) */
.tgtp-news-item {
  display: flex;
  align-items: flex-start;
  gap: var(--tgtp-news-item-gap);
  width: 100%;
  padding: var(--tgtp-news-item-padding-vertical) 0;
  border-bottom: 1px solid var(--tgtp-news-item-border-color);
  text-decoration: none;
  color: inherit;
}

.tgtp-news-item__meta {
  display: flex;
  flex-direction: column;
  gap: var(--tgtp-news-item-meta-gap);
  width: var(--tgtp-news-item-meta-width);
  flex-shrink: 0;
}

.tgtp-news-item__date {
  font-size: var(--tgtp-news-item-meta-font-size);
  font-weight: var(--tgtp-news-item-meta-font-weight);
  letter-spacing: var(--tgtp-news-item-meta-letter-spacing);
  line-height: 1;
  color: var(--tgtp-news-item-meta-color);
}

.tgtp-news-item__tags {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tgtp-news-item__tag {
  font-size: var(--tgtp-news-item-meta-font-size);
  font-weight: var(--tgtp-news-item-meta-font-weight);
  letter-spacing: var(--tgtp-news-item-meta-letter-spacing);
  line-height: 1;
  color: var(--tgtp-color-primary);
  white-space: nowrap;
}

.tgtp-news-item__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.tgtp-news-item__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: var(--tgtp-news-item-title-font-size);
  font-weight: var(--tgtp-news-item-title-font-weight);
  letter-spacing: var(--tgtp-news-item-title-letter-spacing);
  line-height: var(--tgtp-news-item-title-line-height);
  color: var(--tgtp-news-item-title-color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
}

.tgtp-news-item__excerpt {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: var(--tgtp-news-item-excerpt-font-size);
  font-weight: var(--tgtp-news-item-excerpt-font-weight);
  letter-spacing: var(--tgtp-news-item-excerpt-letter-spacing);
  line-height: var(--tgtp-news-item-excerpt-line-height);
  color: var(--tgtp-news-item-excerpt-color);
  display: -webkit-box;
  -webkit-line-clamp: var(--tgtp-news-item-excerpt-lines);
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}
/* END_BLOCK:_tgtp-block-news-item */

/* START_BLOCK:_tgtp-block-product-sold-out-badge (INDEX:152) */
.tgtp-card-product__sold-out-badge {
  position: absolute;
  z-index: 2;
  font-weight: bold;
  font-size: 14px;
  color: var(--tgtp-color-surface, #fff);
  padding: 4px 12px;
  border-radius: 4px;
  pointer-events: none;
  background: red;
}

.tgtp-card-product__sold-out-badge--no-bg {
  background: none;
  color: var(--tgtp-color-on-surface, #333);
}

/* Vertical */
.tgtp-card-product__sold-out-badge--v-top    { top: 0; }
.tgtp-card-product__sold-out-badge--v-center { top: 50%; }
.tgtp-card-product__sold-out-badge--v-bottom { bottom: 0; }

/* Horizontal */
.tgtp-card-product__sold-out-badge--h-start  { left: 0; }
.tgtp-card-product__sold-out-badge--h-center { left: 50%; }
.tgtp-card-product__sold-out-badge--h-end    { right: 0; }

/* Center transform combinations */
.tgtp-card-product__sold-out-badge--v-center.tgtp-card-product__sold-out-badge--h-center {
  transform: translate(-50%, -50%);
}
.tgtp-card-product__sold-out-badge--v-center:not(.tgtp-card-product__sold-out-badge--h-center) {
  transform: translateY(-50%);
}
.tgtp-card-product__sold-out-badge--h-center:not(.tgtp-card-product__sold-out-badge--v-center) {
  transform: translateX(-50%);
}
/* END_BLOCK:_tgtp-block-product-sold-out-badge */

/* START_BLOCK:_tgtp-block-product-wishlist (INDEX:156) */
.tgtp-product-wishlist.tgtp-product-wishlist--enabled {
  display: flex;
}
.tgtp-product-wishlist__proxy {
  display: none !important;
}
/* ハート＋文言の横並び、枠線なし、hover のみ */
.tgtp-product-wishlist__btn.tgtp-product-wishlist__btn--label {
  position: relative;
  width: auto;
  height: auto;
  gap: 8px;
  padding: 8px 0;
  border: 0;
  border-radius: 0;
  background: none;
  justify-content: flex-start;
  color: var(--tgtp-color-on-surface);
  cursor: pointer;
  transition: color 0.2s ease, opacity 0.2s ease;
}
.tgtp-product-wishlist__btn--label:hover {
  color: var(--tgtp-color-secondary);
  opacity: 0.85;
}
.tgtp-product-wishlist__btn--label .tgtp-product-wishlist__icon {
  display: inline-flex;
  align-items: center;
}
.tgtp-product-wishlist__btn--label svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}
.tgtp-product-wishlist__label {
  font-size: 14px;
  line-height: 1;
}
/* 既定（未追加）= outline + 「追加」文言 */
.tgtp-product-wishlist__btn--label .tgtp-product-wishlist__icon--filled,
.tgtp-product-wishlist__btn--label .tgtp-product-wishlist__label--added {
  display: none;
}
/* 追加済み = filled + 「追加済み」文言＋アクセント色 */
.tgtp-product-wishlist__btn--label[data-added="true"] {
  color: var(--tgtp-color-secondary);
}
.tgtp-product-wishlist__btn--label[data-added="true"] .tgtp-product-wishlist__icon--outline,
.tgtp-product-wishlist__btn--label[data-added="true"] .tgtp-product-wishlist__label--add {
  display: none;
}
.tgtp-product-wishlist__btn--label[data-added="true"] .tgtp-product-wishlist__icon--filled {
  display: inline-flex;
}
.tgtp-product-wishlist__btn--label[data-added="true"] .tgtp-product-wishlist__label--added {
  display: inline;
}
/* ローディング中: アイコン・文言を隠し、コンテナ中身をスピナーに */
.tgtp-product-wishlist__spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: tgtp-wishlist-spin 0.7s linear infinite;
}
.tgtp-product-wishlist__btn--label.is-loading {
  cursor: default;
}
.tgtp-product-wishlist__btn--label.is-loading .tgtp-product-wishlist__icon,
.tgtp-product-wishlist__btn--label.is-loading .tgtp-product-wishlist__label {
  display: none;
}
.tgtp-product-wishlist__btn--label.is-loading .tgtp-product-wishlist__spinner {
  display: inline-block;
}
@keyframes tgtp-wishlist-spin {
  to { transform: rotate(360deg); }
}
/* END_BLOCK:_tgtp-block-product-wishlist */

/* START_BLOCK:_tgtp-block-rich-text-body (INDEX:157) */
.tgtp-rich-text-body {
  margin: 0;
  font-size: var(--rich-text-body-font-size);
  font-weight: var(--rich-text-body-font-weight);
  letter-spacing: var(--rich-text-body-letter-spacing);
  line-height: var(--rich-text-body-line-height);
  text-align: var(--rich-text-body-align);
  color: var(--tgtp-color-on-surface, currentColor);
  white-space: pre-wrap;
}
/* END_BLOCK:_tgtp-block-rich-text-body */

/* START_BLOCK:_tgtp-block-rich-text-button-icon (INDEX:158) */
.tgtp-rich-text-button-icon {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.tgtp-rich-text-button-icon__img {
  display: block;
  width: auto;
  height: var(--rich-text-button-icon-size);
}
/* END_BLOCK:_tgtp-block-rich-text-button-icon */

/* START_BLOCK:_tgtp-block-rich-text-button-image (INDEX:159) */
.tgtp-rich-text-button-image {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.tgtp-rich-text-button-image__img {
  display: block;
  width: var(--rich-text-button-image-size);
  height: auto;
}
/* END_BLOCK:_tgtp-block-rich-text-button-image */

/* START_BLOCK:_tgtp-block-rich-text-button-text (INDEX:160) */
.tgtp-rich-text-button-text {
  font-size: var(--rich-text-button-text-font-size);
  font-weight: var(--rich-text-button-text-font-weight);
  letter-spacing: var(--rich-text-button-text-letter-spacing);
  /* 親 button の文字色 (--rich-text-button-fg) を継承 */
  color: inherit;
  line-height: 1;
  white-space: nowrap;
}
/* END_BLOCK:_tgtp-block-rich-text-button-text */

/* START_BLOCK:_tgtp-block-rich-text-button (INDEX:161) */
.tgtp-rich-text-button {
  display: inline-flex;
}

.tgtp-rich-text-button__link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--rich-text-button-gap, 8px);
  text-decoration: none;
  box-sizing: border-box;
  background: var(--rich-text-button-bg);
  color: var(--rich-text-button-fg);
  border: var(--rich-text-button-border-width) solid var(--rich-text-button-border-color);
  border-radius: var(--rich-text-button-corner-radius);
  line-height: 1;
  padding-top: var(--rich-text-button-padding-top);
  padding-bottom: var(--rich-text-button-padding-bottom);
  padding-left: var(--rich-text-button-padding-left);
  padding-right: var(--rich-text-button-padding-right);
  transition: opacity 0.2s ease;
}

.tgtp-rich-text-button__link:hover {
  opacity: 0.85;
}
/* END_BLOCK:_tgtp-block-rich-text-button */

/* START_BLOCK:_tgtp-block-rich-text-eyebrow (INDEX:162) */
.tgtp-rich-text-eyebrow {
  margin: 0;
  font-size: var(--rich-text-eyebrow-font-size);
  font-weight: var(--rich-text-eyebrow-font-weight);
  letter-spacing: var(--rich-text-eyebrow-letter-spacing);
  text-align: var(--rich-text-eyebrow-align);
  color: var(--tgtp-color-on-surface, currentColor);
  line-height: 1.4;
}
/* END_BLOCK:_tgtp-block-rich-text-eyebrow */

/* START_BLOCK:_tgtp-block-rich-text-heading (INDEX:163) */
.tgtp-rich-text-heading {
  margin: 0;
  font-size: var(--rich-text-heading-font-size);
  font-weight: var(--rich-text-heading-font-weight);
  letter-spacing: var(--rich-text-heading-letter-spacing);
  text-align: var(--rich-text-heading-align);
  color: var(--tgtp-color-on-surface, currentColor);
  line-height: 1.2;
}
/* END_BLOCK:_tgtp-block-rich-text-heading */

/* START_BLOCK:_tgtp-block-section-heading-nav (INDEX:164) */
.tgtp-section-heading-nav {
    display: inline-flex;
    align-items: center;
    gap: 0.4em;
    font-size: var(--tgtp-section-heading-nav-font-size);
    color: var(--tgtp-section-heading-nav-color);
    padding: var(--tgtp-section-heading-nav-padding-topbottom) var(--tgtp-section-heading-nav-padding-side);
    border: var(--tgtp-section-heading-nav-border-size) solid var(--tgtp-section-heading-nav-border-color);
    border-radius: var(--tgtp-section-heading-nav-border-radius-size);
    background-color: var(--tgtp-section-heading-nav-bg-color);
    text-decoration: none;
  }
  .tgtp-section-heading-nav__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: var(--tgtp-section-heading-nav-icon-size, 1em);
    height: var(--tgtp-section-heading-nav-icon-size, 1em);
  }
  .tgtp-section-heading-nav__icon svg {
    display: block;
    width: 100%;
    height: 100%;
  }
/* END_BLOCK:_tgtp-block-section-heading-nav */

/* START_BLOCK:_tgtp-block-section-image-title (INDEX:165) */
.tgtp-section-image-title {
    /* flex-grow を持たせない。配置は親 (Section Heading) の justify-content が担うため、
       タイトルが余白を食うと親の Align 設定が無効化されてしまう。 */
    margin: 0;
  }

  .tgtp-section-image-title__image {
    display: block;
    width: var(--tgtp-section-image-title-width);
    max-width: 100%;
    height: auto;
  }
/* END_BLOCK:_tgtp-block-section-image-title */

/* START_BLOCK:_tgtp-block-section-text-title (INDEX:166) */
.tgtp-section-text-title {
    font-weight: var(--tgtp-section-text-title-font-weight);
    font-size: var(--tgtp-section-text-title-font-size);
    color: var(--tgtp-section-text-title-text-color);
    /* flex-grow を持たせない。配置は親 (Section Heading) の justify-content が担うため、
       タイトルが余白を食うと親の Align 設定が無効化されてしまう。 */
  }
/* END_BLOCK:_tgtp-block-section-text-title */

/* START_BLOCK:_tgtp-block-sidebar-cart-header (INDEX:167) */
.tgtp-sidebar-cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: var(--header-height, 80px);
}

.tgtp-sidebar-cart-header__title {
  font-size: 16px;
  font-weight: 600;
}

.tgtp-sidebar-cart-header__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  padding: 0;
}

.tgtp-sidebar-cart-header__close svg {
  width: 20px;
  height: 20px;
}
/* END_BLOCK:_tgtp-block-sidebar-cart-header */

/* START_BLOCK:_tgtp-block-slideshow-slide (INDEX:174) */
.tgtp-slideshow-slide {
  position: relative;
  width: 100%;
  aspect-ratio: var(--tgtp-slideshow-aspect-ratio, 16 / 9);
  overflow: hidden;
}

.tgtp-slideshow-slide__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block;
}

.tgtp-slideshow-slide__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.tgtp-slideshow-slide__content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: var(--tgtp-slideshow-content-justify, center);
  align-items: var(--tgtp-slideshow-content-align, center);
  text-align: var(--tgtp-slideshow-inner-align, center);
  gap: var(--tgtp-slideshow-content-gap, 16px);
  padding-top: var(--tgtp-slideshow-padding-top, 0);
  padding-bottom: var(--tgtp-slideshow-padding-bottom, 0);
  padding-left: var(--tgtp-slideshow-padding-left, 0);
  padding-right: var(--tgtp-slideshow-padding-right, 0);
}

.tgtp-slideshow-slide__content > * {
  max-width: 100%;
}
/* END_BLOCK:_tgtp-block-slideshow-slide */

/* START_BLOCK:_tgtp-block-swiper-banners (INDEX:182) */
.tgtp-swiper-banners {
  overflow: hidden;
  width: 100%;
}

.tgtp-swiper-banners .swiper-slide {
  flex-shrink: 0;
  width: calc(100% - 32px);
  max-width: 320px;
  border-radius: var(--tgtp-banner-border-radius, 0);
  outline: var(--tgtp-banner-stroke-weight, 0) solid var(--tgtp-banner-stroke-color, transparent);
  overflow: hidden;
}

.tgtp-swiper-banners .swiper-slide a {
  display: block;
}

.tgtp-swiper-banners .swiper-slide .tgtp-banner-slide__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: var(--tgtp-banner-aspect-ratio, auto);
}

.tgtp-swiper-banners .swiper-slide .tgtp-banner-slide__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tgtp-swiper-banners .swiper-button-prev,
.tgtp-swiper-banners .swiper-button-next {
  color: var(--tgtp-color-on-surface, #212121);
}

.tgtp-swiper-banners .swiper-pagination-bullet-active {
  background: var(--tgtp-color-primary, #1A73E8);
}
/* END_BLOCK:_tgtp-block-swiper-banners */

/* START_BLOCK:_tgtp-block-swiper-collection-list (INDEX:183) */
.tgtp-swiper-collection-list {
  overflow: hidden;
}

.tgtp-swiper-collection-list img {
  max-width: 100%;
  height: auto;
}

.tgtp-swiper-collection-list .swiper-slide {
  width: var(--tgtp-swiper-collection-list-slide-width);
  flex-shrink: 0;
}

.tgtp-swiper-collection-list .swiper-button-prev,
.tgtp-swiper-collection-list .swiper-button-next {
  color: var(--tgtp-color-on-surface, #212121);
}

.tgtp-swiper-collection-list .swiper-pagination-bullet-active {
  background: var(--tgtp-color-primary, #1A73E8);
}
/* END_BLOCK:_tgtp-block-swiper-collection-list */

/* START_BLOCK:_tgtp-block-swiper-products (INDEX:184) */
.tgtp-swiper-products {
  overflow: hidden;
}

.tgtp-swiper-products img {
  max-width: 100%;
  height: auto;
}

.tgtp-swiper-products .swiper-slide {
  width: var(--tgtp-swiper-products-slide-width);
  flex-shrink: 0;
}

.tgtp-swiper-products .swiper-button-prev,
.tgtp-swiper-products .swiper-button-next {
  color: var(--tgtp-color-on-surface, #212121);
}

.tgtp-swiper-products .swiper-pagination-bullet-active {
  background: var(--tgtp-color-primary, #1A73E8);
}
/* END_BLOCK:_tgtp-block-swiper-products */

/* START_BLOCK:_tgtp-block-text-more-button (INDEX:185) */
.tgtp-more-button-text {
  display: flex;
  justify-content: center;
  margin-top: var(--tgtp-more-button-margin-top);
}

.tgtp-more-button-text__link {
  display: inline-flex;
  align-items: center;
  gap: var(--tgtp-more-button-icon-gap);
  font-size: var(--tgtp-more-button-font-size);
  font-weight: var(--tgtp-more-button-font-weight);
  color: var(--tgtp-more-button-text-color);
  text-decoration: none;
  letter-spacing: var(--tgtp-more-button-letter-spacing);
  line-height: 1;
  transition: opacity 0.2s ease;
}

.tgtp-more-button-text__link:hover {
  opacity: 0.7;
}

.tgtp-more-button-text__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--tgtp-more-button-icon-size);
  height: var(--tgtp-more-button-icon-size);
  color: var(--tgtp-more-button-icon-color);
}

.tgtp-more-button-text__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.tgtp-more-button-text__link--filled {
  background-color: var(--tgtp-more-button-background-color);
  color: var(--tgtp-more-button-text-color);
  padding: var(--tgtp-more-button-padding-block) var(--tgtp-more-button-padding-inline);
  border-radius: var(--tgtp-more-button-border-radius);
}

.tgtp-more-button-text__link--outline {
  background-color: transparent;
  border: var(--tgtp-more-button-border-width) solid var(--tgtp-more-button-border-color);
  padding: var(--tgtp-more-button-padding-block) var(--tgtp-more-button-padding-inline);
  border-radius: var(--tgtp-more-button-border-radius);
}
/* END_BLOCK:_tgtp-block-text-more-button */

/* START_BLOCK:_tgtp-block-toggle-menu-button (INDEX:188) */
.tgtp-toggle-menu-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 7px 3px;
  width: 28px;
  color: var(--tgtp-color-on-header);
  background: none;
  border: none;
}
.tgtp-toggle-menu-btn__line {
  display: block;
  width: 22px;
  height: 1.5px;
  background-color: currentColor;
}
/* Header Nav が配置・有効な時は PC ではナビがメニューを担うのでトグルを隠す。
   無効化 block は DOM に出ないため :has は「配置かつ有効」を自動で満たす。
   Header Nav が無ければ PC でもサイドバー入口として表示し続ける。 */
@media screen and (min-width: 769px) {
  .tgtp-header__inner:has(.tgtp-header-nav) .tgtp-toggle-menu-btn {
    display: none;
  }
}
@media screen and (max-width: 749px) {
  .tgtp-toggle-menu-btn {
    gap: 4px;
    padding: 6px 2px;
    width: 24px;
  }
  .tgtp-toggle-menu-btn__line {
    width: 20px;
  }
}
/* END_BLOCK:_tgtp-block-toggle-menu-button */

/* START_BLOCK:ai_gen_block_bb139d6 (INDEX:194) */
.custom-liquid-block {
  margin-top: 0;
  margin-bottom: 0;
}

.custom-liquid-content.center {
  text-align: center;
}

.section-{{ section.id }}-padding {
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;
}

@media screen and (min-width: 750px) {
  .section-{{ section.id }}-padding {
    padding-top: {{ section.settings.padding_top }}px;
    padding-bottom: {{ section.settings.padding_bottom }}px;
  }
}
/* END_BLOCK:ai_gen_block_bb139d6 */

/* START_BLOCK:tgtp-block-card-product (INDEX:195) */
.tgtp-card-product {
  display: flex;
  flex-direction: column;
  gap: var(--tgtp-card-product-gap);
  color: var(--tgtp-card-product-text-color);
  background-color: var(--tgtp-card-product-bg-color, transparent);
  border-radius: var(--tgtp-card-product-border-radius);
  overflow: hidden;
  padding: var(--tgtp-card-product-padding-vertical) var(--tgtp-card-product-padding-horizontal);
  text-align: var(--tgtp-card-product-text-align, left);
}

.tgtp-card-product__image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--tgtp-card-product-thumbnail-border-radius);
  border: var(--tgtp-card-product-thumbnail-stroke-weight) solid var(--tgtp-card-product-thumbnail-stroke-color, transparent);
}

.tgtp-card-product__image {
  margin: 0;
}

.tgtp-card-product__image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: var(--tgtp-card-product-thumbnail-ratio);
  object-fit: cover;
}

.tgtp-card-product__title {
  font-family: var(--tgtp-card-product-font-family);
  font-size: var(--tgtp-card-product-title-font-size);
  font-weight: var(--tgtp-card-product-title-font-weight);
  line-height: var(--tgtp-card-product-title-line-height);
  letter-spacing: var(--tgtp-card-product-title-letter-spacing);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.tgtp-card-product__title a {
  color: inherit;
  text-decoration: none;
}

.tgtp-card-product:hover .tgtp-card-product__title a {
  text-decoration: underline;
}

.tgtp-card-product__price {
  font-family: var(--tgtp-card-product-font-family);
  font-size: var(--tgtp-card-product-price-font-size);
  font-weight: var(--tgtp-card-product-price-font-weight);
  line-height: var(--tgtp-card-product-price-line-height);
  letter-spacing: var(--tgtp-card-product-price-letter-spacing);
  color: var(--tgtp-card-product-price-color);
}

.tgtp-card-product__price--compare {
  text-decoration: line-through;
  opacity: 0.6;
  margin-right: 4px;
}

.tgtp-card-product__badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 1;
}

.tgtp-card-product__badge-item {
  display: inline-block;
  font-size: 11px;
  font-weight: bold;
  padding: 2px 8px;
  border-radius: 4px;
  background-color: var(--tgtp-card-product-badge-bg, var(--tgtp-color-on-surface, #000));
  color: var(--tgtp-card-product-badge-color, var(--tgtp-color-surface, #fff));
}

.tgtp-card-product__image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: var(--tgtp-card-product-thumbnail-ratio);
  background-color: #f5f5f5;
}
.tgtp-card-product__image-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.3;
}

.tgtp-card-product {
  transition: transform 120ms linear;
}

.tgtp-card-product:active {
  transform: scale(0.97);
}

.tgtp-card-product a:hover {
  opacity: 1;
}

.tgtp-card-product .tgtp-card-product__image img {
  transition: transform 120ms linear;
}

.tgtp-card-product:hover .tgtp-card-product__image img {
  transform: scale(1.1);
}

.tgtp-card-product.is-sold-out .tgtp-card-product__image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
  pointer-events: none;
}
/* END_BLOCK:tgtp-block-card-product */

/* START_BLOCK:tgtp-block-divider-image (INDEX:198) */
.tgtp-block-divider-image {
  position: absolute;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 1;
}

.tgtp-block-divider-image img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
}

.tgtp-block-divider-image img.tgtp-block-divider-image__mobile {
  display: none;
}
/* END_BLOCK:tgtp-block-divider-image */

/* START_BLOCK:tgtp-block-divider-svg (INDEX:199) */
.tgtp-block-divider-svg {
  position: absolute;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 1;
}

.tgtp-block-divider-svg svg {
  width: 100%;
  height: 100%;
  display: block;
  preserveAspectRatio: none;
}
/* END_BLOCK:tgtp-block-divider-svg */

/* START_BLOCK:tgtp-block-overlay-title (INDEX:200) */
.tgtp-overlay-title {
  position: absolute;
  z-index: 1;
  top: var(--overlay-title-top, 0);
  left: var(--overlay-title-left, 0);
  transform: var(--overlay-title-transform, none);
  width: var(--overlay-title-width);
  height: var(--overlay-title-height);
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
}

.tgtp-overlay-title img {
  -webkit-user-drag: none;
  user-drag: none;
}

.tgtp-overlay-title__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tgtp-overlay-title__foreground {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: var(--overlay-title-foreground-transform, translate(-50%, -50%));
  width: var(--overlay-title-foreground-width, auto);
  height: var(--overlay-title-foreground-height, auto);
  object-fit: contain;
}
/* END_BLOCK:tgtp-block-overlay-title */

/* START_BLOCK:tgtp-block-section-heading (INDEX:201) */
.tgtp-section-heading {
    display: flex;
    align-items: center;
    justify-content: var(--tgtp-section-heading-justify-content);
    gap: var(--tgtp-section-heading-gap);
    padding-top: var(--tgtp-section-heading-padding-top);
    padding-bottom: var(--tgtp-section-heading-padding-bottom);
  }
/* END_BLOCK:tgtp-block-section-heading */

/* START_BLOCK:tgtp-block-title (INDEX:202) */
.tgtp-block-title2 {
    display: flex;
    align-items: center;
    justify-content: var(--tgtp-block-title-justify-content);
    padding-top: var(--tgtp-block-title-padding-top);
    padding-bottom: var(--tgtp-block-title-padding-bottom);
    gap: var(--tgtp-block-title-gap);
  }

  .tgtp-block-title-text2 {
    font-weight: var(--tgtp-block-title-font-weight);
    font-size: var(--tgtp-block-title-font-size);
    color: var(--tgtp-block-title-text-color);
    flex: 1 1 auto;
  }

  .tgtp-block-title-link2 {
    font-size: var(--tgtp-block-title-link-font-size);
    color: var(--tgtp-block-title-link-color);
    padding: var(--tgtp-block-title-link-padding-topbottom) var(--tgtp-block-title-link-padding-side);
    border: var(--tgtp-block-title-link-border-size) solid var(--tgtp-block-title-link-border-color);
    border-radius: var(--tgtp-block-title-link-border-radius-size);
    background-color: var(--tgtp-block-title-link-bg-color);
    text-decoration: none;
  }
/* END_BLOCK:tgtp-block-title */