@charset "UTF-8";

@keyframes fadeIn {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}

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-recent-item--keep-history {
  a {
    font-size: 1.4rem;
    padding-left: 30px;
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: var( --cl-a );

    &::before,
    &::after {
      content: "";
      display: block;
      position: absolute;
      width: 15px;
      height: 1px;
      top: 10px;
      left: 5px;
      background: currentColor;
      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;
}

/*---- 商品詳細画面 ----*/
.pane-goods-left-side {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;

  /*---- 商品画像 ----*/
  .block-src-l {
    display: flex;
    justify-content: flex-end;

    .bx-wrapper {
      width: 600px;
      aspect-ratio: 1 / 1;
      margin-bottom: 5px;
      margin: 0 0 0 auto !important;
      border: none !important;
      background: unset !important;
      box-shadow: 0 0 6px rgb(0 0 0 /.15);
      overflow: hidden;

      .bx-viewport {
        figure {
          text-align: center;
          height: 598px;
          aspect-ratio: 1 / 1;
          background: var( --col_paleGray );
          border: 5px solid #fffffd;

          img {
            margin: 0;
            min-height: 500px;
            aspect-ratio: 1 / 1;
            width: 100%;
            height: unset;
            vertical-align: bottom;
            object-fit: contain;
            background: #fffffd;
          }
        }
      }
    }
  }

  /*---- 商品情報 ----*/
  .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: 72px;
      width: 340px;
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      border: 6px #fffffd double;
      border-radius: 8px;
      color: #fff !important;
      text-decoration: none;
      line-height: 1.4;
      letter-spacing: 0.05em;
      font-size: 1.6rem;
      background: #5f79a9;

      &:hover {
        opacity: 0.9;
      }

      div:has(> &) {
        display: flex;
        gap: 8px;
      }

      span {
        font-size: 1.3rem;
      }

      &::after {
        content: "";
        display: block;
        aspect-ratio: 1 / 1;
        position: absolute;
        top: 4px;
        right: 2px;
        background-color: #fffffd;
        transition: 0.15s;
      }

      & + span {
        justify-content: center;
      }
    }

    div.kakakumeisai {
      padding-bottom: 2rem;
      margin-bottom: 2rem;
      border-bottom: 1px dotted #ccc;

      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: #666;
            padding: 0 16px;
            font-size: 1.3rem;
          }

          a {
            color: var( --col_Gold );
            transition: 0.3s;

            &:hover {
              text-decoration: revert;
            }
            &::after {
              background-color: currentColor;
            }
          }
        }
      }
    }
  }
}

.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 );
    background: #f3c3c3;
    border: 1px solid currentColor;
  }
}

.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%23fffffd%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%23fffffd%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%23fffffd%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-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 {
    background: none;
    padding: 0;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    line-height: 1;
    font-size: 1.4rem;
    color: currentColor;
    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-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;
  }
}

.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 );
        opacity: 1;
      }

      a {
        display: block;
        height: 100%;

        figure {
          border: none;
          padding: 0;
          width: 100%;
          height: 100%;
          display: flex;
          justify-content: center;
          align-items: center;
          background: var( --col_paleGray );

          img {
            opacity: 1;
            width: 100%;
            aspect-ratio: 1 / 1;
            object-fit: contain;
            background: #fffffd;

          }
        }
        &:hover,
        &.active {
          opacity: 0.7;
        }
      }
    }
  }
}

.block-goods-price--on-sales-comment {
  color: #cc3300;
}

.pane-goods-right-side .block-check-list-a--item-body {
  width: auto;
}

/*---- 注文明細拡張 ----*/
.block-goods-sales-detail-append--item {
  .form-label {
    padding: 15px;
    margin-right: 0;
    margin-bottom: 15px;
  }

  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;
    }
  }
}

/*---- バリエーション切り替えボタン ----*/
.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 {
    overflow: hidden;
    width: 100%;
    height: unset;
    aspect-ratio: 1 / 1;

    img {
      width: 100%;
      aspect-ratio: 1 / 1;
      object-fit: scale-down;
      max-height: unset;
      max-width: unset;
    }
  }
}

.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 {
  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 #444 solid;
    border-bottom: 1px #444 solid;
  }
  &::after {
    border-left: 1px #444 solid;
    border-right: 1px #444 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: #fff;
        background: #000;
        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;
}

.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 #999 solid;
  }
}

.block-goods-list--display-style-items {
  padding: 0 0 10px 0;
  margin: 15px 0;
  border-bottom: 1px solid #eee;
  line-height: 2;

  dt {
    display: inline-block;
    font-weight: normal;
  }
}

.block-goods-list--sort-order-items {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  padding: 0 0 10px 0;
  margin: 10px 0;
  border-bottom: 1px solid #00000028;

  dd {
    margin: 0;

    &:has([href*="_sgn/"]),
    &:has([href*="_srd"]) {
      display: none;
    }
  }
}

.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 );
  background: #fffffd;

  & > h3 {
    text-align: center;
    padding: 15px 50px;
    margin: 0;
    position: relative;

    &:hover {
      cursor: pointer;
    }

    &::before,
    &::after {
      content: "";
      display: block;
      position: absolute;
      background: #444;
      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 {
      position: relative;
      display: block;
      width: 100%;
      font-size: 1.6rem;
      font-weight: 600;
      font-family: var( --ff-sans_serif );
      transition: 0.15s;

      h3:hover & {
        opacity: 0.7;
      }

      :has(:checked) &::after {
        content: "";
        display: block;
        position: absolute;
        top: 50%;
        right: 0;
        width: 10px;
        border-radius: 50%;
        transform: translateY(-50%);
        aspect-ratio: 1 / 1;
        background: var( --col_MypreBlue );
      }
    }
  }

  &.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 );
        height: 32px;
        min-width: 64px;
        border-radius: 4px;
        align-items: center;
        color: #fff;
        justify-content: center;
      }
    }
  }
}

#block_of_filter {
  margin: 0;
  padding: 20px 40px 8px;
  border-top: 1px #00000028 solid;

  .block-filter--header {
    margin: 0 0 8px;
    font-family: unset;
    font-size: 1.4rem;
    color: #999;
  }

  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 {
    width: calc((100% - 40px) /5);
    display: flex;
    align-items: center;

    input {
      flex-shrink: 0;
    }
    label {
      display: flex;
      align-items: center;
      gap: 4px;
      line-height: 1;
    }
  }
}

.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 #ccc;
  }
  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 );
}

.block-goods-list-l {
  .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 #ccc;
  }

  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 );
}

.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,
  .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;

  .block-goods-list-d--items {
    & > li {
      margin: 0;
      border-bottom: 1px solid #00000028;
      padding: 40px 0;

      &:first-child {
        border-top: 1px solid #00000028;
      }

      .block-goods-list-d--item-body {
        margin: 0 auto;
        width: unset;
        justify-content: space-between;

        &:has(.block-goods-list-d--image a:hover) a[class$="goods-name"] {
          color: var( --col_Gold ) !important;
          text-decoration: underline;
        }

        a {
          display: block;

          &:hover {
            text-decoration: none !important;
            opacity: 1 !important;
          }
        }
      }

      .block-goods-list-d--image {
        flex-shrink: 0;
        width: 260px;

        figure {
          width: 100%;
          height: unset;
          aspect-ratio: 1 / 1;
          padding: 5px;
          background: #fffffd linear-gradient(var( --col_paleGray ) 0, var( --col_paleGray ));
        }

        a {
          &::after {
            display: none;
          }
        }
      }

      .block-goods-list-d--item-description {
        display: flex;
        padding: 0 0 0 40px;
        width: auto;
        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(#fffffd00, #fffffdff);
        }

        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 );
            font-weight: 600;
            font-size: 2.0rem;
            font-feature-settings: "palt";
            text-decoration: none;

            &:hover {
              color: var( --col_Gold ) !important;
              text-decoration: underline;
            }
          }
        }

        .block-icon {
          order: 35;
          justify-content: end;
          position: relative;
          margin-top: -2.7rem;

          span {
            margin: 0;
          }
        }

        .block-goods-list-d--comment {
          order: 30;
          color: #999;
          flex-grow: 0;
          font-feature-settings: "palt";
        }

        .block-goods-list-d--item-details {
          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-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;

          .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: 6em;
          flex-grow: 1;
          position: relative;
          padding-top: 16px;
          border-top: 1px dotted #00000028;

          &::before,
          &::after {
            background: #fffffd;
            position: absolute;
          }

          &::before {
            content: "...";
            right: 0;
            bottom: 0;
            display: flex;
            justify-content: flex-end;
            align-items: flex-end;
            width: 2rem;
            height: 100%;
            font-size: 1.2rem;
            line-height: 1;
            text-align: right;
            background-color: transparent;
            background-image: linear-gradient(90deg, transparent 0%, var( --col_Background ) 40%);
            z-index: 20;
          }
          &:has(.katarogu):before {
            padding-bottom: calc((1.8rem * 1.5) + 16px);
          }

          .kyacchi {
            margin: 0 0 1.6rem;
            font-family: var( --ff-serif );
            font-weight: 600;
            font-size: 1.8rem;
          }

          a.katarogu {
            position: absolute;
            bottom: 0;
            width: 100%;
            padding-top: 16px;
            text-decoration: underline;
            font-size: 1.8rem;
            font-weight: 600;
            z-index: 10;
            color: var( --col_Gold );
            background: linear-gradient(transparent 0, var( --col_Background ) 10px, var( --col_Background )) !important;

            &::after {
              display: inline-block;
            }

            &:hover {
              opacity: 0.9;
            }

            span {
              display: none;
            }

            b {
              font-size: 1.8rem;
              background: #fffffd;
              text-decoration: underline;

              &:hover {
                color: var( --col_Gold );
              }
            }
          }
        }
      }
    }
  }
}

.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: #f5f5f5;
    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 );
  }
}

.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,
  .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 0;
  padding: 0;
  align-content: stretch;
  justify-content: space-between;

  .page-category & {
    padding: 0 24px;
  }

  li {
    display: inline-flex;
    justify-content: space-between;
    margin: 0;
    width: calc((100% - 36px) /2);
  }
}

.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: 260px;
  margin: 0;
  padding: 0;
  flex-direction: column;

  &:has(a:hover) a {
    color: var( --col_Gold );
    text-decoration: underline;
  }
}

.block-goods-detail-j--image,
.block-pickup-list-w--image,
.block-pickup-list-p--image {
  width: 100%;
  flex-grow: 0;
}

.block-goods-detail-j--goods-image,
.block-pickup-list-w--image,
.block-pickup-list-p--image {
  position: relative;
  width: unset !important;

  figure {
    height: unset;
    width: 100%;
    padding: 5px;
    background: #fffffd linear-gradient(var( --col_paleGray ) 0, var( --col_paleGray ));

    img {
      width: 250px;
      aspect-ratio: 1 / 1;
      background: #fffffd;;
    }
  }
}

.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 );
      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: #999;
    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: #fff !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: 2px 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;
    }

    .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 );
    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: #f5f5f5;
    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: 0.9;
      }
    }
  }
}

.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: #f5f5f5;
    width: 100%;
    height: 100%;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;

    img {
      transition: 0.3s;

      a:hover & {
        opacity: 0.9;
      }
    }
  }
}

.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: #444;
    }
  }

  .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: #444;
    background: no-repeat;

    &::after {
      content: "";
      display: block;
      position: absolute;
      top: 3px;
      right: -5px;
      width: 1px;
      height: 100%;
      transform: rotate(25deg);
      background-color: #444;
    }
  }
}

/*---- 商品一覧画面：サムネイル(閲覧履歴)：block-thumbnail-h ----*/
.block-thumbnail-h {
  display: flex;
  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 );
          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: #fffffd linear-gradient(var( --col_paleGray ) 0, var( --col_paleGray ));

          img {
            display: block;
            width: 100%;
            aspect-ratio: 1 / 1;
            object-fit: contain;
            transition: 0.3s;
            background: #fffffd;
          }
        }
      }

      .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 #ccc;
    margin: 0;
    padding: 17px 0;

    &:first-child {
      border-top: 1px solid #ccc;
    }
  }

  div {
    display: inline;
  }
}

.block-list-s--goods-name,
.block-list-s--price-items div {
  padding-right: 1em;
}

.block-list-s--goods-name a {
  color: var( --cl-a );
}

.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: #f5f5f5;
    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: 0.9;
      }
    }
  }
}

.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 #ccc;
    margin: 0;
    padding: 17px 0;

    &:first-child {
      border-top: 1px solid #ccc;
    }
  }

  dt {
    display: inline-block;
    vertical-align: top;
    width: 40%;
    padding-right: 1em;
  }

  dd {
    display: inline-block;
    vertical-align: top;
  }

  a {
    color: var( --cl-a );
  }
}

/*---- 商品一覧画面：ブランド画面：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: #f5f5f5;
  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: #ccc 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 #ccc;
  }

  a {
    display: block;
    text-decoration: none;
    padding-bottom: 10px;
    transition: 0.3s;

    &:hover {
      opacity: 0.5;
    }
  }
}

.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: #444 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: #eee 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 #888 solid;
    border-right: 1px #888 solid;
    transform: rotate(45deg);
  }
  a::before {
    content: "";
    display: block;
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: #888;
    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 #888 solid;
        border-right: 1px #888 solid;
        transform: rotate(45deg);
      }
      &::before {
        content: "";
        display: block;
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 0;
        height: 1px;
        background: #888;
        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: #eee 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 #ccc 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;
}

/*---- parts ----*/
.mb100 {
  margin-bottom: 100px;
}

.bg_gray_ {
  background-color: #f3f3f3;
}

.txt_center_ {
  text-align: center;
}

.anchor_ {
  margin-top: -70px;
  padding-top: 70px;
}

.page-page .block-page-block--contents {
  display: flex;
  justify-content: center;
}

.page-page .block-page-block--contents-body-img-2column {
  flex: 1;
  margin-right: 10px;
}

.ctop-tglBtn {
  display: block;
  width: 50%;
  height: 48px;
  margin: 0 auto;
  color: var( --col_Gold );
  border: 1px solid var( --col_Gold );
  background: #fffffd;
}

.js-ctop-tgl-content { /*---- ２ページ目以降のコンテンツ省略 ----*/
  position: relative;
  overflow: visible;
  height: auto;
  transition: 0.5s;

  &::after {
      opacity: 0;
  }

  &.is-close {
    height: 64px;
    cursor: pointer;
    overflow: hidden;

    &::before {
      display: block;
      opacity: 1;
    }

    &::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      padding: 6px 0 0 0;
      transition: 0.5s;
      background-color: transparent;
      background: transparent linear-gradient(transparent 0%, var( --col_Background ));
      z-index: 1;
    }

    &::after {
      content: "省略されたコンテンツを表示する";
      opacity: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      color: var( --col_Gold );
      font-weight: 600;
      border: 1px solid var( --col_Gold );
      border-radius: 24px;
      padding: 0 10px;
      width: 300px;
      height: 36px;
      background: var( --col_Background ) url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTYgMTYiIGZpbGw9Im5vbmUiICBzdHJva2U9IiNiYWE2NmQiIHN0cm9rZS13aWR0aD0iMXB4IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBkPSJNNC41IDhIMTEuNSIvPgo8cGF0aCBkPSJNOC4wMDUgNC41MDQ4OEw4LjAwNSAxMS41MDQ5Ii8+Cjwvc3ZnPg==") no-repeat calc(100% - 4px) 50% /28px;
      position: absolute;
      bottom: 5px;
      left: calc(50% - 150px);
      z-index: +2;
    }
  }
}

.block-goods-detail {
  animation: none;
  transition: unset;
}

.pane-contents {
  margin-top: 12px;
}

.block-goods-list--pager {
  .pager {
    margin: 15px 0 20px 0;
    justify-content: center;

    .block-goods-list--pager-bottom {
      margin-top: 20px;
    }
  }

  .pager-total {
    height: 32px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;

    &.is-filtered {
      background: #00000010;
      border-radius: 100px;

      a.btn-filterclr {
        position: absolute;
        right: 12px;
        font-size: 1.2rem;

        &:hover {
          color: var( --col_Gold );
          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 {
      span {
        font-size: 1.8rem;
        font-weight: 600;
      }

      small {
        margin: 0 4px;
        font-size: 1.4rem;
      }
    }
  }
}

/*---- 検索結果 ----*/
:is(.page-search, .page-genre) {
  .pane-contents .container {
    position: relative;
    display: grid;
    grid-template-columns: 880px 270px;
    grid-template-rows: unset;
    justify-content: space-between;
    margin: 30px auto 0;
    width: var( --wrapperW );

    .pane-main {
      grid-column: 1;
      grid-row: 1;
      width: 100%;

      .block-search-goods {
        width: 100%;
      }

      h1 {
        margin: 0;

        a::after {
          display: none;
        }
      }

      h2 {
        font-family: var( --ff-sans_serif );
        font-weight: normal;
      }

      .block-genre-page--header-freespace {
        &::after { display: none; }
      }

      .block-goods-list--sort-order-items {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 8px;

        dd {
          &:has([href*="seq=rd"]),
          &:has([href*="seq=gn"]) {
            display: none;
          }
        }
      }

      .block-search-goods--condition-items {
        margin-top: 96px;
      }

      /*---- 検索フォーム下 - 価格でさがす ----*/
      .block-search-price {
        padding: 64px 0 0;

        .block-search-price--title {
          padding-bottom: 35px;
          margin: 0 0 36px;
          position: relative;
          text-align: center;
          line-height: 1.4;
          letter-spacing: 0.5em;

          span {
          display: block;
          font-size: 2.2rem;
          font-weight: 600;
          line-height: 1.1;
          letter-spacing: 0;
          font-family: var( --ff-serif );

          &::after {
              content: "";
              display: block;
              position: absolute;
              bottom: 0;
              left: 50%;
              width: 2em;
              margin-left: -1em;
              height: 2px;
              background: var( --cl-heading );
            }
          }
        }

        .block-search-price--list {
          display: flex;
          flex-wrap: wrap;
          justify-content: center;
          gap: 9px 8px;
          margin: 0 auto;
          

          li {
            min-width: calc((100% - 48px) /7);

            a {
              display: flex;
              flex-wrap: nowrap;
              align-items: center;
              justify-content: center;
              height: 56px;
              padding: 0 !important;
              letter-spacing: -0.05em;
              font-feature-settings: "palt";
              font-size: 1.4rem;
              transition: 0.3s;
              background: var( --col_paleGray );

              &:hover {
                text-decoration: none;
                opacity: 0.9;
              }

              span {
                display: inline !important;
                margin: 0.3rem 2px 0;
                font-size: 1.2rem;
              }
            }
          }
        }
      }
    }

    .pane-right-menu {
      grid-column: 2;
      grid-row: 1;
      width: 100%;
      height: 100vh;
      position: sticky;
      top: 20px;
      scrollbar-color: red;
      scrollbar-width: thin;
      overflow-y: scroll;
      transition: 0.3s;

      .block-header.DownMove ~ .pane-contents & {
        top: 120px;
      }

      #block_of_filter {
        padding: 0;
        border: 0;

        .block-filter--header {
          position: sticky;
          top: 0;
          display: block;
          margin: 0 0 12px;
          padding: 0 0 8px;
          line-height: 1;
          font-family: var( --ff-serif );
          font-size: 1.8rem;
          font-weight: 600;
          color: var( --cl-br );
          background: linear-gradient(#fffffdff calc(100% - 4px), #fffffd00 100%);
          z-index: 50;
        }

        form > div {
          margin-bottom: 32px;

          & > div {
            display: block;

            & > div {
              flex-direction: column;
              margin-left: 16px;

              .block-filter-option-items {
                width: unset;
                display: inline-flex;
              }

            }

            h3 {
              display: block;
              width: 100%;
              margin: 0 0 12px;
              padding: 0 0 4px;
              color: var( --cl-heading );
              border-bottom: 1px solid #00000028;
            }
          }
        }

        & ~ #block_of_itemhistory {
          width: 100%;
          padding: 16px 24px;
          background: color-mix(in srgb, var( --col_paleGray ) 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: #fffffd;
                }
                dd {
                  margin-top: 8px;
                }
              }
            }
          }
        }
      }
    }
  }

  /*---- 関連シリーズリンク ----*/
  .ctop-relcat-links {
    order: 10;
    margin: 56px 0 0;
    h2 {
      line-height: 1.5;
      letter-spacing: 0.1em;
      font-family: var( --ff-serif ) !important;
      font-weight: 600 !important;
      font-size: 2.2rem;
    }

    ul {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 24px;

      li {
        position: relative;
        text-align: center;
        max-width: calc((100% - 72px) /4);

        a {
          display: block;

          img {
            box-sizing: content-box;
            width: 100%;
            aspect-ratio: 2.26 / 1;
            object-fit: cover;
            object-position: 0 0;
          }
        }
      }
    }
  }
}

:is(.page-search) .pane-left-menu .page-search-reccomend {
  margin-top: 20px;
}

/*---- ニュース（バー状態） ----*/
.top-sect-news:not(.is-open) {
  position: absolute;
  padding: 0;
  background: transparent;
  z-index: 100;
  transition: 0.3s;

  &:has(.slick-initialized) {
    opacity: 1;
  }

  .inner {
    display: block;
    position: relative;
    height: 100%;
    width: 100cqw;
    margin: 0 auto;
    padding: 0 calc((100cqw - 1200) /2);
    opacity: 1; 

    /*---- 開閉ボタン ----*/
    .top-news-open {
      position: absolute;
      display: flex;
      left: calc((100cqw - var( --wrapperW )) /2);
      bottom: -28px;
      height: 28px;
      border-radius: 4px 4px 0 0;
      transform: translateY(-100%);
      padding: 0 12px 0;
      background: #fffcef;
      flex-wrap: wrap;
      cursor: pointer;
      clip-path: polygon(-5px -5px, calc(100% + 5px) -5px, calc(100% + 5px) 100%, -5px 100%);
      background: #fffffd;
      z-index: 90;

      &:hover {
        box-shadow: 0 0 5px rgb(0 0 0 /.1);
      }

      &::after {
        bottom: 0;
        background: linear-gradient(#00000000, #00000010);
      }

      label {
        display: flex;
        align-items: center;
        line-height: 1;
        padding-right: 0;
        font-size: 1.2rem !important;
        cursor: pointer;

        &:hover {
          color: var( --col_Gold ) !important;
        }

        &::before,
        &::after {
          content: "";
          display: block;
          position: absolute;
          width: 10px;
          height: 2px;
          top: calc(50% - 1px);
          right: 8px;
          margin-top: -1px;
          background: currentColor;
          transition: 0.15s;
          z-index: 1;
        }
        &::after {
          transform: rotate(90deg);
          transition: 0.15s;
        }
        &:has(:checked)::after {
          background: currentColor;
        }

        input {
          width: 14px;
          height: 14px;
          margin: 0;
          appearance: none;
          -webkit-appearance: none;
          background: transparent;
          border: 0;

          &::before,
          &::after {
            display: none;
          }
        }
      }
    }

    /*---- お知らせ見出し ----*/
    .top-sect-title {
      display: none;
    }

    /*---- ドットインジケータ ----*/
    .splide__pagination {
      position: absolute;
      height: 100%;
      width: 8px;
      flex-direction: column;
      margin: 0 auto;
      top: 0;
      right: calc((100cqw - var( --wrapperW )) /2);
      justify-content: center;
      align-items: center;
      gap: 2px;

      li {
        button {
          display: block grid;
          place-items: center;
          width: 4px;
          aspect-ratio: 1 / 1;
          padding: 0;
          border: 0;
          border-radius: 100%;
          background: #dedede;
          overflow: hidden;
          transition: 0.3s;

          &.is-active {
            width: 5px;
            background: var( --col_MypreBlue );
          }
        }
      }
    }

    .splide#top-news-slider {

      .splide__track {
        height: 32px;
      }

      .splide__list.top-sect-news-box {

        .splide__slide {
          display: flex;
          align-items: center;
          justify-content: center;
          text-align: center;
          line-height: 1;
          gap: 8px;
          background: #fffcef;

          /*---- 1行目の空白 ----*/
          &.blank {
            display: block;
            background: transparent;

            &::before {
              display: none;
            }
          }

          /*---- 重要 ----*/
          &.important {
            background-color: #f3c3c3;
            margin-bottom: 0;
          }
        }        
      }

      a {
        font-size: 1.4rem;
        border-bottom: 1px solid transparent;
        transition: 0.3s;
      }
    }
  }
}

.top-sect-news:is(.is-open) {
  order: -15;
  display: flex;
  position: relative;
  height: auto;
  align-items: center;
  background: #fffcef;
  z-index: 100;
  opacity: 1;

  &::after {
    position: absolute;
    content: "";
    height: 5px;
    width: 100%;
    bottom: 0;
    left: 0;
    background: linear-gradient(#00000000, #0000000c);
    opacity: 1;
  }

  .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;

    /*---- 開閉ボタン ----*/
    .top-news-open {
      position: absolute;
      display: flex;
      left: calc((100cqw - var( --wrapperW )) /2);
      top: 0;
      height: 28px;
      border-radius: 4px 4px 0 0;
      transform: translateY(-100%);
      padding: 0 12px 0;
      background: #fffcef;
      z-index: 90;
      flex-wrap: wrap;
      cursor: pointer;
      clip-path: polygon(-5px -5px, calc(100% + 5px) -5px, calc(100% + 5px) 100%, -5px 100%);
      transition: 0.15s;

      &:hover {
        box-shadow: 0 0 5px rgb(0 0 0 /.1);
      }

      label {
        display: flex;
        align-items: center;
        line-height: 1;
        padding-right: 0;
        font-size: 1.2rem !important;
        cursor: pointer;

        &:hover {
          color: var( --col_Gold ) !important;
        }

        &::before,
        &::after {
          content: "";
          display: block;
          position: absolute;
          width: 10px;
          height: 2px;
          top: calc(50% - 1px);
          right: 8px;
          margin-top: -1px;
          background: currentColor;
          transition: 0.15s;
          z-index: 1;
        }
        &::after {
          transform: rotate(180deg);
          transition: 0.15s;
        }
        &:has(:checked)::after {
          background: currentColor;
        }
      }

      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;

      .splide__slide {
        display: flex;
        gap: 12px;
        height: 32px;
        order: 10;
        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;
        }

        /*---- 通常 ----*/
        &::before {
          display: block grid;
          place-items: center;
          border-radius: 4px;
          padding: 0;
          font-weight: 600;
          font-size: 1.1rem;
          color: #666;
        }

        &.important {
          margin-bottom: 8px;

          &::before {
            content: "重要";
            font-family: var( --ff-sans_serif );
            color: #fff;
            letter-spacing: 0.1em;
            background: var( --cl-dn );
          }

          a {
            color: var( --cl-dn );
            border-color: var( --cl-dn ) !important;
          }
        }

        a {
          display: flex;
          text-decoration: none;
          line-height: 1.3;
          border-bottom: 1px dotted var( --cl-a );
          transition: 0.3s;

          &:hover {
            border-color: var( --col_Gold );
          }

          span {
            font-size: 1.3rem;

            &:nth-of-type(1) {
              width: 7.7em;
            }
          }
        }
      }
    }
  }

  a {
    color: var( --cl-a );

    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: #f5f5f533 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: #f5f5f5e0;
      border-radius: 6px;
      border: 1px solid #fffffd;
      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: #666;
        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: 0.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: 32px 0 36px;
  font-family: var( --ff-sans_serif );
  color: var( --col_MypreBlue );
  font-size: 1.3rem;
  background: color-mix(in srgb, var( --col_paleGray ) 45%, transparent);

  .container {
    width: calc(100% - 80px);
    min-width: var( --wrapperW );
  }

  /*---- ページトップに戻る ----*/
  .block-page-top {
    display: none;
    position: fixed;
    inset: auto 4px 4px auto;
    height: 48px;
    aspect-ratio: 1 / 1;
    border-radius: 4px;
    background-color: rgb(0 0 0 /.4);
    backdrop-filter: blur(6px);
    overflow: hidden;

    a {
      display: block;
      height: 100%;
      width: 100%;
      mask: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgc3Ryb2tlPSJibGFjayIgc3Ryb2tlLXdpZHRoPSIwLjVweCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBkPSJNMTEuNSAxMi4zODgyTDggOC44ODgxOEw0LjUgMTIuMzg4MiIvPgo8cGF0aCBkPSJNNC41IDUuNUwxMS41IDUuNSIvPgo8cGF0aCBkPSJNNC41IDMuNUwxMS41IDMuNSIvPgo8L3N2Zz4=') no-repeat 50% 50% /40px;
      background-color: #fff;
    }
  }

  .footer-content {
    --colSize: calc((100% - (24px * 4)) /5);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
    align-items: stretch;

    ul {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    a {
      color: currentColor;
      word-break: auto-phrase;
      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 {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin: 0 auto;
      width: 100%;
      max-width: var( --wrapperW );
      padding: 10px 16px;
      background: #fffffd;

      .footer-corp-logo {
        flex-shrink: 0;
        margin: 0;
        border: 0;
        width: 204px;

        a {
          display: block;
          height: 64px;
          text-decoration: none !important;

          > svg {
            fill: #fff;
            background: currentColor;
            transition: 0.3s;
          }

          &::after {
            display: none;
          }

          &:hover {
            filter: brightness(110%);
          }
        }
      }

      .footer-corp-statement {
        display: block;
        margin: 0;
        line-height: 1.9;
        padding-right: 16px;
        font-feature-settings: "palt";
        font-size: 1.3rem;
      }

      .footer-corp-links {
        flex-shrink: 0;
        flex-grow: 0;
        width: 204px;

        .footer-corp-links--name {
          align-items: baseline;
          gap: 4px;
          margin: 0;
          font-feature-settings: "palt";
          font-weight: 600;
          font-size: 1.8rem;

          & span {
            font-size: 1.4rem;
          }
        }
        
        .footer-corp-links--list {
          margin: 8px 0 4px;
          gap: 8px;

          li {
            line-height: 1;
            a {
              font-size: 1.2rem;
            }
          }
        }
      }
    }

    .footer-sub {
      display: flex;
      gap: 24px;
      min-width: var( --wrapperW );

      [class^="footer-sub-"] {
        .footer-sub > & {
          display: flex;
          flex-shrink: 0;
          flex-direction: column;
          width: var( --colSize );
        }
        
        & & + & {
          margin-top: 32px;
        }
      }

      h2 {
        margin: 0 0 16px;
        border-bottom: 1px solid currentColor;
        padding: 0 0 4px;
        line-height: 1.5;
        font-family: var( --ff-sans_serif );
        font-size: 1.5rem;
        font-feature-settings: "palt";

        span {
          display: inline-block;
          font-size: revert;
        }
      }

      .footer-sub-prices {
        ul {
          gap: 6px;
        }
      }

      .footer-sub-exlinks {
        ul {
          li {
            &.ig {
              flex-direction: row-reverse;
              justify-content: space-between;
              gap: 4px;

              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;
              display: flex;

              svg rect {
                fill: var( --col_MypreBlue );
              }

              &::after {
                background: var( --col_MypreBlue );
              }
            }
          }
        }
      }

      .footer-sub-contacts {
        flex-shrink: 0;
        flex-direction: column;

        > div {
          padding: 16px;
          text-align: center;
          background: #fffffd;

          & + & {
            margin-top: 24px;
          }

          h3 {
            margin: 0 0 12px;
            line-height: 1.5;
            font-family: var( --ff-sans_serif );
            font-weight: 600;
            font-size: 1.4rem;

            span {
              display: inline-block;
              font-size: revert;
            }
          }

          &.tel {
            padding: 16px 10px;

            a {
              font-weight: 600;
              font-size: 2.6rem;
              letter-spacing: 0.05em;
              margin-left: 0.05em;
            }
          }

          &.web {
            a {
              display: block;
              width: 100%;
              border-radius: 4px;
              padding: 16px 0;
              color: #fffffd;
              font-size: 1.6rem;
              letter-spacing: -0.025em;
              background: var( --col_MypreBlue );
              text-decoration: none;

              &::after {
                background-color: currentColor;
              }
            }
          }
        }
      }
    }
  }

  address {
    margin: 64px 0 0;
    text-align: center;
    font-size: 1.4rem;

    a {
      color: var( --col_MypreBlue );
      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;
}