@charset "UTF-8";

body {
  container-name: body;
  container-type: inline-size;
}

@-moz-document url-prefix() {
  body {
    container-type: normal;
  }
}
_::-webkit-full-page-media, _:future, :root body {
  container-type: unset;
}

/*---- トピック ----*/
.block-top-topic {
  border-top: 1px #00000028 solid;
  width: var(--wrapperW);
  margin: 50px auto 100px auto;
  padding-top: 60px;
}

.block-top-topic--header {
  font-size: 2.2rem;
  text-align: center;
  line-height: 1.2;
  border-top: none;
  padding: inherit;

  span {
    display: block;
    font-size: 1.3rem;
    line-height: 1.4;
    letter-spacing: 0;
  }
}

/*---- 最近見た商品 ----*/
.block-recent-item--keep-history {
  text-align: right;

  a {
    font-size: 1.4rem;
    padding-left: 30px;
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: var(--cl-a, #433d37);

    &::before,
    &::after {
      content: "";
      display: block;
      position: absolute;
      width: 15px;
      height: 1px;
      top: 10px;
      left: 5px;
      background: var(--cl-a, #433d37);
      transition: 0.3s;
    }

    &::before {
      transform: rotate(45deg);
    }

    &::after {
      transform: rotate(-45deg);
    }

    &:hover {
      &::before,
      &::after {
        transform: rotate(0deg);
      }
    }
  }
}

.block-recent-item--empty-message {
  text-align: center;
}

/*---- 商品詳細画面 ----*/
.block-goods-detail--promotion-freespace {
  margin-bottom: 10px;
}

.pane-goods-left-side {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;

  /*---- 商品画像 ----*/
  .block-src-l {
    display: flex;
    justify-content: flex-end;
    overflow: hidden;

    figure {
      text-align: center;
      height: 598px;
      aspect-ratio: 1 / 1;
      overflow: hidden;

      img {
        max-width: 100%;
        min-height: 500px;
        aspect-ratio: 1 / 1;
        width: unset;
        height: unset;
        vertical-align: bottom;
        object-fit: contain;
      }
    }
  }

  /*---- 商品情報 ----*/
  .block-goods-comment1 {
    margin-top: 36px;

    .kyacchi {
      margin: 0;
      font-size: 2rem;
      font-weight: 600;
      font-feature-settings: normal;
      font-family: var(--ff-serif);
    }
    h2 *,h3 *,
    h2,h3 {
      margin: 1.25em 0 0 0;
      font-family: var(--ff-sans_serif);
      font-weight: 600;
      font-style: normal;
      font-size: 1.5rem;

      &.midashi *,
      &.midashi {
        font-size: 1.6rem;
      }
    }

    p {
      margin: 1.5em 0 0 0;
    }

    a.katarogu {
      margin: 1em 0;
      height: 80px;
      width: 340px;
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      border: 6px #ffffff double;
      border-radius: 8px;
      color: #ffffff !important;
      text-decoration: none;
      line-height: 1.4;
      letter-spacing: 0.05em;
      font-size: 1.8rem;
      background: #8476a2;

      &:hover {
        opacity: 90%;
      }

      div:has(> &) {
        display: flex;
        gap: 12px;
      }

      span {
        font-size: 1.3rem;
      }

      &::after {
        content: "";
        display: block;
        aspect-ratio: 1 / 1;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 12px;
        background-color: #ffffff;
        transition: 0.15s;
      }

      & + span {
        justify-content: center;
      }
    }

    div.kakakumeisai {
      padding-bottom: 2rem;
      margin-bottom: 2rem;
      border-bottom: 1px dotted #cccccc;

      h2, table { width: 180px; }

      h2 {
        text-align: center;
      }

      table {
        th {
          display: flex;
          justify-content: space-between;
          width: 110px;
          white-space: nowrap;

          &::after {
            content: "：";
            padding: 0 0 0 0.5em;
          }
        }

        td {
          text-align: right;
          white-space: nowrap;
        }
      }
    }

    ul.chuuki {
      margin: 1.25em 0 0;
    }
  }

  /*---- キーワードリスト ----*/
  .block-goods-comment2 {
    .block-goods-keywords {
      margin: 1em 0 0;
      width: 600px;
      padding: 16px 0 0;
      display: flex;
      flex-direction: column;
      gap: 4px;

      h2 *, h3 *,
      h2,h3 {
        margin: 0;
        font-family: var(--ff-sans_serif);
        font-weight: 600;
        font-style: normal;
        font-size: 1.5rem;
        flex-shrink: 0;

        &::before {
          content: "【";
        }

        &::after {
          content: "】";
        }
      }

      ul {
        display: flex;
        flex-wrap: wrap;
        gap: 6px 4px;

        li {
          box-sizing: border-box;
          border-radius: 3px;
          overflow: hidden;
          height: 24px;
          line-height: 1;
          background: rgb(255 255 255 /13%);
          border: 1px solid rgb(0 0 0 /13%);

          > * {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
            color: #666666;
            padding: 0 16px;
            font-size: 1.3rem;
          }

          a {
            color: var(--col_Gold, #baa66d);
            transition: 0.3s;

            &:hover {
              text-decoration: underline;
            }
            &::after {
              background-color: var(--col_Gold, #baa66d);
            }
          }
        }
      }
    }
  }
}

.block-add-cart,
.block-custom-order {
  margin: 30px 0 0;
}

.block-no-stock {
  margin: 0;

  .block-no-stock--message {
    border: 0;
    width: 100%;
    display: flex;
    height: 32px;
    align-items: center;
    justify-content: center;
    margin-top: unset;
    font: 600 1.3rem var(--ff-sans_serif);
    color: var(--cl-dn, #d9534f);
    background: #f3c3c3;
    border: 1px solid var(--cl-dn, #d9534f);
  }
}

.block-add-cart .block-add-cart--btn,
.block-custom-order .block-custom-order--btn {
  display: flex;
  vertical-align: top;
  font-size: 1.8rem;
  font-weight: 600;
  height: 56px;
  width: 100%;
  border-radius: 4px;
  justify-content: center;

  small {
    font-size: 1.3rem;
    margin: 0 0 0 8px;
    font-feature-settings: "palt";
  }

  &::before {
    content: "";
    align-self: center;
    display: block;
    height: 28px;
    width: 28px;
    position: relative;
    top: -2px;
    margin: 0 8px;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20id%3D%22uuid-5f0f9bdb-f57a-4945-8779-cadca35b8d0b%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2028%2028%22%3E%3Cpath%20d%3D%22M21.78%2C18.59h-9.63l-3.71-12.59h-4.45%22%20style%3D%22fill%3A%20none%3B%20stroke%3A%20%23ffffff%3B%20stroke-linecap%3A%20round%3B%20stroke-linejoin%3A%20round%3B%20stroke-width%3A%201.5px%3B%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M9.93%2C8.96h14.07l-1.57%2C6.67h-10.93%22%20style%3D%22fill%3A%20none%3B%20stroke%3A%20%23ffffff%3B%20stroke-linecap%3A%20round%3B%20stroke-linejoin%3A%20round%3B%20stroke-width%3A%201.5px%3B%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M15.09%2C21.93c0%2C.62-.5%2C1.12-1.12%2C1.12s-1.12-.5-1.12-1.12.5-1.12%2C1.12-1.12%2C1.12.5%2C1.12%2C1.12M20.34%2C21.93c0%2C.62-.5%2C1.12-1.12%2C1.12s-1.12-.5-1.12-1.12.5-1.12%2C1.12-1.12%2C1.12.5%2C1.12%2C1.12%22%20style%3D%22fill%3A%20%23ffffff%3B%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E");
  }
}

.block-add-cart .block-variation-favorite,
.block-add-cart .block-goods-favorite,
.block-custom-order .block-goods-favorite {
  display: table-cell;
  vertical-align: top;
  width: 64px;
}

.block-variation-favorite .fa-heart::before {
  font-size: 2.0rem;
}

.block-contact-about-goods {
  display: flex;
  flex-wrap: wrap;
  padding-right: 0;
  justify-content: center;

  a {
    background: none;
    padding: 0;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    line-height: 1;
    font-size: 1.4rem;
    color: var(--cl-a, #433d37);
    width: auto;
    gap: 4px;
    min-height: unset;
    transition: 0.3s;

    &:hover {
      text-decoration: underline !important;
    }

    &::before {
      content: "";
      display: block;
      height: 16px;
      width: 16px;
      background: url("/img/sys/icon/black/envelope.png") no-repeat 50% 50% / contain;
    }
  }
}

.block-arrival-notice {
  text-align: center;
}

.block-arrival-notice--btn {
  margin-top: 10px;
  padding: 6px 0;
  font-size: 1.6rem;
  width: 280px;
}

.block-contact-about-goods--btn {
  padding: 10px 0;
  font-size: 1.6rem;
}

.block-variation-add-cart {
  margin-right: 5px;
}

.block-variation-add-cart--btn {
  display: table-cell;
  vertical-align: middle;
  font-size: 1.6rem;
  width: 220px;
  height: 54px;
}

.block-variation-favorite--btn,
.block-goods-favorite--btn {
  display: table-cell;
  vertical-align: middle;
  width: 54px;
  height: 54px;
}

.block-goods-favorite--btn {
  &::before {
    content: "\02665";
    font-size: 2.0rem;
  }
}

.block-variation-no-stock,
.block-goods-variation-arrival-notice {
  margin-right: 5px;
}

.block-variation-no-stock--message,
.block-goods-variation-arrival-notice--btn {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  width: 165px;
  height: 54px;
}

.block-variation-no-stock--message {
  border: 1px solid #ebccd1;
  color: #a94442;
  background-color: #f2dede;

  .block-variation-no-stock & {
    width: 220px;
  }
}

.bx-wrapper {
  width: 600px;
  aspect-ratio: 1 / 1;
  margin-bottom: 5px;
  margin: 0 0 0 auto !important;
  box-shadow: none !important;
  border: 1px solid #00000028 !important;
  background: unset !important;
  overflow: hidden;
}

.block-goods-detail--color-variation-goods-thumbnail-form {
  width: 60px;
  position: absolute;
  top: 0;
  left: 0;
}
.block-goods-gallery {
  ul {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 8px 12px;

    li {
      margin: 0;
      padding: 0;
      position: relative;
      width: 100%;
      transition: 0.15s;
      border: 1px solid #00000028;

      &:has(.active) {
        border: 2px solid var(--col_Gold, #baa66d);
        opacity: 100%;
      }

      a {
        display: block;
        height: 100%;

        figure {
          border: none;
          padding: 0;
          width: 100%;
          height: 100%;
          display: flex;
          justify-content: center;
          align-items: center;

          img {
            opacity: 100%;
            width: 100%;
              aspect-ratio: 1 / 1;

          }
        }
        &:hover,
        &.active {
          opacity: 70%;
        }
      }
    }
  }
}

.block-goods-price--on-sales-comment {
  color: #cc3300;
}

.block-accessory-list {
  width: 100%;
}

.pane-goods-right-side .block-check-list-a--item-body {
  width: auto;
}

/*---- 注文明細拡張 ----*/
.block-goods-sales-detail-append--item {
  display: grid;
  gap: 16px;
  margin: 20px 0 0 0;
  padding: 16px 8px;
  background: color-mix(in srgb, var(--col_paleGray, #f5f5f7) 45%, transparent);

  .form-group {
    margin: 0;

    .form-label {
      display: flex;
      align-items: center;
      margin: 0 0 8px !important;
      border-radius: 4px;
      height: 32px;
      padding: 0 12px;
      background: var(--col_paleGray, #f5f5f7);
    }

    input[type="text"],
    textarea {
      width: 100%;
    }

    .constraint .required {
      margin: -38px 20px 16px 0;
      display: block;
      text-align: right;

      .pane-goods-right-side & {
        margin-top: 14px;
      }
    }

    .help-block {
      margin-top: 6px;
    }
  }
}

/*---- バリエーション切り替えボタン ----*/
.block-variation {
  .block-variation--item-dropdown {
    margin: 20px 0;
  }
}

.block-color--item dt {
  padding: 4px;

  a {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1 / 1;
  }

  figure {
    display: flex;
    overflow: hidden;
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;

    img {
      height: 100%;
      object-fit: cover;
      max-height: unset;
      max-width: unset;

      &[src*="sorry9.png"] {
        object-fit: scale-down;
      }
    }
  }
}

.block-color--item-term figure {
  width: 50px;
  height: 50px;
}

.block-goods-detail .block-goods-detail--color-variation-goods-thumbnail-images .block-goods-detail--color-variation-goods-color-name {
  display: none;
  font-size: 1.2rem;
  text-align: center;
}

#block_of_category {
  margin: 0 auto 100px auto;

  .page-top & {
    width: var(--wrapperW);
    margin: 0 auto 100px auto;
  }
}

.block-common-btn {
  text-align: center;

  a {
    display: inline-block;
    max-width: 500px;
    position: relative;

    span {
      display: inline-block;
      text-align: center;
      padding: 10px 2em;
      letter-spacing: 0.2em;
    }
  }

  &::before,
  &::after {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 0.3s;
  }

  &::before {
    border-top: 1px #444444 solid;
    border-bottom: 1px #444444 solid;
  }
  &::after {
    border-left: 1px #444444 solid;
    border-right: 1px #444444 solid;
  }

  &:hover {
    &::before {
      left: 50%;
      width: 0;
    }

    &::after {
      top: 50%;
      height: 0;
    }
  }
}

.block-top-event--goods {
  overflow: hidden;
  margin: 0 auto;
}

h2.block-top-event--image {
  margin: 0;
  a:has(img) {
    cursor: default;
    pointer-events: none;

    img {
      width: 100%;
      aspect-ratio: 1 / 0.425;
    }
  }
}

.block-store-stock--message {
  color: #a94442;
  margin: 10px 0;
}

.block-store-stock--list li {
  display: inline-block;
  margin: 0 10px 0 0;
}

/*---- アイコン ----*/
.block-icon {
  display: flex;
  gap: 4px;
  height: 24px;

  span {
    margin: 0;
    display: flex;
    position: relative;

    img {
      position: absolute;
      top: 0;
      height: 100%;
      min-width: 100%;
      width: auto;
      vertical-align: bottom;
    }

    &:has(img) {
      &::before {
        display: flex;
        padding: 0 6px;
        font-family: var(--ff-sans_serif);
        font-size: 1.2rem;
        height: 100%;
        line-height: 1;
        color: #ffffff;
        background: #000000;
        text-shadow: 0 0 2px #00000033;
        align-items: center;
      }
    }

    &:has(img[alt="アルバム"])::before {
      content: "アルバム";
      background: #b19b7b;
    }
    &:has(img[alt="カード（QR）"])::before {
      content: "カード";
      background: #8c83ae;
    }
    &:has(img[alt="ファイル"])::before {
      content: "ファイル";
      background: #7e8384;
    }
    &:has(img[alt="冊子"])::before {
      content: "冊子";
      background: #be6770;
    }
    &:has(img[alt="冊子＆カード"])::before {
      content: "冊子＆カード";
      background: #d38636;
    }
    &:has(img[alt="１品選べる"])::before {
      content: "１品選べる";
      background: #92b4c5;
    }
    &:has(img[alt="２品選べる"])::before {
      content: "２品選べる";
      background: #c5a86f;
    }
    &:has(img[alt="３品選べる"])::before {
      content: "３品選べる";
      background: #4396c0;
    }
  }
}

/*---- 商品一覧画面 ----*/
div.variation-name {
  display: none;
  font-size: 0.85em;
  color: #999999;
}

.block-category-list--comment {
  margin-bottom: 40px;
}

.block-event-page--header + .block-event-page--comment {
  margin-top: -30px;
  margin-bottom: 30px;
}

.block-event-page--goods {
  margin-top: 30px;

  .block-check-list-a,
  .block-bulk-purchase-b,
  .block-goods-list-c,
  .block-goods-list-d,
  .block-thumbnail-h,
  .block-cart-i,
  .block-goods-detail-j,
  .block-goods-list-l,
  .block-goods-name-n,
  .block-pickup-list-p,
  .block-ranking-r,
  .block-list-s,
  .block-thumbnail-t,
  .block-pickup-list-w,
  .block-goods-list-x {
    margin-top: 60px;
  }
}

.block-category-list--goods {
  .block-check-list-a,
  .block-bulk-purchase-b,
  .block-goods-list-c,
  .block-goods-list-d,
  .block-thumbnail-h,
  .block-cart-i,
  .block-goods-detail-j,
  .block-goods-list-l,
  .block-goods-name-n,
  .block-pickup-list-p,
  .block-ranking-r,
  .block-list-s,
  .block-thumbnail-t,
  .block-pickup-list-w,
  .block-goods-list-x {
    margin-top: 60px;
  }
}

.block-event-page--goods,
.block-category-list--goods {
  .block-check-list-a {
    margin-bottom: 60px;
  }
}

/*---- 表示方法・並べ替え・ページャ ----*/
.block-goods-list--display-style-items,
.block-goods-list--sort-order-items {
  .active {
    border-radius: 3px;
    font-weight: 600;
    line-height: 2.4rem;
    padding: 0 8px;
  }

  dd {
    display: inline-block;
    margin: 0 4px;
    padding: 0 8px;

    a {
      text-decoration: none;

      &:hover {
        text-decoration: underline;
      }
    }
  }

  > p {
    line-height: 40px;
    font-size: 0.85em;
    font-weight: 600;
    text-align: right;
    padding-right: 1em;
  }

  > select {
    border: none;
    width: 15em;
    border-bottom: 1px #999999 solid;
  }
}

.block-goods-list--display-style-items {
  padding: 0 0 10px 0;
  margin: 15px 0;
  border-bottom: 1px solid #eeeeee;
  line-height: 2;

  dt {
    display: inline-block;
    font-weight: normal;
  }
}

.block-goods-list--sort-order-items {
  display: none;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  padding: 0 0 10px 0;
  margin: 10px 0;
  border-bottom: 1px solid #00000028;

  dt {
    display: inline-block;
  }

  dd {
    display: block;
    margin: 0;
  }
}

.block-goods-list--filter {
  --cl-br: #433d37;
  --cl-a: #433d37;
  display: none /*---- in case of no choosable options, hide this necessary ----*/;
  clear: both;
  width: 1060px;
  margin: 30px auto 40px;
  border: 3px #00000028 solid;
  color: var(--cl-br, #433d37);
  background: #ffffff;

  & > h3 {
    text-align: center;
    padding: 15px 50px;
    margin: 0;
    position: relative;

    &:hover {
      cursor: pointer;
    }

    &::before,
    &::after {
      content: "";
      display: block;
      position: absolute;
      background: #444444;
      top: 50%;
    }

    &::before {
      width: 14px;
      height: 2px;
      margin-top: -1px;
      right: 25px;
    }

    &::after {
      width: 2px;
      height: 14px;
      margin-top: -7px;
      right: 31px;
      transition: 0.15s;
      transform: rotate(90deg);
    }

    span {
      display: block;
      position: relative;
      font-size: 1.6rem;
      font-weight: 600;
      font-family: var(--ff-sans_serif);
      transition: 0.15s;

      h3:hover & {
        opacity: 70%;
      }

      :has(:checked) &::after {
        content: "";
        display: block;
        position: absolute;
        top: 50%;
        left: -25px;
        width: 10px;
        border-radius: 50%;
        transform: translateY(-50%);
        aspect-ratio: 1 / 1;
        background: var(--cl-dn, #d9534f);
      }
    }
  }

  &.active > h3::after {
    transform: rotate(0);
  }

  .block-filter--treeitem-dir {
    display: flex;
    height: auto;
    padding: 10px 0;
    flex-wrap: nowrap;
    align-items: center;

    * {
      flex-shrink: 0;
    }

    span {
      padding-left: 5px;
      word-break: keep-all;
    }
  }

  .block-filter--tree-2 {
    display: flex;
    flex-wrap: wrap;

    .block-filter--treeitem-container {
      width: auto;
    }
  }

  .block-filter--treeitem-name {
    display: flex;
    align-items: center;

    &:has(.block-filter--treeitem-selected) {
      text-decoration: none;
    }

    span {
      display: inline-block;
      background: #e5e5e5;
      border-radius: 5px;
      padding: 6px 12px;
      margin-bottom: 5px;

      &.block-filter--treeitem-selected {
        display: flex;
        background: var(--col_MypreBlue, #00467f);
        height: 32px;
        min-width: 64px;
        border-radius: 4px;
        align-items: center;
        color: #ffffff;
        justify-content: center;
      }
    }
  }
}

#block_of_filter {
  margin: 0;
  padding: 20px 40px 8px;
  border-top: 1px #00000028 solid;

  .block-filter--header {
    margin: 0 0 16px;
    font-family: unset;
    font-size: 1.4rem;
    color: #999999;
  }

  h3 {
    position: relative;
    padding: 0;
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
    font-family: var(--ff-sans_serif);
  }

  form {
  & > div {
      margin-bottom: 22px;

      & > div {
        display: table;
        width: 100%;

        h3 {
          display: table-cell;
          vertical-align: top;
          width: 7em;
          line-height: 26px;
          font-weight: 600;
        }

        & > div {
          display: flex;
          flex-wrap: wrap;
          gap: 10px;
        }
      }
    }
  }

  .block-filter-option-items {
    flex-basis: calc((100% - 40px) /5);
    display: flex;
    align-items: stretch;
  }
}

.block-category-list--sub .block-category-style-t {
  padding-top: 60px;
}

/*---- 商品0件時メッセージ ----*/
.block-goods-notfound-message {
  background: #f3f3f3;
  padding: 50px;
  margin: 50px 0;
  text-align: center;

  .block-recent-item & {
    display: none;
  }

  .block-top-event & {
    margin-top: 0;

    a {
      display: none;
    }
  }

  h2 {
    margin-top: 0;
    font-weight: 600;
  }

  p {
    margin-bottom: 30px;
  }

  a {
    min-width: 120px;
  }
}

.net-price {
  display: none;
}

/*---- 商品一覧画面：一覧：block-goods-list-l ----*/
.block-goods-list-l--table {
  width: 100%;

  &,
  td,
  th {
    border-collapse: collapse;
    width: auto;
    margin: 0 auto;
    border: 1px solid #cccccc;
  }
  td,
  th {
    padding: 10px;
  }
  th {
    font-weight: 600;
    white-space: nowrap;
  }
}

.block-goods-list-l--add-cart {
  text-align: center;

  .block-list-add-cart-btn {
    display: block;
    padding: 12px 0;
    font-size: 1.6rem;
    width: 220px;
  }

  .block-list-custom-order-btn {
    display: block;
    padding: 12px 0;
    font-size: 1.6rem;
    width: 220px;
    margin-bottom: 5px;
  }
}

.block-goods-list-l--stock {
  text-align: center;
}

.block-goods-list-l--goods-name a {
  color: var(--cl-a, #433d37);
}

.block-goods-list-l {
  .price {
    font-weight: 600;
  }

  .price,
  .net-price,
  .default-price,
  .exchange-price,
  .block-exchange-price--rate-dt {
    text-align: right;
  }

  .net-price,
  .default-price,
  .exchange-price,
  .block-exchange-price--rate-dt {
    font-size: 1.2rem;
  }
}

.block-goods-list-l--scomment {
  font-size: 1.2rem;
  color: #cc3302;
}

/*---- 商品一覧画面：一括購入：block-goods-list-l ----*/
.block-bulk-purchase-b--table {
  width: 900px;
  margin: 0 auto 40px auto;
  border-collapse: collapse;

  td,
  th {
    border-collapse: collapse;
    padding: 10px;
    width: 900px;
    margin: 0 auto;
    border: 1px solid #cccccc;
  }

  th {
    font-weight: 600;
    white-space: nowrap;
  }
}

.block-bulk-purchase-b--stock {
  text-align: center;
}

.block-bulk-purchase-b--goods-name a {
  color: var(--cl-a, #433d37);
}

.block-bulk-purchase-b--add-cart {
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: center;

  .block-list-add-cart-btn {
    display: inline-block;
    padding: 12px 0;
    font-size: 1.6rem;
    width: 220px;
  }
}

.block-bulk-purchase-b {
  .price {
    font-weight: 600;
  }

  .price,
  .net-price,
  .default-price,
  .exchange-price,
  .block-exchange-price--rate-dt {
    text-align: right;
  }

  .net-price,
  .default-price,
  .exchange-price,
  .block-exchange-price--rate-dt {
    font-size: 1.2rem;
  }
}

.block-bulk-purchase-b--scomment {
  font-size: 1.2rem;
  color: #cc3302;
}

/*---- 商品一覧画面：詳細一覧：block-goods-list-d ----*/
.block-goods-list-d {
  padding: 0;

  > ul > li {
    margin: 0;
    border-bottom: 1px solid #00000028;
    padding: 40px 0;

    &:first-of-type {
      border-top: 1px solid #00000028;
    }

    .block-goods-list-d--item-body {
      display: flex;
      width: auto;
      margin: 0 auto;
      justify-content: space-between;

      &:has(.block-goods-list-d--image a:hover) a[class$="goods-name"] {
        color: var(--col_Gold, #baa66d) !important;
        text-decoration: underline;
      }
      a {

        &:hover {
          text-decoration: none !important;
          opacity: 100% !important;
        }
        &::after {
          display: none;
        }
      }
    }

    .block-goods-list-d--image {
      width: 240px;

      figure {
        width: 240px;
        height: 240px;
        padding: 5px;
        background: #ffffff linear-gradient(var(--col_paleGray, #f5f5f6) 0, var(--col_paleGray, #f5f5f6) 100%);
      }
    }

    .block-goods-list-d--item-description {
      display: flex;
      padding-left: 40px;
      width: auto;
      height: 240px;
      overflow: hidden;
      flex-direction: column;
      flex-grow: 1;
      position: relative;

      &::before {
        content: "";
        display: block;
        position: absolute;
        width: 100%;
        height: 8px;
        bottom: 0;
        z-index: 10;
        background: linear-gradient(#ffffff00, #ffffffff);
      }

      p.shoryaku {
        position: absolute;
        bottom: 0;
        width: 100%;
        text-align: right;
        font-size: 1.4rem;
        z-index: 100;
      }

      .block-goods-list-d--goods-name {
        order: 10;
        flex-grow: 0;

        a {
          color: var(--cl-a, #433d37);
          font-weight: 600;
          font-size: 2.0rem;
          font-feature-settings: "palt";
          text-decoration: none;

          &:hover {
            color: var(--col_Gold, #baa66d) !important;
            text-decoration: underline;
          }
        }
      }

      .block-icon {
        order: 35;
        display: flex;
        justify-content: end;
        position: relative;
        margin-top: -2.7rem;
        height: 24px;

        span {
          margin: 0;
        }
      }

      .block-goods-list-d--comment {
        order: 30;
        color: #999999;
        flex-grow: 0;
        font-feature-settings: "palt";
      }

      .block-goods-list-d--item-details {
        display: flex;
        order: 30;
        flex-grow: 0;
        margin: 4px 0 0;

        .block-goods-list-d--item-details-left {
          padding-right: 20px;

          .block-goods-list-d--price-infos {
            display: flex;
            text-align: left;
            justify-content: center;
            align-items: baseline;
            width: 100%;

            .block-goods-list-d--price-title {
              word-break: keep-all;
            }

            .block-goods-list-d--price {
              display: inline-block;
            }

            .price {
              font-weight: 600;
              font-size: 1.8rem;
              width: 100%;
            }

            .price,
            .net-price,
            .default-price,
            .exchange-price,
            .block-exchange-price--rate-dt {
              text-align: unset;
            }

            .block-goods-list-d--default-price.default-price {
              font-weight: normal;
              margin: 0 0 0 30px;
              display: inline-block;
            }
          }

          .block-goods-list-d--spec {
            display: inline-block;
          }

          .block-goods-list-d--spec-title {
            display: inline-block;
          }
        }

        .block-goods-list-d--add-cart {
          display: flex;
          flex-basis: 300px;
          text-align: right;
          justify-content: flex-end;
          align-items: flex-end;
          display: none;

          .block-list-add-cart-btn {
            display: inline-block;
            padding: 12px 0;
            font-size: 1.6rem;
            width: 220px;
            margin: 0;
          }

          .block-list-custom-order-btn {
            display: block;
            padding: 12px 0;
            font-size: 1.6rem;
            width: 220px;
            margin: 0 auto;
            margin-bottom: 5px;
          }
        }
      }

      .block-goods-list-d--stock-items {
        display: none;
        text-align: left;

        .block-goods-list-d--stock-title {
          display: inline-block;
        }

        .block-goods-list-d--stock {
          display: inline-block;
        }
      }

      .block-goods-list-d--goods-comment {
        order: 90;
        margin-top: 8px;
        overflow: hidden;
        height: calc(6em);
        flex-grow: 1;
        padding-top: 16px;
        border-top: 1px dotted #00000028;

        &::before,
        &::after {
          background: #ffffff;
          position: absolute;
        }

        &::before {
          content: "...";
          right: 0;
          bottom: 0;
          width: 48px;
          height: 1em;
          font-size: 2rem;
          line-height: 1;
          text-align: right;
          background: transparent;
          z-index: 20;
        }

        &::after {
          content: "";
          height: 100%;
          width: 100%;
        }

        .kyacchi {
          margin: 0 0 1.6rem;
          font-family: var(--ff-serif);
          font-weight: 600;
          font-size: 1.8rem;
        }

        a.katarogu {
          position: absolute;
          display: block;
          bottom: 0;
          width: 100%;
          padding-top: 16px;
          font-size: 1.8rem;
          font-weight: 600;
          text-decoration: underline;
          z-index: 10;
          color: var(--col_Gold, #baa66d);
          background: linear-gradient(transparent 0, var(--col_Background, #ffffff) 10px, var(--col_Background, #ffffff) 100%);

          &:hover {
            opacity: 90%;
          }

          b {
            font-size: 1.8rem;
            background: #ffffff;
            text-decoration: underline;

            &:hover {
              color: var(--col_Gold, #baa66d);
            }
          }
        }
      }
    }
  }
}

.block-goods-list-d--scomment {
  color: #cc3302;
}

/*---- 商品一覧画面：チェックリスト：block-check-list-a ----*/
.block-check-list-a li {
  width: 100%;
  margin: 0 0 25px 0;
}

.block-check-list-a--price-infos,
.block-check-list-a--stock-items,
.block-check-list-a--select-item {
  text-align: left;
  margin: 5px 0;
}

.block-check-list-a--select-item .radio {
  margin-right: 0;
  width: 100%;
  display: block;
  padding: 10px 10px 10px 45px;

  &::before {
    top: 11px;
    left: 16px;
  }
  &::after {
    top: 11px;
    left: 16px;
  }
}

.block-check-list-a--image {
  width: 142px;

  figure {
    background: #f5f5f6;
    width: 142px;
    height: 142px;
  }
}

.block-check-list-a--items {
  display: flex;
  flex-wrap: wrap;

  li:last-child .block-check-list-a--item-body {
    border-bottom: none;
  }
}

.block-check-list-a--item-body {
  display: flex;
  padding-bottom: 5px;
}

.block-check-list-a--select-item {
  margin-top: 5px;
  margin-right: 50px;
  background: #f3f3f3;
  width: 100%;
}

.block-check-list-a--item-description {
  width: 100%;
  padding-left: 20px;
  padding-right: 50px;
}

.block-check-list-a--goods-name {
  margin-bottom: 10px;

  a {
    color: var(--cl-a, #433d37);
  }
}

.block-check-list-a--price-title {
  display: inline-block;
}

.block-check-list-a--price {
  display: inline-block;
}

.block-check-list-a--stock-title {
  display: inline-block;
}

.block-check-list-a--stock {
  display: inline-block;
}

.block-check-list-a {
  .price {
    font-weight: 600;
  }

  .price,
  .net-price,
  .default-price,
  .exchange-price,
  .block-exchange-price--rate-dt {
    text-align: left;
  }
}

.block-check-list-a--scomment {
  color: #cc3302;
}

.block-check-list-a--goods-comment {
  margin-top: 10px;
}

.block-check-list-a--add-cart {
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: center;

  .block-list-add-cart-btn {
    display: inline-block;
    padding: 12px 0;
    font-size: 1.6rem;
    width: 220px;
  }
}

.block-order-complete .block-check-list-a,
.page-bookmark .block-check-list-a {
  .block-check-list-a--comment,
  .block-check-list-a--comment {
    padding: 0 0 5px;
  }

  .block-check-list-a--stock-items .page-bookmark .block-check-list-a .block-check-list-a--stock-items {
    padding: 5px 0;
  }
}

/*---- 商品一覧画面：ピックアップ：block-pickup-list-p ----*/
.block-goods-detail-j--items,
.block-pickup-list-w--items,
.block-pickup-list-p--items {
  display: flex;
  flex-wrap: wrap;
  gap: 80px 33px;
  align-content: stretch;

  li {
    display: flex;
    gap: 33px;
    justify-content: space-between;
    margin: 0;
  }
}

.block-goods-detail-j--item-body,
.block-goods-detail-j--goods,
.block-pickup-list-w--item-body,
.block-pickup-list-p--item-body {
  display: flex;
  width: 270px;
  flex-basis: 270px;
  margin: 0;
  padding: 0;
  flex-direction: column;

  &:has(a:hover) a {
    color: var(--col_Gold, #baa66d);
    text-decoration: underline;
  }
}

.block-goods-detail-j--image,
.block-pickup-list-w--image,
.block-pickup-list-p--image {
  display: table-cell;
  vertical-align: top;
  width: 270px;
  flex-grow: 0;
}

.block-goods-detail-j--goods-image,
.block-pickup-list-w--image,
.block-pickup-list-p--image {
  position: relative;

  figure {
    width: 270px;
    height: 270px;
    padding: 5px;
    background: #ffffff linear-gradient(var(--col_paleGray, #f5f5f6) 0, var(--col_paleGray, #f5f5f6) 100%);

    img {
      background: #ffffff;;
    }
  }
}

.block-goods-detail-j--goods-description,
.block-pickup-list-w--item-description,
.block-pickup-list-p--item-description {
  display: flex;
  flex-grow: 1;
  vertical-align: top;
  padding: 0;
  width: 100%;
  margin-top: 10px;
  flex-direction: column;
  align-content: flex-start;

  .block-goods-detail-j--goods-name,
  .block-pickup-list-w--goods-name,
  .block-pickup-list-p--goods-name {
    flex-grow: 1;
    width: 100%;
    font-feature-settings: "palt";

    a {
      color: var(--cl-a, #433d37);
      text-decoration: none;
      transition: 0.3s;
    }
  }

  .block-goods-detail-j--comment,
  .block-pickup-list-w--comment,
  .block-pickup-list-p--comment {
    margin: 0;
    padding: 0;
    width: 100%;
    order: 0;
    color: #999999;
    font-size: 1.3rem;
    font-feature-settings: "palt";
  }

  .block-goods-detail-j--add-cart,
  .block-pickup-list-w--add-cart,
  .block-pickup-list-p--add-cart {
    text-align: right;
    display: none;

    .block-list-add-cart-btn {
      margin-top: 10px;
      display: inline-block;
      padding: 8px 0;
      width: 100%;
      border-radius: 4px;
      min-height: 40px;
      height: 40px;
      font-weight: 600;

      &:hover {
        color: #ffffff !important;
      }
    }

    .block-list-custom-order-btn {
      display: block;
      padding: 8px 0;
      width: 160px;
      margin-bottom: 5px;
    }
  }

  .block-icon:has(+ .block-goods-detail-j--price-infos, + .block-pickup-list-w--price-infos, + .block-pickup-list-p--price-infos) {
    margin: 6px 0 0;
    margin-bottom: -1.8rem;
  }

  .block-goods-detail-j--price-infos,
  .block-pickup-list-w--price-infos,
  .block-pickup-list-p--price-infos {
    margin-top: -7px;

    .price {
      font-size: 1.6rem;
      font-weight: 600;
    }

    .price,
    .net-price,
    .default-price,
    .exchange-price,
    .block-exchange-price--rate-dt {
      text-align: right;
    }
  }

  .block-goods-detail-j--scomment,
  .block-pickup-list-p--scomment {
    color: #cc3302;
  }
}

/*---- 商品一覧画面：サムネイル：block-thumbnail-t ----*/
.block-thumbnail-t {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 -10px;

  li {
    padding: 0 10px;
    margin-bottom: 50px;
    width: 100%;

    .pane-right-menu &,
    .pane-goods-footer & {
      width: calc(100% /5);
    }

    > a {
      display: block;
      text-decoration: none;
    }
  }

  &.block-thumbnail-u {
    margin: 0 -8px;

    li {
      width: calc(100% /5);
      padding: 0 8px;
      margin-bottom: 40px;
    }
  }

  &.block-thumbnail-v {
    margin: 0 -6px;

    li {
      width: calc(100% /6);
      padding: 0 6px;
      margin-bottom: 30px;
    }
  }
}

.block-thumbnail-t--goods {
  width: 265px;

  &:first-of-type {
    margin-left: 8px;
  }

  a {
    color: var(--cl-a, #433d37);
    text-decoration: none;
  }

  .price,
  .net-price {
    font-weight: 600;
  }
}

.block-thumbnail-t--goods-image {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 100%;

  figure {
    position: absolute;
    top: 0;
    left: 0;
    background: #f5f5f6;
    width: 100%;
    height: 100%;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;

    img {
      max-width: 100%;
      max-height: 100%;
      width: auto;
      height: auto;
      transition: 0.3s;

      a:hover & {
        opacity: 90%;
      }
    }
  }
}

.block-thumbnail-t--goods-description {
  margin-top: 12px;
}

.block-thumbnail-t--price-infos {
  margin-top: 3px;
}

.block-thumbnail-t--scomment {
  color: #cc3302;
}

/*---- 商品一覧画面：ランキング：block-ranking-r ----*/
.block-ranking-r {
  overflow: hidden;

  ul {
    margin: 0 -7px 60px -7px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;

    li {
      padding: 0;
      margin-bottom: 30px;
      width: 100%;

      > a {
        flex-basis: 295px;
        margin-left: 33px;
        text-decoration: none;

        &:first-of-type {
          margin-left: 0;
        }
      }
    }
  }
}

.block-ranking-r--goods {
  flex-basis: 209px;
  margin: 0;

  a {
    text-decoration: none;
  }
}

.block-ranking-r--goods-image {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 100%;

  figure {
    position: absolute;
    top: 0;
    left: 0;
    background: #f5f5f6;
    width: 100%;
    height: 100%;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;

    img {
      transition: 0.3s;

      a:hover & {
        opacity: 90%;
      }
    }
  }
}

.block-ranking-r--goods-description {
  margin-top: 15px;
  padding-left: 55px;

  .block-ranking-r--rank {
    display: table-cell;
    width: 2.5em;
    padding-right: 15px;
    text-align: center;
    font-size: 2.0rem;
    font-weight: 600;
    position: relative;

    &::after {
      content: "";
      display: block;
      position: absolute;
      top: 0;
      right: 15px;
      width: 1px;
      height: 3em;
      background-color: #444444;
    }
  }

  .block-ranking-r--goods {
    display: table-cell;

    .price,
    .net-price {
      font-weight: 600;
    }

    .price,
    .net-price,
    .default-price,
    .exchange-price,
    .block-exchange-price--rate-dt {
      margin-top: 3px;
    }
  }
}

.block-ranking-r--scomment {
  color: #cc3302;
}

/*---- ランキングアイコン ----*/
.block-ranking-r--goods-image {
  position: relative;

  .block-ranking-r--rank {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 220px;
    left: 0;
    width: 40px;
    height: 40px;
    font-size: 2.5rem;
    border-radius: 32px;
    text-align: center;
    color: #444444;
    background: no-repeat;

    &::after {
      content: "";
      display: block;
      position: absolute;
      top: 3px;
      right: -5px;
      width: 1px;
      height: 100%;
      transform: rotate(25deg);
      background-color: #444444;
    }
  }
}

/*---- 商品一覧画面：サムネイル(閲覧履歴)：block-thumbnail-h ----*/
.block-thumbnail-h {
  flex-wrap: nowrap;
  margin: 0;
  gap: 24px;
  justify-content: center;

  li {
    width: calc((100% - 64px) /5);
    margin: 0;

    .block-thumbnail-h--goods {
      display: flex;
      height: 100%;
      flex-direction: column;
      justify-content: space-between;

      a {
        display: block;
        text-decoration: none;
        font-size: 1.3rem;
        overflow: hidden;
        display: -webkit-box;
        line-height: 1.35;
        text-overflow: ellipsis;
        -webkit-box-orient: vertical;
        line-clamp: 2;
        -webkit-line-clamp: 2;
        font-feature-settings: "palt";
        transition: 0.3s;

        .block-thumbnail-h--goods:hover & {
          color: var(--col_Gold, #baa66d);
          text-decoration: underline;
        }
      }

      .block-thumbnail-h--goods-image {
        flex-grow: 0;
        position: relative;
        width: 100%;
        aspect-ratio: 1 / 1;
        padding-top: 100%;

        figure {
          display: flex;
          justify-content: center;
          align-items: center;
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          padding: 5px;
          background: #ffffff linear-gradient(var(--col_paleGray, #f5f5f6) 0, var(--col_paleGray, #f5f5f6) 100%);

          img {
            display: block;
            width: 100%;
            aspect-ratio: 1 / 1;
            object-fit: contain;
            background: #ffffff;
            transition: 0.3s;
          }
        }
      }

      .block-thumbnail-h--goods-description {
        display: flex;
        flex-grow: 1;
        margin-top: 12px;
        flex-direction: column;
        justify-content: space-between;

        .price,
        .net-price {
          font-weight: 600;
        }

        .price,
        .net-price,
        .default-price,
        .exchange-price,
        .block-exchange-price--rate-dt {
          margin-top: 3px;
          letter-spacing: 0.01em;
          font-size: 1.3rem;
          text-align: left;
        }

        .block-thumbnail-h--scomment {
          color: #cc3302;
        }
      }
    }
  }
}

/*---- 商品一覧画面：リスト：block-list-s ----*/
.block-list-s {
  width: 1100px;
  margin: 0 auto;

  li {
    display: block;
    border-bottom: 1px solid #cccccc;
    margin: 0;
    padding: 17px 0;

    &:first-child {
      border-top: 1px solid #cccccc;
    }
  }

  div {
    display: inline;
  }

  .price {
    font-weight: 600;
  }
}

.block-list-s--goods-name,
.block-list-s--price-items div {
  padding-right: 1em;
}

.block-list-s--goods-name a {
  color: var(--cl-a, #433d37);
}

.block-list-s--scomment {
  color: #cc3302;
}

/*---- 商品一覧画面：買い物かご：block-cart-i ----*/
.block-cart-i {
  overflow: hidden;
}

.block-cart-i--items {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 -10px 60px -10px;

  li {
    padding: 0 10px;
    margin-bottom: 50px;
    width: 100%;

    a {
      display: block;
      text-decoration: none;
    }
  }
}

.block-cart-i--goods-image {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 100%;

  figure {
    position: absolute;
    top: 0;
    left: 0;
    background: #f5f5f6;
    width: 100%;
    height: 100%;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;

    img {
      max-width: 100%;
      max-height: 100%;
      width: auto;
      height: auto;
      transition: 0.3s;

      a:hover & {
        opacity: 90%;
      }
    }
  }
}

.block-cart-i--goods {
  flex-basis: 270px;
  margin-left: 33px;

  &:first-of-type {
    margin-left: 0;
  }

  a {
    text-decoration: underline;
  }

  .price,
  .net-price {
    font-weight: 600;
  }

  .price,
  .net-price,
  .default-price,
  .exchange-price,
  .block-exchange-price--rate-dt {
    text-align: right;
  }
}

.block-cart-i--goods-description {
  margin-top: 20px;
}

.block-cart-i--scomment {
  color: #cc3302;
}

/*---- 商品一覧画面：商品名：block-goods-name-n ----*/
.block-goods-name-n {
  width: 900px;
  margin: 0 auto;

  li {
    display: block;
    border-bottom: 1px solid #cccccc;
    margin: 0;
    padding: 17px 0;

    &:first-child {
      border-top: 1px solid #cccccc;
    }
  }

  dt {
    display: inline-block;
    vertical-align: top;
    width: 40%;
    padding-right: 1em;
  }

  dd {
    display: inline-block;
    vertical-align: top;
  }

  a {
    color: var(--cl-a, #433d37);
  }
}

/*---- 商品一覧画面：ブランド画面：block-goods-list-x ----*/
.block-goods-list-x--items li {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.block-goods-list-x--item-body {
  flex-basis: 200px;
  margin-left: 33px;

  &:first-of-type {
    margin-left: 0;
  }
}

.block-goods-list-x--image figure {
  background: #f5f5f6;
  width: 200px;
  height: 200px;
}

/*---- カテゴリー画面：ピックアップ：block-category-style-p ----*/
.block-category-style-p {
  padding-top: 50px;
  border-top: 1px #00000028 solid;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 80px 0 50px 0;
}

.block-category-style-p--item {
  flex-basis: 366px;
  overflow: hidden;
  margin: 0 0 40px 40px;

  &:nth-child(3n + 1) {
    margin-left: 0;
  }
}

.block-category-style-p--item-name {
  font-size: 1.6rem;
  border-bottom: #cccccc dotted 1px;
  clear: both;
  padding-left: 20px;
  position: relative;

  &::after {
    content: "";
    display: block;
    position: absolute;
    top: 7px;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 8px;
    border-color: transparent transparent transparent #cccccc;
  }

  a {
    display: block;
    text-decoration: none;
    padding-bottom: 10px;
    transition: 0.3s;

    &:hover {
      opacity: 50%;
    }
  }
}

.block-category-style-p--item-image {
  width: 120px;
  float: left;

  a {
    display: flex;
    width: 100px;
    height: 100px;
    justify-content: center;
    align-items: center;

    img {
      max-width: 100%;
      max-height: 100%;
      width: auto;
      height: auto;
    }
  }
}

.block-category-style-p--item-comment {
  width: 240px;
  float: right;
}

/*---- カテゴリー画面：詳細：block-category-style-d ----*/
/*---- カテゴリー画面：孫カテゴリ：block-category-style-g ----*/
.block-category-style-g {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 0 50px 0;
}

.block-category-style-g--item {
  flex-basis: 550px;
  margin: 0 0 40px 40px;
  overflow: hidden;

  &:nth-child(2n) {
    margin: 0 0 40px 40px;
  }

  ul {
    clear: both;
    margin: 10px 10px 0 10px;
    padding: 0;

    li {
      margin: 0 0 0 2em;
      padding: 0;
      list-style: square;
    }
  }
}

.block-category-style-g--item-name {
  font-size: 1.6rem;
  border-bottom: #444444 solid 1px;
  padding-bottom: 10px;

  a {
    text-decoration: none;
  }
}

.block-category-style-g--item-image {
  width: 143px;
  float: left;
}

.block-category-style-g--item-comment {
  width: 365px;
  margin: 10px 10px 0 10px;
  float: right;
}

/*---- カテゴリー画面：一覧：block-category-style-l ----*/
.block-category-style-l--item-name {
  display: inline;
}

.block-category-style-l--splitter {
  margin: 0 5px;
}

/*---- カテゴリーツリー ----*/
.block-category-tree--item__open,
.block-category-tree--item {
  border-top: none;

  a,
  > span {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 5px 20px 5px 5px;
    border-bottom: #eeeeee 1px solid;
    text-decoration: none;
    position: relative;
    font-size: 1.3rem;
    height: auto;
  }
  > span {
    display: flex;
    align-items: center;
    min-height: 35px;
  }
  a::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 7px;
    width: 6px;
    height: 6px;
    margin-top: -3px;
    border-top: 1px #888888 solid;
    border-right: 1px #888888 solid;
    transform: rotate(45deg);
  }
  a::before {
    content: "";
    display: block;
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: #888888;
    transition: 0.3s;
  }
  a:hover::before {
    width: 100%;
  }
}

.block-category-tree--level-2 > li {
  text-indent: 15px;
}

.block-category-tree--level-3 > li {
  text-indent: 30px;
}

.block-category-tree--level-4 > li {
  text-indent: 45px;
}

.block-category-tree--image {
  width: 35px;
  height: 35px;
  margin-right: 9px;
}

/*---- ジャンルツリー ----*/
.block-genre-tree--item__open,
.block-genre-tree--item {
  border-top: none;

  a {
    > span {
      display: flex;
      align-items: center;
      min-height: 35px;

      &::after {
        content: "";
        display: block;
        position: absolute;
        top: 50%;
        right: 7px;
        width: 6px;
        height: 6px;
        margin-top: -3px;
        border-top: 1px #888888 solid;
        border-right: 1px #888888 solid;
        transform: rotate(45deg);
      }
      &::before {
        content: "";
        display: block;
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 0;
        height: 1px;
        background: #888888;
        transition: 0.3s;
      }

      &:hover::before {
        width: 100%;
      }
    }
  }
}

.block-genre-tree--item__open a,
.block-genre-tree--item a,
.block-genre-tree--item > span {
  display: flex;
  align-items: center;
  padding: 5px 20px 5px 5px;
  border-bottom: #eeeeee 1px solid;
  text-decoration: none;
  position: relative;
  font-size: 1.3rem;
}

.block-genre-tree--level2 > li {
  text-indent: 10px;
}

.block-genre-tree--level3 > li {
  text-indent: 20px;
}

.block-genre-tree--level4 > li {
  text-indent: 30px;
}

.block-genre-tree--image {
  width: 35px;
  height: 35px;
  margin-right: 9px;
}

/*---- 絞り込み検索 ----*/
.block-filter--treeitem {
  border-top: none;
}

.block-filter--tree-1 {
  > li {
    border-bottom: 1px #cccccc solid;

    &:first-child {
      border-top: none;
      padding-bottom: 12px;
    }
  }
}

.block-filter--tree-2 {
  padding-bottom: 10px;

  > li {
    padding-right: 10px;
  }
}

.block-filter--tree-3 > li {
  padding-left: 20px;
}

.block-filter--tree-4 > li {
  padding-left: 30px;
}

.block-filter--treeitem-container {
  width: 100%;
}

.block-filter--treeitem-dir {
  display: table-cell;
  height: 43px;
  padding-right: 9px;
  vertical-align: middle;
  text-align: left;
  cursor: pointer;

  i {
    transform: rotate(90deg);
  }
}

.block-filter--treeitem-dir__close i {
  transform: rotate(0);
}

.block-filter--image {
  display: inline-block;
  letter-spacing: normal;
  vertical-align: top;
  margin-right: 20px;
}

.block-filter--image-check {
  position: relative;
  display: block;

  i {
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    line-height: 20px;
  }

  &::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 0;
    left: 0;
  }
}

/*---- 商品購入規約 ----*/
.block-goods-agree--item {
  margin: 80px 0;
}

td.block-regular-purcharse-cancellation--goods-img {
  width: 250px;
}

/*---- parts ----*/
.mb100 {
  margin-bottom: 100px;
}

.bg_gray_ {
  background-color: #f3f3f3;
}

.txt_center_ {
  text-align: center;
}

.anchor_ {
  margin-top: -70px;
  padding-top: 70px;
}

.sp-only {
  display: none;
}

.page-page .block-page-block--contents {
    display: flex;
}

.page-page .block-page-block--contents-body-img-2column {
  flex: 1;
  margin-right: 10px;
}

.block-goods-list--pager {
  .pager {
    margin: 15px 0 20px 0;
    justify-content: center;

    .block-goods-list--pager-bottom {
      margin-top: 20px;
    }
  }
}

.ctop-tglBtn {
  display: block;
  width: 50%;
  height: 48px;
  margin: 0 auto;
  color: var(--col_Gold, #baa66d);
  border: 1px solid var(--col_Gold, #baa66d);
  background: #ffffff;
}

.js-ctop-tgl-content { /*---- ２ページ目以降のコンテンツ省略 ----*/
  position: relative;
  overflow: visible;
  height: auto;
  transition: 0.5s;
  /* z-index: -1; */


  &::after {
      opacity: 0;
  }

  &.is-close {
    height: 64px;
    cursor: pointer;
    overflow: hidden;

    &::before {
      display: block;
      opacity: 100%;
    }

    &::before {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      padding: 6px 0 0 0;
      content: "";
      transition: 0.5s;
      background: linear-gradient(transparent 0%, var(--col_Background, #ffffffff) 95%);
      z-index: 5;
    }

    &::after {
      content: "省略されたコンテンツを表示する +";
      opacity: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      color: var(--col_Gold, #baa66d);
      font-weight: 600;
      border: 1px solid var(--col_Gold, #baa66d);
      border-radius: 24px;
      padding: 0 10px;
      width: 300px;
      height: 36px;
      background: #ffffff;
      position: absolute;
      bottom: 5px;
      left: calc(50% - 150px);
      z-index: 10;
          }
  }
}

.block-goods-detail {
  animation: none;
  transition: unset;
}

.pane-contents {
  animation: fadeIn 0.6s ease-in 0s 1 normal;
}

.block-goods-list--pager {
  .pager-total {
    height: 32px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;

    &.is-filtered {
      background: #00000010;
      border-radius: 100px;

      a.btn-filterclr {
        position: absolute;
        right: 12px;
        font-size: 1.2rem;

        &:hover {
          color: var(--col_Gold, #baa66d);
          text-decoration: underline;
        }

        &::before {
          content: "";
          width: 16px;
          height: 16px;
          position: absolute;
          top: calc(50% - 8px);
          left: -18px;
          background: transparent url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2ZXJzaW9uPSIxLjEiIHdpZHRoPSIxOCIgaGVpZ2h0PSIxOCIgdmlld0JveD0iMCAwIDI1NiAyNTYiIHhtbDpzcGFjZT0icHJlc2VydmUiPjxnIHN0eWxlPSJzdHJva2U6IG5vbmU7IHN0cm9rZS13aWR0aDogMDsgc3Ryb2tlLWRhc2hhcnJheTogbm9uZTsgc3Ryb2tlLWxpbmVjYXA6IGJ1dHQ7IHN0cm9rZS1saW5lam9pbjogbWl0ZXI7IHN0cm9rZS1taXRlcmxpbWl0OiAxMDsgZmlsbDogbm9uZTsgZmlsbC1ydWxlOiBub256ZXJvOyBvcGFjaXR5OiAxOyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS40MDY1OTM0MDY1OTM0MDE2IDEuNDA2NTkzNDA2NTkzNDAxNikgc2NhbGUoMi44MSAyLjgxKSI+CTxwYXRoIGQ9Ik0gMzcuODgyIDkwIGMgLTAuMzM4IDAgLTAuNjc2IC0wLjA4NiAtMC45ODEgLTAuMjU4IGMgLTAuNjI5IC0wLjM1NCAtMS4wMTkgLTEuMDIgLTEuMDE5IC0xLjc0MiBWIDQ1LjM1NCBMIDMuOTIzIDMuMjA4IEMgMy40NjQgMi42MDQgMy4zODggMS43OTEgMy43MjYgMS4xMSBTIDQuNzU4IDAgNS41MTcgMCBoIDc4Ljk2NiBjIDAuNzYgMCAxLjQ1MyAwLjQzIDEuNzkxIDEuMTEgcyAwLjI2MiAxLjQ5MyAtMC4xOTcgMi4wOTggTCA1NC4xMTggNDUuMzU0IFYgNzkuMzcgYyAwIDAuNjk5IC0wLjM2NSAxLjM0OCAtMC45NjMgMS43MSBsIC0xNC4yMzcgOC42MyBDIDM4LjYwMSA4OS45MDMgMzguMjQxIDkwIDM3Ljg4MiA5MCB6IE0gOS41NDMgNCBsIDI5LjkzMiAzOS40NzQgYyAwLjI2NCAwLjM0OCAwLjQwNiAwLjc3MiAwLjQwNiAxLjIwOCB2IDM5Ljc2NyBsIDEwLjIzNiAtNi4yMDUgViA0NC42ODIgYyAwIC0wLjQzNyAwLjE0MyAtMC44NjEgMC40MDYgLTEuMjA4IEwgODAuNDU3IDQgSCA5LjU0MyB6IE0gNTIuMTE4IDc5LjM3IGggMC4wMSBIIDUyLjExOCB6IiBzdHlsZT0ic3Ryb2tlOiBub25lO3N0cm9rZS13aWR0aDogMTtzdHJva2UtZGFzaGFycmF5OiBub25lO3N0cm9rZS1saW5lY2FwOiBidXR0O3N0cm9rZS1saW5lam9pbjogbWl0ZXI7c3Ryb2tlLW1pdGVybGltaXQ6IDEwO2ZpbGw6ICM2NjY7ZmlsbC1ydWxlOiBub256ZXJvO29wYWNpdHk6IDE7IiB0cmFuc2Zvcm09IiBtYXRyaXgoMSAwIDAgMSAwIDApICIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIi8+PC9nPjwvc3ZnPg==") no-repeat 0 0/ contain;
        }
      }
    }

    .pager-count {
      font-weight: normal;

      span {
        font-size: 1.8rem;
        font-weight: 600;
      }

      small {
        margin: 0 4px;
        font-size: 1.4rem;
      }
    }
  }
}

#header-news {
  order: -15;
  position: relative;
  height: 32px;
  width: 100%;
  background-color: #ffffff;
  background-color: color-mix(in srgb, var(--col_paleGray, #f5f5f6) 45%, #ffffff);
  z-index: 100;

  p {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 32px;
    margin: 0 auto;
    padding: 0 50px;
    text-align: center;
    font-weight: 700;
    font-size: 1.2rem;
  }
}

.block-header {
  position: sticky;
  top: 0;
  display: block;
  width: 100%;
  background: var(--col_Background);
  z-index: 10000;
  /* box-shadow: 0 0 4px rgb(0 0 0 /12%); */
}

.block-gnav {
  order: -10;
  box-sizing: content-box;
  display: block;
  background: var(--col_Background, #ffffff);
  transition: 0.3s;

  &.UpMove,
  &.DownMove {
    top: 64px;
  }

  &.UpMove {
    pointer-events: none;
  }
}

/* .block-header.UpMove,
.block-gnav.UpMove {
  position: sticky;
  animation: UpAnime 0.3s forwards;
  pointer-events: none;
}
@keyframes UpAnime {
  0% {
    opacity: 100%;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-32px);
  }
} */

#header-news.DownMove,
.block-header.DownMove,
.block-gnav.DownMove {
  position: sticky;
  animation: DownAnime 0.5s forwards;

  &:not(:has(+ .block-gnav)) {
    box-shadow: 0 2px 2px rgb(0 0 0 / 10%);
  }
}
@keyframes DownAnime {
  0% {
    opacity: 0;
    transform: translateY(-32px);
  }
  100% {
    opacity: 100%;
    transform: translateY(0);
  }
}

/*---- 検索結果 ----*/
:is(.page-search, .page-genre) .pane-contents .container {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 20px 40px;

  .pane-left-menu {
    display: block;
    grid-column: 1 / 3;
    grid-row: 1;

    .page-search-reccomend {
      .sec-title {
        border-radius: 0 0 8px 8px;
        padding: 8px 16px;
        text-align: center;
        color: #666666;
        font-size: 1.2rem;
        background: #f5f5f6;
      }

      ul {
        display: flex;
        border-radius: 8px 8px 0 0;
        gap: 6px;
        flex-wrap: wrap;

        li {
          width: calc((100% - 24px) /4);
        }
      }
    }
  }

  .pane-main {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    width: 840px;

    .block-search-goods {
      width: 100%;
    }

    h1 {
      margin: 0;
    }

    h2 {
      font-family: var(--ff-sans_serif);
      font-weight: normal;
      font-size: 1.6rem;
    }

    .block-goods-list--sort-order-items {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      gap: 8px;
    }

    .block-search-goods--condition-items {
      margin-top: 96px;
    }
  }

  .pane-right-menu {
    grid-column: 2;
    grid-row: auto;
    width: 100%;

    #block_of_filter {
      margin: 0;
      padding: 18px 0 0;
      border: 0;

      .block-filter--header {
        display: block;
        margin: 0 0 20px;
        font-family: var(--ff-serif);
        font-size: 1.8rem;
        font-weight: 600;
        color: var(--cl-br, #433d37);
      }

      form > div {
        margin-bottom: 32px;

        & > div {
          display: block;

          & > div {
            flex-direction: column;
            margin-left: 16px;
          }

          h3 {
            display: block;
            width: 100%;
            margin: 0 0 12px;
            padding: 0 0 4px;
            color: var(--cl-heading, #444444);
            border-bottom: 1px solid #00000028;
          }
        }
      }

      & ~ #block_of_itemhistory {
        width: 100%;
        padding: 16px 24px;
        background: color-mix(in srgb, var(--col_paleGray, #f5f5f6) 45%, transparent);

        h2 {
          display: block;
          margin: 0;
          font-size: 1.8rem;
          font-weight: 600;

          &::after {
            background: transparent;
          }
        }

        .block-recent-item--items {
          width: 100%;

          ul {
            flex-direction: column;

            li {
              width: 100%;
              figure {
                background: #ffffff;
              }
              dd {
                margin-top: 8px;
              }
            }
          }
        }
      }
    }
  }
}

:is(.page-search) .pane-left-menu .page-search-reccomend {
  margin-top: 20px;
}

/*---- ニュース ----*/
.bar.top-sect-news {
  height: 32px;
  padding: 0;
  position: relative;
  margin-top: -32px;
  background: transparent;
  opacity: 0;
  z-index: 100;

  &:has(.slick-initialized) {
    opacity: 100%;
  }

  &::after {
    opacity: 0;
  }

  .inner {
    width: 100%;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    opacity: 100%;
    height: 100%;

    /*---- 開閉ボタン ----*/
    .top-news-open {
      top: unset;
      bottom: 0;
      background: #ffffff;

      &::after {
        bottom: 0;
        background: linear-gradient(#00000000, #00000010);
      }

      label {
        &::before,
        &::after {
          transition: 0.3s;
        }
        &::after {
          transform: rotate(90deg);
        }

        &:hover::before,
        &:hover::after {
          background-color: var(--col_Gold, #baa66d);
        }

      }
    }

    /*---- お知らせ見出し ----*/
    .top-sect-title {
      display: none;
    }

    .top-sect-news-box {
      width: 100%;
      align-items: unset;

      .slick-track {
        overflow: hidden;
        height: 32px;
      }

      .topic-item {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        height: 32px;
        left: 0 !important;
        width: 100cqw !important;
        background: #fffcef;
        position: absolute !important;

        /*---- 通常 ----*/
        &::before {
          content: "お知らせ";
        }

        /*---- 1行目の空白 ----*/
        &.blank {
          display: block;
          background: transparent;
        }

        /*---- 重要 ----*/
        &.important {
          background-color: #f3c3c3;
          margin-bottom: 0;
        }
      }

      a {
        font-size: 1.4rem;
      }
    }
  }
}

.top-sect-news {
  order: -15;
  display: flex;
  position: relative;
  height: auto;
  background: #fffcef;
  box-sizing: border-box;
  z-index: 100;
  opacity: 100%;
  align-items: center;

  &::after {
    position: absolute;
    content: "";
    height: 5px;
    width: 100%;
    bottom: 0;
    left: 0;
    background: linear-gradient(#00000000, #0000000c);
    opacity: 100%;
  }

  .inner {
    width: 100%;
    margin: 0;
    padding: 1.5em 0 2em;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 32px;
    justify-content: center;
    transition: padding-top 0.6s allow-discrete;

    /*---- 開閉ボタン ----*/
    .top-news-open {
      position: absolute;
      display: flex;
      top: unset;
      bottom: 100%;
      left: calc(((100% - var(--wrapperW)) /2));
      height: 28px;
      border-radius: 4px 4px 0 0;
      padding: 0 12px 0;
      background: #fffcef;
      z-index: 90;
      flex-wrap: wrap;
      cursor: pointer;

      &:hover {
        box-shadow: 0 0 5px #00000010;
      }

      label {
        display: flex;
        align-items: center;
        line-height: 1;
        padding-right: 0;
        font-size: 1.2rem !important;
        cursor: pointer;

        &::before,
        &::after {
          content: "";
          display: block;
          position: absolute;
          width: 10px;
          height: 2px;
          top: calc(50% - 1px);
          right: 8px;
          margin-top: -1px;
          background: var(--cl-a, #433d37);
          transition: 0.15s;
          z-index: +1;
        }
        &::after {
          transform: rotate(180deg);
          transition: 0.15s;
        }
        &:has(:checked)::after {
          background: var(--col_MypreBlue, #00467f);
        }
      }

      input {
        width: 14px;
        height: 14px;
        margin: 0;
        appearance: none;
        -webkit-appearance: none;
        background: transparent;
        border: 0;

        &::before,
        &::after {
          display: none;
        }
      }
    }

    /*---- お知らせ見出し ----*/
    .top-sect-title {
      margin: 2px 0 0;
      align-items: start;
      letter-spacing: 0.05em;
      font-weight: 600;
      font-size: 2.0rem;
    }

    .top-sect-news-box {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      opacity: 100%;

      /*---- ドットインジケータ ----*/
      .slick-dots {
        position: absolute;
        display: flex !important;
        height: 100%;
        margin: 0 auto;
        right: calc(((100% - var(--wrapperW)) /2));
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1px;

        li {
          width: 3px;
          height: 3px;
          background: #000000;
          overflow: hidden;
          border-radius: 100%;
          transition: 0.3s;
          opacity: 30%;

          & + & {
            margin: 2px 0 0;
          }

          &.slick-active {
            width: 5px;
            height: 5px;
            background: var(--col_MypreBlue, #00467f);
            opacity: 100%;
          }

          button {
            visibility: hidden;
          }
        }
      }

      .topic-item {
        display: flex;
        gap: 12px;
        height: 32px;
        order: 10;
        flex-direction: row-reverse;
        align-items: center;

        &::before {
          content: "";
          display: inline-flex;
          border-radius: 4px;
          height: 20px;
          min-width: 48px;
          font-family: var(--ff-serif);
          font-size: 1.2rem;
          font-weight: 600;
          text-align: center;
          background: transparent;
          justify-content: center;
          align-items: center;
        }

        &.blank {
          margin-top: -2em;
          background-color: transparent;
        }

        &.important {
          margin-bottom: 8px;

          &::before {
            content: "重要";
            font-family: var(--ff-sans_serif);
            color: #ffffff;
            font-size: 1.1rem;
            letter-spacing: 0.1em;
            background: var(--cl-dn, #d9534f);
          }

          a {
            color: var(--cl-dn, #d9534f);
            border-color: var(--cl-dn, #d9534f) !important;
          }
        }

        a {
          display: flex;
          text-decoration: none;
          line-height: 1.3;
          border-bottom: 1px dotted var(--cl-a, #433d37);

          &:hover {
            border-color: var(--col_Gold, #baa66d);
          }

          span {
            font-size: 1.3rem;

            &:nth-of-type(1) {
              width: 7.7em;
            }
          }
        }
      }
    }
  }

  a {
    color: var(--cl-a, #433d37);

    span {
      white-space: nowrap;
    }
  }

  /*---- 一覧ボタン ----*/
  .top-news_more { display: none;
    justify-content: flex-end;
    padding-top: 1em;

    a {
      display: flex;
      align-items: center;
      gap: 0.5em;

      &::before {
        content: "";
        display: block;
        width: 16px;
        height: 16px;
        background: transparent url("/img/usr/collection/more.png") no-repeat 0 0 / cover;
      }

      img {
        width: 16px;
        height: auto;
      }
    }
  }
}
.block-pickup-list-w--item-body:has(.variation-name) {
  .block-pickup-list-w--image {
    .js-enhanced-ecommerce-image {
      figure {
        &::before {
          box-sizing: border-box;
          content: "";
          display: block;
          height: 24px;
          width: 24px;
          border: 1px solid transparent;
          border-bottom: none;
          border-radius: 8px;
          position: absolute;
          top: calc(100% - 32px);
          left: 8px;
          padding: 3px 2px;
          background: #f5f5f633 url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cg%20transform%3D%22translate(-203%20-455)%22%3E%3Crect%20width%3D%2224%22%20height%3D%2224%22%20transform%3D%22translate(203%20455)%22%20fill%3D%22none%22%2F%3E%3Ccircle%20cx%3D%225%22%20cy%3D%225%22%20r%3D%225%22%20transform%3D%22translate(204%20456)%22%20fill%3D%22%23f5b6bd%22%2F%3E%3Ccircle%20cx%3D%225%22%20cy%3D%225%22%20r%3D%225%22%20transform%3D%22translate(204%20468)%22%20fill%3D%22%23b19b7b%22%2F%3E%3Ccircle%20cx%3D%225%22%20cy%3D%225%22%20r%3D%225%22%20transform%3D%22translate(216%20456)%22%20fill%3D%22%2392b4c5%22%2F%3E%3Ccircle%20cx%3D%225%22%20cy%3D%225%22%20r%3D%225%22%20transform%3D%22translate(216%20468)%22%20fill%3D%22%237e8384%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat 50% -1px / 18px;
          background-origin: content-box;
          z-index: 50;
          transition: 0.25s ease-in-out;
        }
        &:hover::before {
          border-radius: 3px;
          height: 25px;
          background-color: transparent;
          z-index: 10005;
          transform: rotate(45deg);
        }
      }
    }
    /*---- クイックビュー ----*/
    .js-goods-quickview-hover {
      position: relative;
    }

    .block-quickview {
      display: block !important;
      position: absolute;
      z-index: 10000;
      overflow: visible;
      width: 280px;
      max-width: 280px;
      height: auto;
      top: calc(100% - 36px) !important;
      left: -3px !important;
      padding: 0 4px 3px;
      background-color: #f5f5f6e0;
      border-radius: 6px;
      border: 1px solid #ffffff;
      border-width: 1px 0 0 1px;
      box-shadow: 0 0 30px #00000022;
      backdrop-filter: blur(10px);

      &::before {
        content: "お好きなデザインをお選びください。";
        margin: -2px 1px -2px;
        display: block;
        width: 100%;
        color: #666666;
        line-height: 36px;
        font-feature-settings: "palt";
        font-weight: 600;
        font-size: 1.1rem;
        text-align: center;
      }

      .block-quickview-line {
        overflow: hidden;
        display: inline;
        word-break: break-all;
        font-size: 0;

        &:first-child {
          .block-quickview-item {
            &:first-child:has(a[href$="-0/"]) {
              display: none;
              opacity: 25%;
            }
          }
        }

        .block-quickview-item {
          box-sizing: border-box;
          display: inline-block;
          width: unset;
          padding: 2px 1px;
          width: 25%;

          a {
            display: block;
            overflow: hidden;

            figure {
              margin: 0 !important;
              padding: 0 !important;
              aspect-ratio: 1 / 1;
              width: 100%;
              height: auto;
              padding: 2px;
              background: 0;

              img {
                object-fit: cover;
                vertical-align: bottom;
              }
            }
          }
        }
      }
    }
  }
}

/*---- MEGA_FOOTER ----*/
footer.pane-footer {
  padding: 40px 0 36px;
  color: var(--col_MypreBlue, #00467f);
  font-size: 1.3rem;
  background: color-mix(in srgb, var(--col_paleGray, #f5f5f6) 45%, transparent);

  .footer-content {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    align-items: flex-end;

    h2 {
      margin: 0 0 16px;
      border-bottom: 1px solid var(--col_MypreBlue, #00467f);
      font-family: var(--ff-sans_serif);
      font-size: 1.5rem;
      font-feature-settings: "palt";
    }

    ul {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    a {
      color: var(--col_MypreBlue, #00467f);
      text-decoration: none;
      line-height: 1;
      font-family: var(--ff-sans_serif);
      transition: 0.3s;

      h1 & {
        display: inline-block;

        p {
          margin: 8px 0 0;
          font-size: 2.0rem;
        }
      }

      &:hover {
        text-decoration: underline;
      }
    }

    .block-footer-corp {
      width: 200px;
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
      gap: 32px;

      .footer-logo {
        margin: 0;
        border: 0;

        a {
          display: block;
          text-decoration: none !important;

          > svg {
            height: 53px;
            fill: #ffffff;
            background: var(--col_MypreBlue, #00467f);
            transition: 0.3s;
          }

          &::after {
            display: none;
          }

          &:hover {
            filter: brightness(110%);
          }

          p {
            display: flex;
            align-items: baseline;
            gap: 4px;
            margin: 4px 0 0;
            font-weight: 600;
            font-size: 1.8rem;
          }
        }
      }
    }

    .block-footer-links {
      display: flex;
      justify-content: center;
      gap: 24px;
      width: 100%;

      .footer-sitemap {
        flex-grow: 1;
        display: flex;
        justify-content: space-between;

        > div {
          width: calc((100% - 32px) /3);

          div + div {
            margin-top: 32px;
          }
        }

        .footer-exlinks {
          ul {
            gap: 16px;

            li {
              &.ig {
                flex-direction: row-reverse;
                justify-content: space-between;
                gap: 4px;
              }

              &.ig {
                a {
                  align-items: center;
                }
              }

              small {
                display: block;
                margin: 2px 0;
                line-height: 1.5;
                font-size: 1.2rem;
              }

              a {
                font-weight: 600;
                font-size: 1.5rem;

                svg rect {
                  fill: var(--col_MypreBlue, #00467f);
                }

                &::after {
                  background-color: var(--col_MypreBlue, #00467f);
                }
              }
            }
          }
        }
      }

      .block-footer-contact {
        width: 100%;
        flex-shrink: 0;
        flex-direction: column;
        justify-content: space-between;

        > div {
          padding: 16px;
          text-align: center;
          background: #ffffff;

          & + & {
            margin-top: 24px;
          }

          h3 {
            margin: 0 0 12px;
            font-family: var(--ff-sans_serif);
            font-weight: 600;
            font-size: 1.4rem;
          }

          a {
            .tel & {
              font-weight: 600;
              font-size: 3rem;
              letter-spacing: 0.05em;
              margin-left: 0.05em;
            }

            .web & {
              width: 100%;
              border-radius: 4px;
              padding: 16px;
              color: #ffffff;
              font-size: 1.6rem;
              background: var(--col_MypreBlue, #00467f);
              text-decoration: none;

              &::after {
                background-color: #ffffff;
              }
            }
          }
        }
      }
    }
  }

  address {
    margin: 64px 0 0;
    text-align: center;
    font-size: 1.4rem;

    a {
      color: var(--col_MypreBlue, #00467f);
      text-decoration: none;

      &:hover {
        text-decoration: underline;
      }
    }
  }
}
.page-cart form[name="form10000002"] .block-cart--order-btn {
  display: block;
}
.page-cart form[name="form10000002"] .block-cart--order-btn-gift {
  display: none;
}
.page-method .block-order-method--spec{
  display: none;
}
.block-topic-details--header-rss {
  display: none;
}
#header-logo img {
    visibility: hidden;
    height: 50px;
    transition: 0.3s;
}
.block-goods-favorite--btn {
  display: none;
  
  .pane-topic-path {
  .page-event:has(.block-event-page--header-img) & {
    display: none;
  }
}

.block-event-page {
  position: relative;
  z-index: 0;

  .block-event-page--header-img {
    margin: 0;
    min-height: 501.5px;

    img {
      display: block;
    }
  }
}

.ctop-lead {
  width: 720px;
  margin: 44px auto 0;
  border: 1px solid #8f8f8f;
  border-width: 0 1px;
  padding: 16px;
  text-align: center;
  word-break: keep-all;
  font-family: unset;
  color: var(--cl-br, #433d37);
}

.block-header-left-btns,
.footer-sitemap {
  display: none !important;
}

.ctop-so-content {
  --cl-br: #666464;
    margin: 24px 0 0;
    position: relative;
    text-align: center;
    font-family: var(--ff-serif);
    z-index: 0;

    h3 {
      margin: 0 0 0 -0.08em;
      padding: 0;
      letter-spacing: 0.08em;
      font-weight: 700;
      font-size: 2.2rem;
      color: #666464;
    }

    .so-reasons {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      margin: 46px 0 0;

      li {
        list-style: none;
        position: relative;
        margin: 0;
        width: calc((100% - 32px) /3);

        &::before {
          content: "";
          display: block;
          margin: 0 auto;
          height: 24px;
          aspect-ratio: 1 / 1;
          padding: 0;
          line-height: 24px;
          font-weight: 700;
          font-size: 2.6rem;
          color: var(--keyCol);
        }
        &:nth-child(1)::before { content: "1" }
        &:nth-child(2)::before { content: "2" }
        &:nth-child(3)::before { content: "3" }

        .so-reason-title {
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 12px;
          margin: 8px auto 0;
          letter-spacing: 0.075em;
          font-weight: 700;
          font-size: 2.2rem;
          color: var(--keyCol);

          &::before,
          &::after {
            content: "";
            display: block;
            position: absolute;
            top: -2px;
            left: 50%;
            height: 28px;
            width: 8px;
            mask-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%206%2021%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M5.5%201.5L1%203.5V17.5L5.5%2019.5V1.5Z%22%20stroke%3D%22%23433D37%22%2F%3E%0A%3C%2Fsvg%3E%0A');
            background-color: var(--keyCol);
          }
          &::before {
            transform: translateX(-34px);
          }
          &::after {
            transform: translateX(29px) rotateY(180deg);
          }
        }

        .so-reason-text {
          display: flex;
          align-items: center;
          justify-content: center;
          margin: 24px 0 0;
          min-height: 6em;
          padding: 0;
          line-height: 1.8;
          letter-spacing: -0.025em;
          font-weight: 600;
          font-size: 1.6rem;
        }

        .so-reason-image {
          margin-top: 32px;

          img {
            max-width: 336px;
            aspect-ratio: 4 / 3;
            object-fit: contain;
          }
        }

        .so-reason-link {
          margin: 8px 0 0;
          p {
            margin-bottom: 4px;
            font-weight: 700;
            font-size: 1.6rem;
            color: var(--keyCol);
          }
          .so-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            margin: 0 auto;
            border-radius: 8px;
            height: 64px;
            width: 300px;
            padding: 0;
            letter-spacing: 0.05em;;
            text-decoration: none;
            font-size: 2.0rem;
            color: #ffffff;
            background-color: var(--keyCol);

            &::after {
              content: "";
              margin: 0;
              height: 24px;
              width: 21px;
              clip-path: polygon(0 0, 100% 50%, 0 100%);
              position: absolute;
              right: 3px;
              mask-image: none;
              background: none;
              background-color: #ffffff;
            }
          }
        }
      }
    }
  }
}

footer.pane-footer {
  & .footer-content {
    .block-footer-links {
      .block-footer-contact {
        width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-content: flex-start;
        gap: 0 24px;
        overflow: hidden;

        h2 {
          text-align: center;
          width: 100%;
          height: 32px;
          flex-grow: 0;
        }

        .tel,
        .web {
          margin: 0 !important;
          flex-grow: 1;
          display: flex;
          flex-direction: column;
          justify-content: center;
          height: calc(100% - 56px);
        }

        .tel {
          flex-grow: 1;
        }
      }
    }
  }
}

/*---- 商品詳細 ----*/
.pane-goods-left-side {
  .block-goods-comment1 {
    order: 5;
    margin-top: 24px;
  }
  .block-goods-comment3 {
    order: 0;
    margin-top: 20px;
  }
}

.pane-topic-path {
  .page-event:has(.block-event-page--header-img) & {
    display: none;
  }
}

.block-event-page {
  position: relative;
  z-index: 0;

  .block-event-page--header-img {
    margin: 0;
    min-height: 501.5px;

    img {
      display: block;
    }
  }
}

.ctop-lead {
  width: 720px;
  margin: 44px auto 0;
  border: 1px solid #8f8f8f;
  border-width: 0 1px;
  padding: 16px;
  text-align: center;
  word-break: keep-all;
  font-family: unset;
  color: var(--cl-br, #433d37);
}

.block-header-left-btns,
.footer-sitemap {
  display: none !important;
}

.ctop-so-content {
  --cl-br: #666464;
  margin: 24px 0 0;
  position: relative;
  text-align: center;
  font-family: var(--ff-serif);
  z-index: 0;

  h3 {
    margin: 0 0 0 -0.08em;
    padding: 0;
    letter-spacing: 0.08em;
    font-weight: 700;
    font-size: 2.2rem;
    color: #666464;
  }

  .so-reasons {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin: 46px 0 0;

    li {
      list-style: none;
      position: relative;
      margin: 0;
      width: calc((100% - 32px) /3);

      &::before {
        content: "";
        display: block;
        margin: 0 auto;
        height: 24px;
        aspect-ratio: 1 / 1;
        padding: 0;
        line-height: 24px;
        font-weight: 700;
        font-size: 2.6rem;
        color: var(--keyCol);
      }
      &:nth-child(1)::before { content: "1" }
      &:nth-child(2)::before { content: "2" }
      &:nth-child(3)::before { content: "3" }

      .so-reason-title {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        margin: 8px auto 0;
        letter-spacing: 0.075em;
        font-weight: 700;
        font-size: 2.2rem;
        color: var(--keyCol);

        &::before,
        &::after {
          content: "";
          display: block;
          position: absolute;
          top: -2px;
          left: 50%;
          height: 28px;
          width: 8px;
          mask-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%206%2021%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M5.5%201.5L1%203.5V17.5L5.5%2019.5V1.5Z%22%20stroke%3D%22%23433D37%22%2F%3E%0A%3C%2Fsvg%3E%0A');
          background-color: var(--keyCol);
        }
        &::before {
          transform: translateX(-34px);
        }
        &::after {
          transform: translateX(29px) rotateY(180deg);
        }
      }

      .so-reason-text {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 24px 0 0;
        min-height: 6em;
        padding: 0;
        line-height: 1.8;
        letter-spacing: -0.025em;
        font-weight: 600;
        font-size: 1.6rem;
      }

      .so-reason-image {
        margin-top: 32px;

        img {
          max-width: 336px;
          aspect-ratio: 4 / 3;
          object-fit: contain;
        }
      }

      .so-reason-link {
        margin: 8px 0 0;
        p {
          margin-bottom: 4px;
          font-weight: 700;
          font-size: 1.6rem;
          color: var(--keyCol);
        }
        .so-btn {
          display: flex;
          align-items: center;
          justify-content: center;
          position: relative;
          margin: 0 auto;
          border-radius: 8px;
          height: 64px;
          width: 300px;
          padding: 0;
          letter-spacing: 0.05em;;
          text-decoration: none;
          font-size: 2.0rem;
          color: #ffffff;
          background-color: var(--keyCol);

          &::after {
            content: "";
            margin: 0;
            height: 24px;
            width: 21px;
            clip-path: polygon(0 0, 100% 50%, 0 100%);
            position: absolute;
            right: 3px;
            mask-image: none;
            background: none;
            background-color: #ffffff;
          }
        }
      }
    }
  }
}

footer.pane-footer {
  & .footer-content {
    .block-footer-links {
      .block-footer-contact {
        width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-content: flex-start;
        gap: 0 24px;
        overflow: hidden;

        h2 {
          text-align: center;
          width: 100%;
          height: 32px;
          flex-grow: 0;
        }

        .tel,
        .web {
          margin: 0 !important;
          flex-grow: 1;
          display: flex;
          flex-direction: column;
          justify-content: center;
          height: calc(100% - 56px);
        }

        .tel {
          flex-grow: 1;
        }
      }
    }
  }
}

/*---- 商品詳細 ----*/
.pane-goods-left-side {
  .block-goods-comment1 {
    order: 5;
    margin-top: 24px;
  }
  .block-goods-comment3 {
    order: 0;
    margin-top: 20px;
  }
}