/** Shopify CDN: Minification failed

Line 68:0 All "@import" rules must come first

**/
/* ============================================================
   薫玉堂 カスタムスタイル
   既存サイト（style.css）から抽出したデザイントークンを適用
   ============================================================ */

html,
html body,
html body * {
  -webkit-user-select: text !important;
  user-select: text !important;
}

::selection {
  background-color: rgba(179, 212, 245, 0.5);
}

.kgy-badge-below {
  text-align: center;
  padding: 0.2rem 0 0.4rem;
}

body.template-product .share-button__button {
  min-height: 3rem;
}

body.template-product .share-button {
  border-top: 1px solid #ffffff;
}

@media screen and (max-width: 749px) {
  body.template-product .product__media-wrapper .slider-buttons {
    left: 0;
    right: 0;
    padding: 0;
  }

  body.template-product .product__title h1 {
    font-size: 20px;
  }

  body.template-product .slider--mobile:after {
    padding-left: 0;
  }
}

/* スマホ表示ではサイト全体でスクロールバーを非表示（スクロール操作自体は可能なまま） */
@media screen and (max-width: 989px) {
  html,
  body {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  html::-webkit-scrollbar,
  body::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
  }
}

/* --- Google Fonts: Shippori Mincho（Mincho代替） --- */
@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600&display=swap');

/* --- CSS変数（デザイントークン） --- */
:root {
  --kgy-font-mincho: 'Shippori Mincho', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  --kgy-font-gothic: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;

  --kgy-color-bg: #e2e3e3;
  --kgy-color-bg-white: #ffffff;
  --kgy-color-text: #333333;
  --kgy-color-text-sub: #595757;
  --kgy-color-border: #707070;
  --kgy-color-border-lt: #9fa0a0;

  --kgy-color-2016-bg: #ffffff;
  --kgy-color-2016-text: #3e3a39;
  --kgy-color-1594-bg: #3e3a39;
  --kgy-color-1594-text: #ffffff;

  --kgy-color-red: #c30d23;

  --kgy-letter-spacing-sm: 0.05em;
  --kgy-letter-spacing-md: 0.1em;
  --kgy-letter-spacing-lg: 0.15em;
  --kgy-letter-spacing-xl: 0.2em;

  --kgy-collection-main-font-size: 14px;
  --kgy-collection-sub-font-size: 12px;
  --kgy-collection-mobile-main-font-size: 13px;
  --kgy-collection-mobile-sub-font-size: 11px;

  /* スマホでのコンテンツ統一横幅（ボタン類などをこの幅に揃える） */
  --kgy-mobile-content-width: 85%;

  --kgy-transition: all 0.3s ease 0s;
}

/* ============================================================
   ベース
   ============================================================ */
body {
  font-family: var(--kgy-font-mincho);
  background-color: var(--kgy-color-bg);
  color: var(--kgy-color-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--kgy-color-text-sub);
  text-decoration: none;
  transition: var(--kgy-transition);
}

@media (min-width: 750px) {
  a:hover {
    opacity: 0.7;
  }
}

/* ============================================================
   ヘッダー 基本
   ============================================================ */
.header-wrapper,
.header {
  background-color: var(--kgy-color-bg);
  ;
}

.header__heading-logo {
  width: 74px;
  height: auto;
}

@media(max-width: 989px) {
  .header__heading-logo {
    width: 52px;
    height: auto;
  }
}

.header__heading-link,
.header__heading,
.header__menu-item {
  font-family: var(--kgy-font-mincho);
  letter-spacing: var(--kgy-letter-spacing-xl);
  font-weight: 500;
}

.header__menu-item {
  font-size: 13px;
}

.header__menu-item:hover span {
  text-decoration: none !important;
}

header .page-width {
  width: 100%;
}


@media screen and (max-width: 989px) {
  .header {
    height: 70px !important;
    margin: 0 auto;
  }
}

/* ============================================================
   ヘッダー ナビ 共通
   ============================================================ */
.kgy-nav-custom .list-menu--inline {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  gap: 0 !important;
}

/* ============================================================
   TOPページ
   ============================================================ */
.page-top .header__menu-item {
  font-size: 18px !important;
  padding: 0 15px;
}

.page-top .header__inline-menu .list-menu--inline {
  flex-direction: column;
  gap: 0.2rem;
}

body.template-page.page-default .header__menu-item,
body.template-cart .header__menu-item,
body.template-search .header__menu-item {
  font-size: 18px;
  padding: 0 15px;
}

body.template-page.page-default .header__inline-menu .list-menu--inline,
body.template-cart .header__inline-menu .list-menu--inline,
body.template-search .header__inline-menu .list-menu--inline {
  gap: 0.2rem;
}

body.template-404 .header__menu-item {
  font-size: 18px !important;
  padding: 0 15px;
}

body.template-404 .header__inline-menu .list-menu--inline {
  flex-direction: column;
  gap: 0.2rem;
}

/* ============================================================
   1594・2016 ページ別ナビ
   ============================================================ */
.page-1594 .header__inline-menu:not(.kgy-nav-custom),
.page-2016 .header__inline-menu:not(.kgy-nav-custom) {
  display: none !important;
}

.page-1594 .header__heading-logo {
  filter: brightness(0) invert(1);
}

.header__heading-logo {
  width: 70px !important;
  height: auto !important;
}

@media (max-width: 989px) {
  .header__heading-logo {
    width: 52px !important;
    height: auto !important;
  }
}

/* ============================================================
   告知バー
   ============================================================ */
.announcement-bar {
  background-color: var(--kgy-color-text-sub);
  color: var(--kgy-color-bg);
}

.announcement-bar__message {
  font-family: var(--kgy-font-mincho);
  letter-spacing: var(--kgy-letter-spacing-md);
}

/* ============================================================
   ボタン
   ============================================================ */
.button,
.button--primary {
  font-family: var(--kgy-font-mincho);
  letter-spacing: var(--kgy-letter-spacing-xl);
  border-radius: 0;
  transition: var(--kgy-transition);
}

@media (min-width: 750px) {

  .button,
  .button--primary {
    min-height: 70px;
  }
}

@media (max-width: 749px) {

  .button,
  .button--primary {
    min-height: 40px;
  }
}

/* ============================================================
   見出し共通
   ============================================================ */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4 {
  font-family: var(--kgy-font-mincho);
  font-weight: 500;
}

/* ============================================================
   ヒーローバナー
   ============================================================ */
.banner__heading {
  font-family: var(--kgy-font-mincho);
  letter-spacing: var(--kgy-letter-spacing-xl);
  font-weight: 500;
}

.banner__text {
  font-family: var(--kgy-font-mincho);
  letter-spacing: var(--kgy-letter-spacing-md);
  line-height: 2.2;
}

/* ============================================================
   ヘッダー
   ============================================================ */
/* 1594ライン：ダーク背景 */
.page-1594 {
  background-color: var(--kgy-color-1594-bg);
  color: var(--kgy-color-1594-text);
}

.page-1594 .header-wrapper,
.page-1594 .header {
  background-color: var(--kgy-color-1594-bg) !important;
}

.page-1594 .header__heading-link,
.page-1594 .header__menu-item,
.page-1594 .header a,
.page-1594 main .page-1594 a {
  color: var(--kgy-color-1594-text);
}

/* 2016ライン：白背景 */
.page-2016 {
  background-color: var(--kgy-color-2016-bg);
  color: var(--kgy-color-2016-text);
}

.page-2016 .header-wrapper,
.page-2016 .header {
  background-color: var(--kgy-color-2016-bg) !important;
}

/* ============================================================
   商品カード
   ============================================================ */
.card__heading,
.card__heading a {
  font-family: var(--kgy-font-mincho);
  letter-spacing: var(--kgy-letter-spacing-md);
}

.card,
.card-wrapper {
  border-radius: 0;
}

.price {
  font-family: var(--kgy-font-mincho);
  letter-spacing: var(--kgy-letter-spacing-sm);
}

/* ============================================================
   コレクションページ
   ============================================================ */
.collection-hero__title {
  font-family: var(--kgy-font-mincho);
  letter-spacing: var(--kgy-letter-spacing-xl);
  font-weight: 500;
}

.template-collection .collection-hero {
  padding: 72px 0 46px;
}

.template-collection .collection-hero__inner {
  justify-content: center;
  padding: 0 2rem;
}

.template-collection .collection-hero__text-wrapper {
  flex-basis: auto;
  text-align: center;
}

.template-collection .collection-hero__title {
  margin: 0;
  color: currentColor;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.22em;
}

.facets__heading,
.facets label,
.facet-filters__label {
  font-family: var(--kgy-font-mincho);
  letter-spacing: var(--kgy-letter-spacing-md);
}

body.template-collection:not(.page-1594):not(.page-2016),
body.template-collection:not(.page-1594):not(.page-2016) .content-for-layout,
body.template-collection:not(.page-1594):not(.page-2016) .collection-hero,
body.template-collection:not(.page-1594):not(.page-2016) .kgy-collection-products {
  background-color: #e2e3e3;
}

body.template-collection.page-1594,
body.template-collection.page-1594 .content-for-layout,
body.template-collection.page-1594 .collection-hero,
body.template-collection.page-1594 .kgy-collection-products {
  background-color: var(--kgy-color-1594-bg);
  color: var(--kgy-color-1594-text);
}

body.template-collection.page-2016,
body.template-collection.page-2016 .content-for-layout,
body.template-collection.page-2016 .collection-hero,
body.template-collection.page-2016 .kgy-collection-products {
  background-color: var(--kgy-color-2016-bg);
  color: var(--kgy-color-2016-text);
}

.page-1594 .header__icon,
.page-1594 .header__search,
.page-1594 .header__icon .icon {
  color: var(--kgy-color-1594-text);
}

.page-1594 .header__icon svg,
.page-1594 .header__search svg {
  stroke: currentColor;
}

.page-1594 .kgy-nav-custom .header__menu-item,
.page-2016 .kgy-nav-custom .header__menu-item {
  font-size: 13px !important;
  padding: 0.8rem 1.2rem;
}

.template-collection.page-1594 .collection-hero,
.template-collection.page-2016 .collection-hero {
  padding: 72px 0 46px;
}

.template-collection.page-1594 .collection-hero__inner,
.template-collection.page-2016 .collection-hero__inner {
  justify-content: center;
  padding: 0 2rem;
}

.template-collection.page-1594 .collection-hero__text-wrapper,
.template-collection.page-2016 .collection-hero__text-wrapper {
  flex-basis: auto;
  text-align: center;
}

.template-collection.page-1594 .collection-hero__title,
.template-collection.page-2016 .collection-hero__title {
  margin: 0;
  color: currentColor;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.22em;
}

.template-collection.page-1594 .collection-hero__description,
.template-collection.page-2016 .collection-hero__description {
  display: none;
}

.kgy-collection-products {
  --kgy-collection-side-width: 210px;
  --kgy-collection-column-gap: 58px;
}

.kgy-collection-products .page-width {
  max-width: 1120px;
}

.kgy-collection-layout.facets-vertical {
  align-items: flex-start;
  gap: var(--kgy-collection-column-gap);
}

.kgy-collection-layout .facets-wrapper {
  flex: 0 0 var(--kgy-collection-side-width);
  width: var(--kgy-collection-side-width);
  padding-right: 0;
}

.kgy-collection-layout .product-grid-container {
  flex: 1 1 auto;
  min-width: 0;
}

.kgy-collection-products .facets-container {
  color: currentColor;
}

.kgy-facets-container {
  width: 100%;
}

.kgy-collection-products .facets__form-vertical {
  width: 100%;
  color: currentColor;
}

.kgy-collection-products .active-facets-vertical-filter {
  display: block;
}

.kgy-collection-products .active-facets__button-wrapper {
  display: none;
}

.kgy-collection-products .facets__heading--vertical,
.kgy-facets__heading,
.kgy-facets__checkbox-label,
.kgy-facets__radio-label,
.kgy-collection-products .kgy-price-facets__link {
  color: currentColor;
}

.kgy-facets__header-row {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin: 0 0 26px;
}

.kgy-facets__heading {
  margin: 0;
  font-size: var(--kgy-collection-main-font-size);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.kgy-facets__group+.kgy-facets__group {
  margin-top: 56px;
}

.kgy-facets__fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.kgy-facets__list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
}

.kgy-facets__item {
  margin: 0;
}

.kgy-facets__checkbox-label,
.kgy-facets__radio-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  font-size: var(--kgy-collection-main-font-size);
  line-height: 1.5;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.kgy-facets__checkbox-label input,
.kgy-facets__radio-label input {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin: 0;
  border: 1px solid rgba(62, 58, 57, 0.45);
  border-radius: 3px;
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 11px 11px;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

.kgy-facets__checkbox-label:hover input,
.kgy-facets__radio-label:hover input {
  border-color: #3e3a39;
}

.kgy-facets__checkbox-label input:focus-visible,
.kgy-facets__radio-label input:focus-visible {
  outline: 2px solid rgba(62, 58, 57, 0.5);
  outline-offset: 2px;
}

.kgy-facets__radio-label input {
  border-radius: 50%;
}

.kgy-facets__checkbox-label input:checked {
  border-color: #3e3a39;
  background-color: #3e3a39;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.4 6.3 4.7 8.6 9.6 3.4' fill='none' stroke='%23ffffff' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* 1594ライン（濃い背景）では白塗り＋濃いチェックで視認性を確保 */
.page-1594 .kgy-facets__checkbox-label input {
  border-color: rgba(255, 255, 255, 0.7);
}

.page-1594 .kgy-facets__checkbox-label:hover input {
  border-color: #fff;
}

.page-1594 .kgy-facets__checkbox-label input:checked {
  border-color: #fff;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.4 6.3 4.7 8.6 9.6 3.4' fill='none' stroke='%233e3a39' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.kgy-facets__radio-label input:checked {
  border: 3px solid #5aaa46;
  box-shadow: inset 0 0 0 3px #fff;
  background: #5aaa46;
}

.kgy-price-facets {
  margin: 0;
  padding: 0;
}

.kgy-price-facets li {
  margin: 0 0 8px;
}

.kgy-price-facets__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 14px;
  padding-left: 14px;
  font-size: 12px;
  line-height: 1.45;
  letter-spacing: 0.08em;
}

.kgy-price-facets__link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  border: 1px solid currentColor;
  border-radius: 50%;
  transform: translateY(-50%);
}

.kgy-price-facets__link.is-active::before {
  background: #5aaa46;
  border-color: #5aaa46;
}

.kgy-facets__submit {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 150px;
  min-height: 48px;
  margin-top: 56px;
  padding: 0 18px;
  border: 1px solid currentColor;
  border-radius: 0;
  background: transparent;
  color: currentColor;
  font-family: var(--kgy-font-mincho);
  font-size: var(--kgy-collection-main-font-size);
  letter-spacing: 0.08em;
  text-align: left;
  cursor: pointer;
}

.kgy-facets__submit-line {
  position: relative;
  display: block;
  width: 54px;
  height: 1px;
  margin-left: 18px;
  background: currentColor;
}

.kgy-facets__submit-line::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 9px;
  height: 9px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.kgy-collection-toolbar {
  display: block;
  margin-bottom: 38px;
}

.kgy-collection-toolbar__form {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 46px;
}

.kgy-collection-toolbar__count {
  margin-right: auto;
  color: currentColor;
  font-size: var(--kgy-collection-main-font-size);
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.kgy-collection-sort,
.kgy-collection-display-count {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: currentColor;
  font-size: var(--kgy-collection-sub-font-size);
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.kgy-collection-sort__label {
  color: currentColor;
  font-size: var(--kgy-collection-sub-font-size);
  font-weight: 400;
}

.kgy-collection-sort__select {
  position: relative;
  min-width: 210px;
  border-bottom: 1px solid currentColor;
}

.kgy-collection-sort__select .select__select {
  min-height: 26px;
  padding: 0 24px 2px 0;
  border: 0;
  background: transparent;
  color: currentColor;
  font-family: var(--kgy-font-mincho);
  font-size: var(--kgy-collection-sub-font-size);
  letter-spacing: 0.08em;
}

.kgy-collection-sort__select .svg-wrapper {
  position: absolute;
  right: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  transform: translateY(-50%);
  pointer-events: none;
}

.kgy-collection-display-count__link {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  color: currentColor;
  opacity: 1;
}

.page-2016 .kgy-collection-display-count__link {
  border-left-color: rgba(62, 58, 57, 0.22);
}

.kgy-collection-display-count__link.is-active {
  border-left-color: transparent;
  background: rgba(255, 255, 255, 0.16);
}

.page-2016 .kgy-collection-display-count__link.is-active {
  border-left-color: transparent;
  background: rgba(62, 58, 57, 0.1);
}

.kgy-collection-products .product-grid {
  row-gap: 70px;
  column-gap: 70px;
}

.kgy-collection-products .product-grid .grid__item {
  max-width: calc((100% - 140px) / 3);
  width: calc((100% - 140px) / 3);
}

.kgy-collection-products .card,
.kgy-collection-products .card__inner,
.kgy-collection-products .card__media,
.kgy-collection-products .media {
  background: transparent;
}

.kgy-collection-products .card__inner {
  min-height: 185px;
}

.kgy-collection-products .card__media .media img {
  object-fit: contain;
}

.kgy-collection-products .card__content {
  padding: 0;
}

.kgy-collection-products .card__information {
  padding: 16px 0 0;
  text-align: center;
}

.kgy-collection-products .card-information,
.kgy-collection-products .price,
.kgy-collection-products .price__container {
  width: 100%;
  text-align: center;
}

.kgy-collection-products .card__heading,
.kgy-collection-products .card__heading a {
  color: currentColor;
  font-size: var(--kgy-collection-main-font-size);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

.kgy-collection-products .price,
.kgy-collection-products .price .price-item {
  color: currentColor;
  font-size: var(--kgy-collection-sub-font-size);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

.kgy-collection-products .price {
  margin-top: 2px;
}

.kgy-pagination-wrapper {
  position: relative;
  margin-top: 72px;
}

.kgy-pagination {
  position: relative;
}

.kgy-pagination__list {
  justify-content: center;
  gap: 20px;
  width: 100%;
}

.kgy-pagination .pagination__item {
  min-width: auto;
  height: auto;
  padding: 0 0 7px;
  color: currentColor;
  font-size: var(--kgy-collection-main-font-size);
  line-height: 1.4;
  opacity: 1;
}

.kgy-pagination .pagination__item::after {
  content: none;
}

.kgy-pagination .pagination__item--current {
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-thickness: 1px;
}

.kgy-pagination__next {
  position: absolute;
  right: 0;
  top: 50%;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: currentColor;
  font-size: var(--kgy-collection-main-font-size);
  letter-spacing: 0.08em;
  transform: translateY(-50%);
  transition: opacity 0.3s ease;
}

.kgy-pagination__next:hover {
  opacity: 0.72;
}

.kgy-pagination__next-line {
  display: inline-block;
  position: relative;
  width: 32px;
  height: 1px;
  background: currentColor;
  overflow: visible;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ホバーで矢印が前へ進む */
.kgy-pagination__next:hover .kgy-pagination__next-line {
  transform: translateX(9px);
}

.kgy-pagination__next-line::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  margin-left: auto;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-3px) rotate(45deg);
}

.kgy-collection-service-section {
  background: var(--kgy-color-1594-bg);
  color: var(--kgy-color-1594-text);
  padding: 96px 0 88px;
}

.page-2016 .kgy-collection-service-section {
  background: var(--kgy-color-2016-bg);
  color: var(--kgy-color-2016-text);
}

.kgy-collection-service-section .page-width {
  max-width: 1120px;
}

.kgy-collection-service {
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 0;
  color: currentColor;
  text-align: center;
}

.kgy-collection-service__link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  min-height: 170px;
  padding: 32px 42px;
  border: 0;
  color: currentColor;
  font-size: var(--kgy-collection-main-font-size, 14px);
  line-height: 1.8;
  letter-spacing: 0.08em;
  transition: background-color 0.3s ease, opacity 0.3s ease;
}

.kgy-collection-service__link+.kgy-collection-service__link {
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.kgy-collection-service__link:hover {
  opacity: 1;
  background-color: var(--kgy-service-hover-bg);
}

.page-2016 .kgy-collection-service__link:hover {
  color: #fff;
}

.page-2016 .kgy-collection-service__link+.kgy-collection-service__link {
  border-left-color: rgba(62, 58, 57, 0.28);
}

.kgy-collection-line-link {
  display: grid;
  grid-template-columns: 26% 74%;
  width: 100%;
  min-height: 340px;
}

.kgy-collection-line-link--2016 {
  grid-template-columns: 26% 74%;
}

.kgy-collection-line-link--1594 {
  grid-template-columns: 74% 26%;
  min-height: 400px;
}

.kgy-collection-line-link__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 40px 72px 80px;
  background: #f5f2ed;
  color: #3e3a39;
  order: 1;
}

.kgy-collection-line-link--1594 .kgy-collection-line-link__content {
  order: 2;
  background: #47403e;
  color: #f5f2ed;
  padding: 80px 64px;
}

.kgy-collection-line-link__heading {
  margin: 0 0 30px;
  color: currentColor;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.16em;
}

.kgy-collection-line-link__text,
.kgy-collection-line-link__text p {
  margin: 0;
  color: currentColor;
  font-size: 15px;
  line-height: 2.1;
  letter-spacing: 0.08em;
}

.kgy-collection-line-link__links {
  display: grid;
  gap: 18px;
  margin-top: 40px;
}

.kgy-collection-line-link__link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  color: currentColor;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  transition: opacity 0.3s ease;
}

.kgy-collection-line-link__link:hover {
  opacity: 0.72;
}

.kgy-collection-line-link__line {
  display: inline-block;
  position: relative;
  width: 44px;
  height: 1px;
  background: currentColor;
  overflow: visible;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ホバーで矢印がスッと前へ進む、動きのあるアニメーション */
.kgy-collection-line-link__link:hover .kgy-collection-line-link__line {
  transform: translateX(10px);
}

.kgy-collection-line-link__line::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  margin-left: auto;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-3px) rotate(45deg);
}

.kgy-collection-line-link__media {
  min-width: 0;
  background: #e2e3e3;
  order: 2;
}

.kgy-collection-line-link--1594 .kgy-collection-line-link__media {
  order: 1;
}

.kgy-collection-line-link__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

@media screen and (max-width: 989px) {
  .kgy-collection-layout.facets-vertical {
    display: block;
  }

  .kgy-collection-layout .facets-wrapper {
    width: 100%;
    margin-bottom: 22px;
  }

  .kgy-collection-products {
    --kgy-collection-side-width: 100%;
  }

  .kgy-collection-products .page-width {
    padding-left: 24px;
    padding-right: 24px;
  }

  .kgy-collection-products .facets-container {
    display: block;
    padding-top: 0;
  }

  .facets.kgy-facets,
  .kgy-facets {
    display: none !important;
  }

  .kgy-mobile-facets.medium-hide.large-up-hide {
    display: block !important;
    width: 100%;
  }

  .kgy-mobile-facets__form,
  .kgy-mobile-facets__details {
    width: 100%;
  }

  .kgy-collection-toolbar__form {
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 10px;
  }

  .kgy-collection-products .product-grid {
    column-gap: 26px;
    row-gap: 46px;
  }

  .kgy-collection-products .product-grid .grid__item {
    max-width: calc((100% - 26px) / 2);
    width: calc((100% - 26px) / 2);
  }

  .kgy-pagination__next {
    position: static;
    justify-content: center;
    margin-top: 24px;
    transform: none;
  }

  .kgy-collection-line-link {
    grid-template-columns: 1fr;
  }

  .kgy-collection-line-link--2016,
  .kgy-collection-line-link--1594 {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .kgy-collection-line-link--2016 .kgy-collection-line-link__content,
  .kgy-collection-line-link--1594 .kgy-collection-line-link__content {
    order: 1;
  }

  .kgy-collection-line-link--2016 .kgy-collection-line-link__media,
  .kgy-collection-line-link--1594 .kgy-collection-line-link__media {
    order: 2;
  }

  .kgy-collection-line-link__content {
    padding: 44px 28px;
  }

  .kgy-collection-line-link--1594 .kgy-collection-line-link__content {
    padding: 44px 28px;
  }

  /* SP：リンクは全幅の行にして、テキスト左・矢印右で「ボタン的な行」に配置 */
  .kgy-collection-line-link__links {
    width: 100%;
    gap: 0;
    margin-top: 30px;
  }

  .kgy-collection-line-link__link {
    width: 100%;
    justify-content: space-between;
    gap: 16px;
    padding: 15px 2px;
    border-top: 1px solid currentColor;
  }

  .kgy-collection-line-link__link:last-child {
    border-bottom: 1px solid currentColor;
  }

  .kgy-collection-line-link__link:hover .kgy-collection-line-link__line {
    transform: translateX(8px);
  }
}

@media screen and (max-width: 989px) {

  .template-collection.page-1594 .collection-hero,
  .template-collection.page-2016 .collection-hero {
    padding: 44px 0 30px;
  }

  .kgy-collection-products {
    --kgy-collection-side-width: 100%;
  }

  .kgy-collection-products .page-width {
    padding-left: 24px;
    padding-right: 24px;
  }

  .kgy-collection-products .facets-container {
    display: block;
    padding-top: 0;
  }

  .kgy-facets {
    display: none;
  }

  .kgy-mobile-facets {
    display: block;
    width: 100%;
  }

  .kgy-mobile-facets__form,
  .kgy-mobile-facets__details {
    width: 100%;
  }

  .kgy-mobile-facets__details {
    border: 1px solid currentColor;
  }

  .kgy-mobile-facets__summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 50px;
    padding: 0 16px;
    color: currentColor;
    font-size: var(--kgy-collection-mobile-main-font-size);
    line-height: 1.5;
    letter-spacing: 0.08em;
    cursor: pointer;
  }

  .kgy-mobile-facets__summary::-webkit-details-marker {
    display: none;
  }

  .kgy-mobile-facets__summary-icon,
  .kgy-mobile-facets__summary-icon::before {
    display: block;
    width: 18px;
    height: 1px;
    background: currentColor;
  }

  .kgy-mobile-facets__summary-icon::before {
    content: "";
    transform: rotate(90deg);
  }

  .kgy-mobile-facets__details[open] .kgy-mobile-facets__summary-icon::before {
    content: none;
  }

  .kgy-mobile-facets__details[open] .kgy-mobile-facets__summary {
    background: #fff;
    color: #3e3a39;
  }

  .kgy-mobile-facets__details[open] {
    border-color: #6f6f6f;
  }

  .kgy-mobile-facets__panel {
    border-top: 1px solid currentColor;
    background: #fff;
    color: #3e3a39;
  }

  .kgy-mobile-facets__heading {
    margin: 0;
    padding: 14px 16px;
    border-bottom: 1px solid #6f6f6f;
    background: #e6e6e6;
    color: #3e3a39;
    font-size: var(--kgy-collection-mobile-main-font-size);
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.08em;
  }

  .kgy-mobile-facets__fieldset {
    margin: 0;
    padding: 0;
    border: 0;
  }

  .kgy-mobile-facets__list {
    display: block;
    margin: 0;
    padding: 0;
  }

  .kgy-mobile-facets__item {
    margin: 0;
    border-bottom: 1px dotted rgba(62, 58, 57, 0.55);
  }

  .kgy-mobile-facets__item .kgy-facets__checkbox-label,
  .kgy-mobile-facets__item .kgy-facets__radio-label {
    display: flex;
    min-height: 46px;
    padding: 0 16px;
    color: #3e3a39;
    font-size: var(--kgy-collection-mobile-main-font-size);
  }

  .page-2016 .kgy-mobile-facets__item .kgy-facets__radio-label input:checked {
    border-color: #007aff;
    background: #007aff;
  }

  .page-1594 .kgy-mobile-facets__details[open] {
    border-color: #fff;
  }

  .page-1594 .kgy-mobile-facets__details[open] .kgy-mobile-facets__summary {
    background: var(--kgy-color-1594-bg);
    color: var(--kgy-color-1594-text);
  }

  .page-1594 .kgy-mobile-facets__panel {
    border-top-color: #fff;
    background: var(--kgy-color-1594-bg);
    color: var(--kgy-color-1594-text);
  }

  .page-1594 .kgy-mobile-facets__heading {
    border-bottom-color: #fff;
    background: #5f5f5d;
    color: var(--kgy-color-1594-text);
  }

  .page-1594 .kgy-mobile-facets__item {
    border-bottom-color: rgba(255, 255, 255, 0.78);
  }

  .page-1594 .kgy-mobile-facets__item .kgy-facets__checkbox-label,
  .page-1594 .kgy-mobile-facets__item .kgy-facets__radio-label {
    color: var(--kgy-color-1594-text);
  }

  .page-1594 .kgy-mobile-facets__item .kgy-facets__checkbox-label input {
    border-color: rgba(255, 255, 255, 0.7);
  }

  .page-1594 .kgy-mobile-facets__item .kgy-facets__checkbox-label input:checked {
    border-color: #fff;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.4 6.3 4.7 8.6 9.6 3.4' fill='none' stroke='%233e3a39' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  }

  .page-1594 .kgy-mobile-facets__submit {
    background: #5f5f5d;
    color: var(--kgy-color-1594-text);
  }

  .kgy-mobile-facets__submit {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 18px;
    width: 100%;
    min-height: 50px;
    padding: 0 16px;
    border: 0;
    background: #e6e6e6;
    color: #3e3a39;
    font-family: var(--kgy-font-mincho);
    font-size: var(--kgy-collection-mobile-main-font-size);
    letter-spacing: 0.08em;
  }

  .kgy-mobile-facets__submit .kgy-facets__submit-line {
    width: 52px;
  }

  .kgy-collection-toolbar {
    margin-bottom: 34px;
  }

  .kgy-collection-toolbar__count {
    display: none;
  }

  .kgy-collection-sort,
  .kgy-collection-display-count,
  .kgy-collection-sort__label,
  .kgy-collection-sort__select .select__select {
    font-size: var(--kgy-collection-mobile-sub-font-size);
  }

  .kgy-collection-sort {
    gap: 8px;
  }

  .kgy-collection-sort__select {
    min-width: 92px;
  }

  .kgy-collection-display-count {
    gap: 5px;
  }

  .kgy-collection-display-count__link {
    min-height: 20px;
    padding: 0 7px;
  }

  .kgy-collection-products .product-grid {
    column-gap: 18px;
  }

  .kgy-collection-products .product-grid .grid__item {
    max-width: calc((100% - 18px) / 2);
    width: calc((100% - 18px) / 2);
  }

  .kgy-collection-products .card__heading,
  .kgy-collection-products .card__heading a {
    font-size: var(--kgy-collection-mobile-main-font-size);
  }

  .kgy-collection-products .price,
  .kgy-collection-products .price .price-item {
    font-size: var(--kgy-collection-mobile-sub-font-size);
  }

  .kgy-pagination .pagination__item,
  .kgy-pagination__next {
    font-size: var(--kgy-collection-mobile-main-font-size);
  }

  .kgy-pagination__next {
    justify-content: flex-end;
    width: 100%;
  }

  .kgy-collection-service-section {
    padding: 58px 0 68px;
  }

  .kgy-collection-service-section .page-width {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
  }

  /* TOP/紹介ページ（shopping-guide）の grid と同じく、内側のグリッド自体を85%幅にして横幅を統一 */
  .kgy-collection-service {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
    gap: 16px;
    width: var(--kgy-mobile-content-width, 85%);
    margin: 0 auto;
  }

  .kgy-collection-service__link {
    width: 100%;
    min-height: 84px;
    padding: 18px;
    border: 1px solid currentColor;
    border-radius: 4px;
    font-size: var(--kgy-collection-mobile-main-font-size);
  }

  /* ボタン同士は隙間で区切るので、隣接時の追加ボーダーは付けない */
  .kgy-collection-service__link+.kgy-collection-service__link {
    border: 1px solid currentColor;
    border-radius: 4px;
  }

  .page-2016 .kgy-collection-service__link:hover {
    color: #fff;
  }
}

/* ============================================================
   商品詳細
   ============================================================ */
.product__title {
  font-family: var(--kgy-font-mincho);
  letter-spacing: var(--kgy-letter-spacing-xl);
  font-weight: 500;
}

.product__description,
.product-form__input label {
  font-family: var(--kgy-font-mincho);
  letter-spacing: var(--kgy-letter-spacing-md);
  line-height: 1.75;
}

.product-form__submit {
  font-family: var(--kgy-font-mincho);
  letter-spacing: var(--kgy-letter-spacing-xl);
  border-radius: 0;
}

@media (min-width: 750px) {
  .product-form__submit {
    height: 70px;
    font-size: 1.8rem;
  }
}

/* ============================================================
   カート
   ============================================================ */
.cart-item__name,
.totals__total {
  font-family: var(--kgy-font-mincho);
  letter-spacing: var(--kgy-letter-spacing-md);
}

body.template-cart,
body.template-cart .content-for-layout,
body.template-cart cart-items,
body.template-cart #main-cart-footer {
  background-color: var(--kgy-color-bg);
}

body.template-cart .header-wrapper,
body.template-cart .header {
  background-color: var(--kgy-color-bg) !important;
}

body.template-cart .kgy-cart__header {
  justify-content: center;
  margin: 72px 0 96px;
}

body.template-cart .kgy-cart__header .title {
  margin: 0;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: var(--kgy-letter-spacing-xl);
}

body.template-cart .kgy-cart__lead {
  max-width: 1280px;
  margin: 0 auto 46px;
  font-size: 14px;
  line-height: 2;
  text-align: center;
  letter-spacing: var(--kgy-letter-spacing-md);
}

body.template-cart .kgy-cart__lead p {
  margin: 0;
}

body.template-cart .kgy-cart__lead p + p {
  margin-top: 4px;
}

body.template-cart .kgy-cart__lead span,
body.template-cart .kgy-cart-bag__title {
  color: var(--kgy-color-red);
}

body.template-cart cart-items .page-width,
body.template-cart #main-cart-footer .page-width {
  max-width: 1440px;
  padding-left: 62px;
  padding-right: 62px;
}

body.template-cart .cart__contents,
body.template-cart .cart__items,
body.template-cart .cart-items {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

body.template-cart .cart__items {
  padding-bottom: 0;
  border-bottom: 1px solid var(--kgy-color-border-lt);
}

body.template-cart .cart-items {
  border-collapse: collapse;
  table-layout: fixed;
}

body.template-cart .cart-items th {
  padding: 0 18px 22px;
  color: var(--kgy-color-text);
  font-size: 15px;
  opacity: 1;
  letter-spacing: var(--kgy-letter-spacing-md);
}

body.template-cart .cart-items th:first-child {
  padding-left: 0;
}

body.template-cart .cart-items thead th:first-child {
  width: 54%;
}

body.template-cart .cart-items thead th:nth-child(2),
body.template-cart .cart-items thead th:nth-child(4),
body.template-cart .cart-items thead th:nth-child(5),
body.template-cart .cart-item__unit-price,
body.template-cart .cart-item__quantity,
body.template-cart .cart-item__totals {
  border-left: 1px solid var(--kgy-color-border-lt);
}

body.template-cart .cart-item {
  border-top: 0;
}

body.template-cart .cart-item__media {
  width: 108px;
  padding: 34px 0 34px 12px;
  vertical-align: middle;
}

body.template-cart .cart-item__image-container {
  background: transparent;
}

body.template-cart .cart-item__image {
  max-width: 96px;
}

body.template-cart .cart-item__details {
  position: relative;
  padding: 34px 66px 34px 0;
  vertical-align: middle;
}

body.template-cart .cart-item__details > * {
  max-width: 620px;
}

body.template-cart .cart-item__name {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--kgy-color-text);
}

body.template-cart .cart-item__details cart-remove-button {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
}

body.template-cart .product-option,
body.template-cart .price {
  color: var(--kgy-color-text);
  font-size: 16px;
  letter-spacing: var(--kgy-letter-spacing-md);
}

body.template-cart .cart-item__unit-price {
  width: 13%;
  padding: 34px 18px;
  text-align: center;
  vertical-align: middle;
}

body.template-cart .cart-item__unit-price--details {
  display: none;
}

body.template-cart .cart-item__quantity {
  width: 18%;
  padding: 34px 28px 34px 34px;
  text-align: center;
  vertical-align: middle;
}

body.template-cart .cart-item__quantity-wrapper {
  justify-content: center;
  align-items: center;
  gap: 14px;
}

body.template-cart .cart-quantity {
  min-height: 34px;
  width: auto;
  border: 0;
  background: transparent;
}

body.template-cart .cart-quantity::before,
body.template-cart .cart-quantity::after {
  display: none;
}

body.template-cart .cart-quantity .quantity__input {
  width: 28px;
  height: 34px;
  padding: 0;
  font-size: 16px;
  opacity: 1;
}

body.template-cart .cart-quantity .quantity__button {
  width: 34px;
  height: 34px;
  color: var(--kgy-color-text);
}

body.template-cart .cart-quantity .quantity__button[name="minus"],
body.template-cart .cart-quantity .quantity__button[name="plus"] {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #47403F;
  border-radius: 50%;
  background: transparent;
  color: #47403F;
  overflow: hidden;
  isolation: isolate;
  transition:
    color 0.4s cubic-bezier(0.45, 0, 0.15, 1),
    border-color 0.4s cubic-bezier(0.45, 0, 0.15, 1),
    box-shadow 0.4s cubic-bezier(0.45, 0, 0.15, 1),
    transform 0.4s cubic-bezier(0.45, 0, 0.15, 1);
}

body.template-cart .cart-quantity .quantity__button[name="minus"]::before,
body.template-cart .cart-quantity .quantity__button[name="plus"]::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #47403F;
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.45s cubic-bezier(0.45, 0, 0.15, 1);
}

body.template-cart .cart-quantity .quantity__button[name="minus"] .svg-wrapper,
body.template-cart .cart-quantity .quantity__button[name="minus"] svg,
body.template-cart .cart-quantity .quantity__button[name="plus"] .svg-wrapper,
body.template-cart .cart-quantity .quantity__button[name="plus"] svg {
  position: relative;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.45, 0, 0.15, 1);
}

body.template-cart .cart-quantity .quantity__button[name="minus"]:not([disabled]):hover,
body.template-cart .cart-quantity .quantity__button[name="plus"]:not([disabled]):hover {
  color: #ffffff;
  border-color: #47403F;
  box-shadow: 0 6px 14px -8px rgba(71, 64, 63, 0.55);
  transform: translateY(-1px);
  opacity: 1;
}

body.template-cart .cart-quantity .quantity__button[name="minus"]:not([disabled]):hover::before,
body.template-cart .cart-quantity .quantity__button[name="plus"]:not([disabled]):hover::before {
  transform: scale(1);
}

body.template-cart .cart-quantity .quantity__button[name="plus"]:not([disabled]):hover .svg-wrapper {
  transform: rotate(90deg);
}

body.template-cart .cart-quantity .quantity__button[name="minus"]:not([disabled]):active,
body.template-cart .cart-quantity .quantity__button[name="plus"]:not([disabled]):active {
  transform: translateY(0) scale(0.94);
}

body.template-cart cart-remove-button {
  margin: 0;
}

body.template-cart cart-remove-button .button {
  min-width: 38px;
  min-height: 38px;
  border: 1px solid #47403F;
  border-radius: 50%;
  color: #47403F;
  transition:
    background-color 0.35s cubic-bezier(0.45, 0, 0.15, 1),
    border-color 0.35s cubic-bezier(0.45, 0, 0.15, 1),
    color 0.35s cubic-bezier(0.45, 0, 0.15, 1);
}

body.template-cart cart-remove-button .button:not([disabled]):hover {
  background-color: #47403F;
  border-color: #47403F;
  color: #ffffff;
  opacity: 1;
}

body.template-cart cart-remove-button .icon-remove {
  width: 13px;
  height: 13px;
  stroke-width: 1.6;
}

body.template-cart .cart-item__totals {
  width: 15%;
  padding: 34px 18px;
  vertical-align: middle;
}

body.template-cart .cart__footer {
  display: block;
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 26px;
}

body.template-cart .cart__footer > div:only-child,
body.template-cart .cart__blocks,
body.template-cart .cart__footer > * {
  width: 100%;
  margin-left: 0;
}

body.template-cart .cart__blocks > * + * {
  margin-top: 34px;
}

body.template-cart .totals {
  justify-content: flex-end;
  align-items: baseline;
  gap: 24px;
}

body.template-cart .totals__total,
body.template-cart .totals__total-value {
  margin: 0;
  color: var(--kgy-color-text);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: var(--kgy-letter-spacing-md);
}

body.template-cart .totals__total-value {
  font-size: 24px;
}

body.template-cart .tax-note {
  max-width: 520px;
  margin: 28px 0 0 auto;
  color: var(--kgy-color-text);
  font-size: 13px;
  line-height: 1.8;
  text-align: right;
  letter-spacing: var(--kgy-letter-spacing-md);
}

body.template-cart .kgy-cart-bag {
  position: relative;
  display: grid;
  grid-template-columns: 170px 1fr auto;
  align-items: center;
  gap: 30px;
  min-height: 132px;
  padding: 14px 28px 14px 14px;
  background: #fff;
  color: var(--kgy-color-text);
  border: 1px solid #ececec;
  overflow: hidden;
  transition:
    border-color 0.5s cubic-bezier(0.45, 0, 0.15, 1),
    box-shadow 0.5s cubic-bezier(0.45, 0, 0.15, 1),
    transform 0.5s cubic-bezier(0.45, 0, 0.15, 1);
}

body.template-cart .kgy-cart-bag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--kgy-color-text);
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 0.55s cubic-bezier(0.45, 0, 0.15, 1);
}

body.template-cart a.kgy-cart-bag {
  text-decoration: none;
}

body.template-cart .kgy-cart-bag:hover {
  border-color: #d8d8d8;
  box-shadow: 0 10px 28px -18px rgba(0, 0, 0, 0.35);
  transform: translateY(-2px);
  opacity: 1;
}

body.template-cart .kgy-cart-bag:hover::before {
  transform: scaleY(1);
  transform-origin: bottom center;
}

body.template-cart .kgy-cart-bag__media {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 104px;
  background: #f5f5f5;
  overflow: hidden;
}

body.template-cart .kgy-cart-bag__image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.7s cubic-bezier(0.45, 0, 0.15, 1);
}

body.template-cart .kgy-cart-bag:hover .kgy-cart-bag__image {
  transform: scale(1.06);
}

body.template-cart .kgy-cart-bag__body {
  display: grid;
  gap: 12px;
}

body.template-cart .kgy-cart-bag__title {
  font-size: 16px;
  letter-spacing: var(--kgy-letter-spacing-md);
}

body.template-cart .kgy-cart-bag__text {
  font-size: 13px;
  line-height: 1.8;
  letter-spacing: var(--kgy-letter-spacing-md);
}

body.template-cart .kgy-cart-bag__arrow {
  font-size: 38px;
  line-height: 1;
  color: var(--kgy-color-border-lt);
  transition:
    transform 0.5s cubic-bezier(0.45, 0, 0.15, 1),
    color 0.4s cubic-bezier(0.45, 0, 0.15, 1);
}

body.template-cart .kgy-cart-bag:hover .kgy-cart-bag__arrow {
  transform: translateX(8px);
  color: var(--kgy-color-red);
}

body.template-cart .cart__ctas {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 110px;
  margin-top: 42px;
}

body.template-cart .kgy-cart__continue,
body.template-cart .cart__checkout-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  box-sizing: border-box;
  width: 100%;
  height: 72px;
  max-width: none;
  min-height: 72px;
  margin: 0;
  padding: 0 2.4rem;
  border: 1px solid transparent;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
  font-family: var(--kgy-font-mincho);
  font-size: 18px;
  line-height: 1;
  letter-spacing: var(--kgy-letter-spacing-xl);
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
  transition:
    color 0.5s cubic-bezier(0.45, 0, 0.15, 1),
    border-color 0.5s cubic-bezier(0.45, 0, 0.15, 1),
    box-shadow 0.5s cubic-bezier(0.45, 0, 0.15, 1);
}

body.template-cart .kgy-cart__continue::before,
body.template-cart .cart__checkout-button::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: translateY(100%);
  transition: transform 0.55s cubic-bezier(0.45, 0, 0.15, 1);
}

body.template-cart .kgy-cart__continue > span,
body.template-cart .cart__checkout-button > span {
  position: relative;
  z-index: 1;
  transition: transform 0.5s cubic-bezier(0.45, 0, 0.15, 1);
}

body.template-cart .kgy-cart__continue > span[aria-hidden],
body.template-cart .cart__checkout-button > span[aria-hidden] {
  display: inline-block;
}

body.template-cart .kgy-cart__continue {
  border-color: #c8c0bd;
  background: #fff;
  color: #47403F;
}

body.template-cart .kgy-cart__continue::before {
  background: #1f1a19;
}

body.template-cart .cart__checkout-button {
  background: #47403F;
  color: #fff !important;
  border-color: #47403F;
  box-shadow: 0 6px 16px -10px rgba(71, 64, 63, 0.45);
}

body.template-cart .cart__checkout-button::before {
  background: #8a7544;
}

body.template-cart .kgy-cart__continue:hover,
body.template-cart .cart__checkout-button:hover {
  opacity: 1;
  box-shadow: 0 14px 28px -16px rgba(31, 26, 25, 0.4);
}

body.template-cart .kgy-cart__continue:hover {
  border-color: #1f1a19;
  color: #ffffff;
}

body.template-cart .cart__checkout-button:hover {
  border-color: #8a7544;
  color: #ffffff !important;
  box-shadow: 0 14px 28px -16px rgba(138, 117, 68, 0.55);
}

body.template-cart .kgy-cart__continue:hover::before,
body.template-cart .cart__checkout-button:hover::before {
  transform: translateY(0);
}

body.template-cart .kgy-cart__continue:hover > span[aria-hidden],
body.template-cart .cart__checkout-button:hover > span[aria-hidden] {
  transform: translateX(8px);
}

body.template-cart .cart__checkout-button:focus,
body.template-cart .cart__checkout-button:focus-visible {
  box-shadow: 0 14px 28px -16px rgba(71, 64, 63, 0.45);
  outline: none;
}

body.template-cart .cart__checkout-button[disabled] {
  background: #c8c8c8;
  border-color: #c8c8c8;
  box-shadow: none;
  cursor: not-allowed;
}

body.template-cart .cart__checkout-button[disabled]::before {
  display: none;
}

body.template-cart .cart__checkout-button::after {
  display: none;
}

@media screen and (max-width: 989px) {
  body.template-cart cart-items .page-width,
  body.template-cart #main-cart-footer .page-width {
    padding-left: 20px;
    padding-right: 20px;
  }

  body.template-cart .kgy-cart__header {
    margin: 48px 0 54px;
  }

  body.template-cart .kgy-cart__lead {
    margin-bottom: 28px;
    font-size: 13px;
  }

  body.template-cart .cart__ctas {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  body.template-cart .kgy-cart-bag {
    grid-template-columns: 110px 1fr auto;
    gap: 16px;
    padding: 12px 16px 12px 12px;
  }

  body.template-cart .kgy-cart-bag__media {
    height: 86px;
  }
}

@media screen and (max-width: 749px) {
  body.template-cart .kgy-cart__header {
    margin: 28px 0 24px;
  }

  body.template-cart .kgy-cart__header .title {
    font-size: 17px;
  }

  body.template-cart .kgy-cart__lead {
    margin-bottom: 22px;
    font-size: 12px;
    line-height: 2.1;
    text-align: left;
  }

  body.template-cart .cart-items {
    table-layout: auto;
  }

  body.template-cart .cart-items thead tr {
    display: block;
    margin-bottom: 12px;
    border-bottom: 0;
  }

  body.template-cart .cart-items thead th {
    display: none;
  }

  body.template-cart .cart-items thead th:first-child {
    display: block;
    padding: 0;
    font-size: 13px;
    text-transform: none;
  }

  body.template-cart .cart-item {
    position: relative;
    grid-template: auto auto auto / 96px minmax(0, 1fr);
    column-gap: 16px;
    row-gap: 8px;
    margin-bottom: 0;
    padding: 18px 0 22px;
    border-bottom: 1px solid var(--kgy-color-border-lt);
  }

  body.template-cart .cart-item__media {
    grid-column: 1;
    grid-row: 1 / 4;
    width: 96px;
    padding: 0;
  }

  body.template-cart .cart-item__image-container {
    width: 96px;
    min-height: 96px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.72);
  }

  body.template-cart .cart-item__image {
    max-width: 80px;
    max-height: 80px;
    object-fit: contain;
  }

  body.template-cart .cart-item__details {
    grid-column: 2;
    grid-row: 1;
    width: auto;
    min-height: 96px;
    padding: 0 36px 0 0;
  }

  body.template-cart .cart-item__details > * {
    max-width: none;
  }

  body.template-cart .cart-item__name {
    max-width: none;
    font-size: 14px;
    line-height: 1.75;
    letter-spacing: 0.12em;
    word-break: break-word;
  }

  body.template-cart .product-option,
  body.template-cart .price {
    font-size: 12px;
    line-height: 1.7;
  }

  body.template-cart .cart-item__unit-price--details {
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
    margin-top: 10px;
  }

  body.template-cart .cart-item__unit-price--details::before,
  body.template-cart .cart-item__quantity quantity-popover::before,
  body.template-cart .cart-item__totals::before {
    display: inline-block;
    margin-bottom: 2px;
    color: var(--kgy-color-text);
    font-family: var(--kgy-font-mincho);
    font-size: 12px;
    line-height: 1.7;
    letter-spacing: var(--kgy-letter-spacing-md);
  }

  body.template-cart .cart-item__unit-price--details::before {
    content: "価格";
  }

  body.template-cart .cart-item__quantity quantity-popover::before {
    content: "数量";
  }

  body.template-cart .cart-item__totals::before {
    content: "小計";
  }

  body.template-cart .cart-item__quantity {
    grid-column: 2;
    grid-row: 2;
    width: auto;
    padding: 4px 0 0;
    text-align: left;
    border-top: 0;
    border-left: 0;
  }

  body.template-cart .cart-item__quantity quantity-popover {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    width: 100%;
  }

  body.template-cart .cart-item__quantity-wrapper {
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    margin-left: auto;
  }

  body.template-cart .cart-item__quantity quantity-popover::before {
    flex: 0 0 auto;
    white-space: nowrap;
    word-break: keep-all;
  }

  body.template-cart .cart-quantity .quantity__input {
    width: 20px;
    height: 32px;
    font-size: 13px;
    text-align: center;
  }

  body.template-cart .cart-quantity .quantity__button {
    width: 32px;
    height: 32px;
  }

  body.template-cart .cart-quantity .quantity__button[name="minus"],
  body.template-cart .cart-quantity .quantity__button[name="plus"] {
    background: rgba(255, 255, 255, 0.28);
  }

  body.template-cart .cart-quantity .quantity__button[name="plus"] {
    margin-left: 4px;
  }

  body.template-cart .cart-quantity .quantity__button[name="minus"] {
    margin-right: 4px;
  }

  body.template-cart .cart-item__details cart-remove-button {
    top: 0;
    right: 0;
    transform: none;
  }

  body.template-cart cart-remove-button .button {
    min-width: 32px;
    min-height: 32px;
    border: 1px solid var(--kgy-color-border-lt);
    border-radius: 50%;
    background: transparent;
  }

  body.template-cart cart-remove-button .icon-remove {
    width: 10px;
    height: 10px;
  }

  body.template-cart .cart-item__totals {
    grid-column: 2;
    grid-row: 3;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-self: end;
    padding: 10px 0 0;
    text-align: right;
    border-top: 1px solid rgba(112, 112, 112, 0.28);
    border-left: 0;
  }

  body.template-cart .cart-item__totals .cart-item__price-wrapper {
    display: block;
  }

  body.template-cart .cart-item__totals::before {
    margin: 0 14px 0 0;
  }

  body.template-cart .cart__footer {
    padding-top: 22px;
  }

  body.template-cart .totals {
    gap: 18px;
  }

  body.template-cart .totals__total {
    font-size: 13px;
  }

  body.template-cart .totals__total-value {
    font-size: 19px;
  }

  body.template-cart .tax-note {
    display: none;
  }

  body.template-cart .kgy-cart-bag {
    min-height: 114px;
    margin-top: 28px;
    padding: 6px 14px 6px 6px;
    grid-template-columns: 128px minmax(0, 1fr) auto;
    gap: 12px;
  }

  body.template-cart .kgy-cart-bag__media {
    height: 102px;
  }

  body.template-cart .kgy-cart-bag__title {
    font-size: 12px;
  }

  body.template-cart .kgy-cart-bag__text {
    font-size: 10px;
    line-height: 1.7;
  }

  body.template-cart .kgy-cart-bag__arrow {
    display: block;
    font-size: 28px;
  }

  body.template-cart .cart__blocks > * + * {
    margin-top: 24px;
  }

  body.template-cart .cart__ctas {
    margin-top: 22px;
    gap: 12px;
  }

  body.template-cart .kgy-cart__continue,
  body.template-cart .cart__checkout-button {
    height: 40px;
    min-height: 40px;
    gap: 0;
    padding: 0 1.6rem;
    font-size: 12px;
  }
}

/* ============================================================
   フォーム
   ============================================================ */
.field__input,
.select__select,
.customer .field input {
  font-family: var(--kgy-font-mincho);
  border-radius: 0;
  letter-spacing: var(--kgy-letter-spacing-sm);
}

/* ============================================================
   フッター
   ============================================================ */
.footer {
  background-color: var(--kgy-color-bg);
  border-top: 1px solid var(--kgy-color-border);
}

.footer__content-top,
.footer__menu-item,
.footer-block__heading {
  font-family: var(--kgy-font-mincho);
  letter-spacing: var(--kgy-letter-spacing-md);
}

.footer__copyright {
  font-family: var(--kgy-font-mincho);
  letter-spacing: var(--kgy-letter-spacing-sm);
  color: var(--kgy-color-text-sub);
  font-size: 1rem;
}

/* ============================================================
   マルチカラム・リッチテキスト
   ============================================================ */
.multicolumn-card__title,
.rich-text__heading {
  font-family: var(--kgy-font-mincho);
  letter-spacing: var(--kgy-letter-spacing-xl);
  font-weight: 500;
}

.multicolumn-card .rte,
.rich-text__text {
  font-family: var(--kgy-font-mincho);
  letter-spacing: var(--kgy-letter-spacing-md);
  line-height: 2.2;
}

.multicolumn-card .link {
  font-family: var(--kgy-font-mincho);
  letter-spacing: var(--kgy-letter-spacing-md);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  text-decoration: none;
}

/* ============================================================
   2016 / 1594 ラインカラー
   ============================================================ */
.kgy-line-2016 {
  background-color: var(--kgy-color-2016-bg);
  color: var(--kgy-color-2016-text);
}

.kgy-line-1594 {
  background-color: var(--kgy-color-1594-bg);
  color: var(--kgy-color-1594-text);
}

.kgy-line-1594 a {
  color: var(--kgy-color-1594-text);
}

/* ============================================================
   角丸をすべてなしに
   ============================================================ */
.card,
.card-wrapper,
.button,
.button--primary,
.field__input,
.select__select {
  border-radius: 0 !important;
}


/* ============================================================
   ページコンテンツ共通（プライバシーポリシー・特定商取引法等）
   ============================================================ */

.kgy-page-intro {
  text-align: center;
  margin: 60px auto;
}


.main-page-title {
  text-align: center;
  font-size: 2rem;
  font-weight: normal;
  letter-spacing: 0.2em;
  margin-bottom: 60px;
}

body.template-page.page-default,
body.template-search {
  background-color: #e2e3e3;
  color: #3e3a39;
  font-family: var(--kgy-font-mincho);
}

body.template-page.page-default .header-wrapper,
body.template-page.page-default .header,
body.template-search .header-wrapper,
body.template-search .header {
  background-color: #e2e3e3;
}

body.template-page.page-default .main-page-title,
body.template-page.page-default .rte,
body.template-page.page-default .rte p,
body.template-page.page-default .rte li,
body.template-page.page-default .rte td,
body.template-page.page-default .rte th {
  font-family: var(--kgy-font-mincho);
  color: #3e3a39;
}

body.template-page.page-default .main-page-title {
  font-size: 3rem;
  letter-spacing: 0.18em;
  font-weight: 500;
}

body.template-404 {
  background-color: #e2e3e3;
  color: #3e3a39;
  font-family: var(--kgy-font-mincho);
}

body.template-404 .header-wrapper,
body.template-404 .header {
  background-color: #e2e3e3;
}

.kgy-404 {
  color: #3e3a39;
}

.kgy-404__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: 48px;
  align-items: center;
}

.kgy-404__lead {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.2rem 0;
}

.kgy-404__eyebrow {
  margin: 0 0 1.8rem;
  font-size: 1.2rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #6d6866;
}

.kgy-404__title {
  margin: 0 0 2.2rem;
  font-size: clamp(2.8rem, 3.6vw, 5rem);
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.35;
}

.kgy-404__text {
  margin: 0 0 2.8rem;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  line-height: 2.05;
  color: #4f4947;
}

.kgy-404__visual {
  position: relative;
  min-height: 46rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.kgy-404__logo-wrap {
  margin: 0 0 2rem;
}

.kgy-404__logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.kgy-404__logo {
  width: 7.6rem;
  height: auto;
}

.kgy-404__logo-text {
  font-size: 1.8rem;
  letter-spacing: 0.18em;
}

.kgy-404__code {
  position: relative;
  z-index: 2;
  font-size: clamp(10.5rem, 21vw, 24rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: rgba(62, 58, 57, 0.1);
  text-align: center;
  user-select: none;
}

.kgy-404__mobile-code {
  display: none;
}
.kgy-404__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  align-items: center;
}

.kgy-404__button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 4.8rem;
  min-width: 19rem;
  padding: 1.1rem 2.1rem;
  border: 1px solid #6f6864;
  background: transparent;
  color: #3e3a39;
  text-decoration: none;
  letter-spacing: 0.14em;
  transition: background-color 0.3s ease, color 0.3s ease, opacity 0.3s ease;
}

.kgy-404__button:hover {
  opacity: 1;
  background: #6f6864;
  color: #fff;
}

.kgy-404__button--primary {
  background: #6f6864;
  color: #fff;
}

.kgy-404__button--primary:hover {
  background: #595350;
}

.kgy-404__text-link {
  margin-left: 0.6rem;
  color: #4f4947;
  text-decoration: none;
  letter-spacing: 0.1em;
}

.kgy-404__text-link:hover {
  opacity: 0.75;
}

@media (max-width: 989px) {
  .kgy-404__inner {
    grid-template-columns: 1fr;
    gap: 2.8rem;
  }

  .kgy-404__lead {
    padding: 1.6rem 0 0;
    text-align: center;
  }

  .kgy-404__visual {
    display: none;
  }

  .kgy-404__logo-wrap,
  .kgy-404__actions {
    text-align: center;
    justify-content: center;
  }

  .kgy-404__text-link {
    width: 100%;
    margin-left: 0;
  }

  .kgy-404__code {
    font-size: clamp(10rem, 34vw, 16rem);
  }
  .kgy-404__mobile-code {
    display: block;
    margin: 0 0 1.2rem;
    font-size: clamp(5.6rem, 18vw, 7.2rem);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: 0.02em;
    color: rgba(62, 58, 57, 0.16);
    text-align: center;
    user-select: none;
  }
}

.rte p {
  line-height: 2.2;
  letter-spacing: 0.05em;
  margin-bottom: 1.4em;
}

.rte h2 {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-top: 60px;
  margin-bottom: 20px;
}

.rte ul {
  padding-left: 1.5em;
  margin-bottom: 1.4em;
}

.rte li {
  line-height: 2.2;
  letter-spacing: 0.05em;
}

/* ============================================================
   サイトマップページ (.kgy-sitemap)
   ============================================================ */
.kgy-sitemap {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 20px 80px;
  color: #333;
}

.kgy-sitemap h1 {
  text-align: center;
  font-size: 18px;
  font-weight: normal;
  letter-spacing: 0.2em;
  margin: 0 0 60px;
}

.kgy-sitemap ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.kgy-sitemap>ul>li {
  border-bottom: 1px solid rgba(51, 51, 51, 0.35);
}

.kgy-sitemap>ul>li>a,
.kgy-sitemap>ul>li>span.label {
  display: block;
  padding: 18px 10px;
  font-size: 13px;
  text-decoration: none;
  color: #333;
  letter-spacing: 0.1em;
}

.kgy-sitemap>ul>li>a:hover {
  opacity: 0.6;
}

.kgy-sitemap .sub {
  padding: 0 10px 20px;
}

.kgy-sitemap .sub>li {
  border-bottom: 1px solid rgba(51, 51, 51, 0.2);
}

.kgy-sitemap .sub>li:last-child {
  border-bottom: none;
}

.kgy-sitemap .sub>li>a,
.kgy-sitemap .sub>li>span.label {
  display: block;
  padding: 14px 20px;
  font-size: 13px;
  text-decoration: none;
  color: #333;
  letter-spacing: 0.08em;
}

.kgy-sitemap .sub>li>a:hover {
  opacity: 0.6;
}

.kgy-sitemap .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
  padding: 0 40px 20px;
}

.kgy-sitemap .grid a {
  display: block;
  padding: 12px 10px;
  font-size: 13px;
  text-decoration: none;
  color: #333;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(51, 51, 51, 0.2);
}

.kgy-sitemap .grid a:hover {
  opacity: 0.6;
}

.kgy-sitemap .ext::after,
.kgy-sitemap > ul > li:nth-last-child(-n+3) > a::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 10px;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23333333' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 2 H14 V7'/%3E%3Cpath d='M14 2 L8 8'/%3E%3Cpath d='M12 9 V13 H3 V4 H7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  vertical-align: middle;
  border: 0;
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.kgy-sitemap .ext:hover::after,
.kgy-sitemap > ul > li:nth-last-child(-n+3) > a:hover::after {
  opacity: 1;
  transform: translate(2px, -2px);
}

/* サイトマップページ: テーマ本文に書かれた重複の「サイトマップ」見出しを非表示 */
body.template-page:has(.kgy-sitemap) .rte > h2,
body.template-page:has(.kgy-sitemap) .rte > h3 {
  display: none;
}


@media (max-width: 600px) {
  .kgy-sitemap .grid {
    grid-template-columns: 1fr;
    padding: 0 20px 20px;
  }
}

/* ============================================================
   特定商取引法・法律ページ テーブル (.kgy-legal-table)
   ============================================================ */
.kgy-legal-table {
  width: 100%;
  border-collapse: collapse;
}

.kgy-legal-table th {
  text-align: left;
  padding: 12px;
  border-bottom: 1px solid #ddd;
  width: 30%;
  vertical-align: top;
}

.kgy-legal-table td {
  padding: 12px;
  border-bottom: 1px solid #ddd;
}

/* ============================================================
   お買い物ガイドページ (.kgy-guide)
   ============================================================ */
.page-width.page-width--narrow:has(.kgy-guide) {
  max-width: 170rem;
  padding-left: 0;
  padding-right: 0;
}


.kgy-guide {
  color: #3e3a39;
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  line-height: 2;
  background: #e2e3e3;
}

.kgy-guide * {
  box-sizing: border-box;
}

.kgy-guide a {
  color: #3e3a39;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.kgy-guide a:hover {
  opacity: 0.72;
}

.page-guide h1 {
  color: #3e3a39 !important;
}

.kgy-guide__inner {
  max-width: 1680px;
  margin: 0 auto;
  padding: 36px 48px 84px;
}

.kgy-guide__title {
  margin: 0 0 42px;
  text-align: center;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.18em;
}

.kgy-guide__layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 112px;
  align-items: start;
}

.kgy-guide__nav {
  position: sticky;
  top: 100px;
  align-self: start;
  z-index: 1;
}

.kgy-guide__nav-title {
  margin: 0 0 18px;
  font-size: 15px;
  letter-spacing: 0.2em;
  color: #6d6866;
}

.kgy-guide__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #bfb8b2;
}

.kgy-guide__nav li {
  border-bottom: 1px solid #d9d2cd;
}

.kgy-guide__nav a {
  display: block;
  padding: 14px 4px;
  font-size: 17px;
  line-height: 1.8;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.kgy-guide__body section+section {
  margin-top: 88px;
}

.kgy-guide__body {
  min-width: 0;
}

.kgy-guide__body section[id] {
  scroll-margin-top: 14rem;
}

.kgy-guide__body>section:first-child .kgy-guide__section-title {
  margin-top: 0;
}

.rte .kgy-guide__section-title,
.kgy-guide__section-title {
  margin: 0 0 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid #7d7671;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.45;
}

.rte .kgy-guide__subhead,
.kgy-guide__subhead {
  margin: 90px 0 18px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.55;
}

.kgy-guide__subhead__first {
  margin: 12px 0 18px !important;
}


.kgy-guide p,
.kgy-guide li,
.kgy-guide td,
.kgy-guide th {
  font-size: 16px;
  letter-spacing: 0.03em;
}

.kgy-guide p {
  margin: 0 0 1.2em;
}

.kgy-guide ul,
.kgy-guide ol {
  margin: 0 0 1.25em;
  padding-left: 1.4em;
}

.kgy-guide ol {
  padding-left: 1.7em;
}

.kgy-guide__notice {
  margin: 20px 0 24px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.kgy-guide__notice p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}


.kgy-guide__notice p:last-child,
.kgy-guide__faq-answer p:last-child {
  margin-bottom: 0;
}

.kgy-guide__contact-table,
.kgy-guide__shipping-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 22px;
}

.kgy-guide__contact-table th,
.kgy-guide__contact-table td,
.kgy-guide__shipping-table th,
.kgy-guide__shipping-table td {
  padding: 13px 14px;
  border-bottom: 1px solid #d9d2cd;
  vertical-align: top;
  text-align: left;
}

.kgy-guide__contact-table th {
  width: 28%;
  font-weight: 500;
  color: #6a625d;
}

.kgy-guide__shipping-table th {
  width: 74%;
  font-weight: 500;
  color: #6a625d;
}

.kgy-guide__step {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: guide-step;
}

.kgy-guide__step li {
  position: relative;
  margin: 0 0 18px;
  padding: 22px 24px 22px 70px;
  background: rgba(251, 249, 246, 0.82);
  border: 1px solid rgba(110, 104, 98, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.kgy-guide__step li::before {
  counter-increment: guide-step;
  content: counter(guide-step);
  position: absolute;
  top: 26px;
  left: 18px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #7a726d;
  color: #fff;
  text-align: center;
  line-height: 30px;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.kgy-guide__step-title {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.kgy-guide__badge {
  display: inline-block;
  min-width: 140px;
  margin: 16px 0 18px;
  padding: 10px 18px;
  background: #6f6864;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-align: center;
}

.kgy-guide__member-title {
  margin-top: 54px;
}

.kgy-guide__button {
  display: inline-block;
  width: min(70%, 50rem);
  padding: 2rem 4rem;
  border: 1px solid #595757;
  background: #595757;
  color: #fff;
  text-decoration: none;
  text-align: center;
  letter-spacing: 0.12em;
  line-height: 1.6;
}

.kgy-guide a.kgy-guide__button,
.kgy-guide a.kgy-guide__button:visited,
.kgy-guide a.kgy-guide__button:hover,
.kgy-guide a.kgy-guide__button:active {
  color: #fff;
  text-decoration: none;
}

.kgy-guide__button:hover {
  opacity: 1;
  background: #5d5753;
  color: #fff;
  text-decoration: none;
}

.kgy-guide__flow {
  display: grid;
  gap: 18px;
  margin: 16px 0 24px;
}

.kgy-guide__flow-item {
  padding: 20px 22px;
  border: 1px solid rgba(110, 104, 98, 0.14);
  background: rgba(252, 250, 247, 0.76);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.kgy-guide__flow-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.kgy-guide__example-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 16px 0 22px;
}

.kgy-guide__image-block {
  margin: 30px 0 40px;
}

.kgy-guide__image-block--compact {
  margin-top: 16px;
  margin-bottom: 24px;
}

.kgy-guide__image-block--wide {
  margin-top: 24px;
  margin-bottom: 42px;
}

.kgy-guide__image-block--payment {
  margin-top: 12px;
  margin-bottom: 16px;
}

.kgy-guide__image {
  display: block;
  width: min(100%, 640px);
  height: auto;
}

.kgy-guide__image--packaging {
  width: min(100%, 280px);
}

.kgy-guide__image--noshi {
  width: min(100%, 500px);
}

.kgy-guide__image--mizuhiki {
  width: min(100%, 1020px);
}

.kgy-guide__image--packaging-detail {
  width: min(100%, 560px);
}

.kgy-guide__image--payment {
  width: min(100%, 760px);
}

.kgy-guide__image--credit {
  width: min(100%, 540px);
}

.kgy-guide__payment-grid {
  display: block;
  margin: 18px 0 24px;
}

.kgy-guide__payment-card {
  padding: 0;
  border: 0;
  background: transparent;
  margin-bottom: 48px;
}

.kgy-guide__payment-card h3 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.kgy-guide__faq-group+.kgy-guide__faq-group {
  margin-top: 52px;
}

.kgy-guide__faq-group h3 {
  margin: 0 0 18px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding-bottom: 0;
  border-bottom: 0;
}

.kgy-guide__faq-group h3::before {
  content: "■ ";
}

.kgy-guide__faq-item {
  padding: 10px 0 12px;
  border-top: 0;
}

.kgy-guide__faq-q,
.kgy-guide__faq-a {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.kgy-guide__faq-mark {
  font-size: 16px;
  line-height: 1.6;
}

.kgy-guide__faq-mark--q {
  color: #3e3a39;
  margin-top: 4px;
}

.kgy-guide__faq-mark--a {
  color: #b53b34;
  margin-top: 4px;
}

.kgy-guide__small {
  font-size: 12px;
  color: #6d6866;
}

.rte img {
  height: auto;
  max-width: 520px;
}

@media (max-width: 989px) {
  .page-width.page-width--narrow:has(.kgy-guide) {
    max-width: none;
  }

  .kgy-guide__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .kgy-guide__nav {
    position: static;
  }

  .kgy-guide__nav ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 0;
    gap: 10px;
  }

  .kgy-guide__nav li {
    border: 1px solid #d9d2cd;
  }

  .kgy-guide__nav a {
    padding: 12px 14px;
  }
}

@media (max-width: 767px) {
  .kgy-guide__inner {
    padding: 12px 16px 64px;
  }

  body.template-page.page-default .main-page-title {
    font-size: 20px;
    margin-top: 10px;
  }

.rte .kgy-guide__subhead, .kgy-guide__subhead {
    margin: 68px 0 18px;
}

  .kgy-guide__nav a {
    background-color: #fff;
    font-size: 14px;
  }

  .kgy-guide__title {
    margin-bottom: 28px;
    font-size: 24px;
    letter-spacing: 0.12em;
  }

.kgy-guide p {
    margin: 0 0 0.2em 10px; 
}

.kgy-guide__nav br{
display: none;
}

.kgy-guide ul, .kgy-guide ol {
    padding-left: .4em;
    padding-right: .4em;
}

  .kgy-guide__section-title {
    font-size: 20px;
  }

  .kgy-guide__body section+section {
    margin-top: 64px;
  }

  .kgy-guide__subhead {
    margin-top: 34px;
    font-size: 17px;
  }

.kgy-guide__step li {
    font-size: 14px;
}

.kgy-guide__step li::before {
    top: 20px;
}

.kgy-guide__flow-item strong {
    font-size: 13px;
}

.kgy-guide__flow-item{
  font-size: 12px;
}

  .kgy-guide__button {
    width: 100%;
  }

  .kgy-guide__nav ul,
  .kgy-guide__example-grid {
    grid-template-columns: 1fr;
  }

  .kgy-guide__contact-table th,
  .kgy-guide__contact-table td,
  .kgy-guide__shipping-table th,
  .kgy-guide__shipping-table td {
    display: block;
    width: 100%;
    padding: 10px 0;
  }

  .kgy-guide__contact-table th,
  .kgy-guide__shipping-table th {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .kgy-guide__contact-table td,
  .kgy-guide__shipping-table td {
    padding-top: 6px;
  }

  .kgy-guide__step li {
    padding: 16px 16px 16px 56px;
  }
}

/* カート（スマホ）：「商品情報」をタイトルらしく大きく＋装飾 */
@media screen and (max-width: 749px) {
  .cart-items th.kgy-cart__products-heading {
    font-size: 1.7rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    color: #3e3a39;
    text-transform: none;
    padding-bottom: 1.4rem;
    border-bottom: 1px solid rgba(62, 58, 57, 0.25);
  }

  .cart-items th.kgy-cart__products-heading::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 1px;
    margin-right: 10px;
    vertical-align: middle;
    background: #3e3a39;
  }
}
