﻿@charset "UTF-8";

@media screen and (max-width: 1100px) {
  .pc-only {
    display: none;
  }
}

/* ----ヘッダー---- */

.pane-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 53px;
  border-bottom: 1px solid #ededed;
  background: #fff;
  z-index: 999;

  .container {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
}

.pane-order-header {
  display: block;
  width: 100%;
  height: 53px;
  border-bottom: 1px solid #ededed;

  .container {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding-top: 4px;
  }
}

.block-header-info-frame {
  background: #f8e5de;
}

.block-header-info {
  width: 100%;
  padding: 9px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}

.block-header-logo {
  margin: 0;
  padding: 12px 0 8px;

  a {
    display: block;
  }

  img {
    display: block;
    height: auto;
  }
}

.block-header-nav-sb,
.block-header-nav {
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  gap: 20px;
  height: 100%;
}

.block-header-nav {
  gap: 16px;
}

.block-header-nav-sb {
  left: 20px;

  #header_menu {
    position: relative;
    width: 24px;
    height: 20px;
    text-indent: -999999px;
    cursor: pointer;

    &::before,
    &::after {
      content: "";
      display: block;
      position: absolute;
      left: 0;
      width: 100%;
      height: 2px;
      background-color: var(--cl-pgr);
    }

    &::before {
      top: 0;
    }

    &::after {
      bottom: 0;
    }

    span {
      display: block;
      position: absolute;
      top: 50%;
      width: 100%;
      height: 2px;
      margin-top: -1px;
      background-color: var(--cl-pgr);
    }
  }

  #header_search {
    width: 28px;
    height: 28px;
    background-image: url(../../img/usr/common/sp/header_search.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    text-indent: -999999px;
    cursor: pointer;
  }
}

.block-header-nav {
  right: 20px;

  > li {
    a {
      display: block;
      position: relative;
      background-position: center;
      background-repeat: no-repeat;
      background-size: contain;
      text-indent: -999999px;
    }

    &.item-user {
      a {
        width: 27px;
        height: 27px;
        background-image: url(../../img/usr/common/sp/header_user.png);
      }
    }

    &.item-cart {
      a {
        width: 32px;
        height: 30px;
        background-image: url(../../img/usr/common/sp/header_cart.png);

        .block-headernav--cart-count {
          display: none;
          position: absolute;
          top: -10px;
          right: -8px;
          width: 18px;
          height: 18px;
          border-radius: 18px;
          background-color: #f8af49;
          color: #ffffff;
          font-size: 1rem;
          font-weight: 700;
          text-align: center;
          text-indent: 0;
          line-height: 18px;
          letter-spacing: 0;
        }
      }
    }
  }
}

.block-sp-menu {
  position: relative;
  z-index: 9999;

  .block-sp-menu-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background-color: rgba(51, 51, 51, 0.6);
    opacity: 0;
    visibility: hidden;
  }

  .block-sp-menu-body {
    position: fixed;
    top: 0;
    left: -340px;
    width: 300px;
    height: 100vh;
    height: 100dvh;
    background-color: #ffffff;
    transition: left 0.3s;
  }

  &.is-open {
    .block-sp-menu-bg {
      opacity: 1;
      visibility: visible;
    }

    .block-sp-menu-body {
      left: 0;
    }
  }
}

.block-search_box {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  z-index: 9999;

  .block-search_box-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(51, 51, 51, 0.6);
  }

  .block-search_box-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 100%;
  }

  .block-search_box-body {
    position: relative;
    width: calc(100vw - 32px);
    max-height: calc(100vh - 32px);
    max-height: calc(100dvh - 32px);
    padding: 20px 16px;
    border: 2px solid #ededed;
    background-color: #ffffff;
  }
}

.block-search-form {
  display: flex;
  width: 100%;

  .block-search--keyword {
    width: calc(100% - 48px);
    height: 48px;
    border: 2px solid var(--cl-pgr);
    border-right: none;
    background-color: #ffffff;
    padding: 0 12px;
    font-size: 14px;

    &::placeholder {
      color: var(--cl-lgy);
    }
  }

  .block-search--keyword:focus {
    outline: none;
    border: 2px solid var(--cl-pgr);
    border-right: none;
  }

  .block-search--submit {
    width: 48px;
    height: 48px;
    border: none;
    background-color: var(--cl-pgr);
    background-image: url(../../img/usr/common/sp/searchbox_search.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 24px;
    cursor: pointer;
  }
}

.pane-order-header {
  display: block;
  width: 100%;
  height: 53px;
  border-bottom: 1px solid #ededed;

  .container {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding-top: 4px;
  }
}

.block-sp-menu-close_btn {
  padding: 16px 20px 20px;

  > span {
    display: block;
    position: relative;
    width: 21px;
    height: 21px;
    cursor: pointer;

    &::before,
    &::after {
      content: "";
      display: block;
      position: absolute;
      top: 50%;
      left: 50%;
      width: 27px;
      height: 2px;
      margin: -1px 0 0 -13px;
      background-color: var(--cl-bk);
    }

    &::before {
      transform: rotate(45deg);
    }

    &::after {
      transform: rotate(-45deg);
    }
  }
}

.block-sp-menu-user {
  border-bottom: 1px solid var(--cl-gr);

  a {
    display: flex;
    align-items: center;
    position: relative;
    padding: 20px 40px 20px 20px;
    color: var(--cl-gr);
    font-size: 16px;
    font-weight: 700;

    &::after {
      content: "";
      display: block;
      position: absolute;
      top: 50%;
      right: 20px;
      width: 6px;
      height: 8px;
      margin-top: -4px;
      background-color: var(--cl-gr);
      clip-path: polygon(6px 50%, 0% 0%, 0% 8px);
    }
  }
}

.block-sp-menu-nav {
  overflow-y: auto;
  max-height: calc(100% - 16px - 21px - 40px - 26px - 20px - 20px - 26px - 8px - 16px);

  .list-ttl {
    padding: 20px 20px 4px 20px;
    font-size: 14px;
    font-weight: 700;
  }

  .layer-2nd-item {
    border-bottom: 1px solid var(--cl-pgr);

    a {
      display: block;
      position: relative;
      padding: 16px 40px 16px 20px;
      color: var(--cl-gy);
      font-size: 12px;

      &::after {
        content: "";
        display: block;
        position: absolute;
        top: 50%;
        right: 20px;
        width: 6px;
        height: 8px;
        margin-top: -4px;
        background-color: var(--cl-pgr);
        clip-path: polygon(6px 50%, 0% 0%, 0% 8px);
      }
    }
  }
}

.block-sp-menu-icon-nav {
  margin-top: 20px;
  padding: 0 20px 40px;

  .list-items {
    display: flex;
    justify-content: center;
    gap: 20px;

    .list-item {
      a {
        display: block;
        min-width: 26px;
        padding-top: 34px;
        background-position: center top;
        background-repeat: no-repeat;
        background-size: 26px;
        color: var(--cl-gy);
        font-size: 10px;
        text-align: center;

        &.icon-guide {
          background-image: url(../../img/usr/common/sp/footer_guide.png);
        }

        &.icon-qa {
          background-image: url(../../img/usr/common/sp/footer_qa.png);
        }

        &.icon-contact {
          background-image: url(../../img/usr/common/sp/footer_contact.png);
          background-size: 27px;
        }
      }
    }
  }
}

.block-search_box-body {
  .item-close_btn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 18px;
    height: 18px;
    cursor: pointer;

    &::before,
    &::after {
      content: "";
      display: block;
      position: absolute;
      top: 50%;
      left: 50%;
      width: 23px;
      height: 2px;
      margin: -1px 0 0 -13px;
      background-color: var(--cl-bk);
    }

    &::before {
      transform: rotate(45deg);
    }

    &::after {
      transform: rotate(-45deg);
    }
  }

  .item-ttl {
    color: var(--cl-pgr);
    font-size: 16px;
    font-weight: 700;
    text-align: center;
  }

  .item-content {
    margin-top: 16px;
    padding: 40px 16px;
    border: 1px solid var(--cl-pgr);
    border-radius: 5px;
    background-color: var(--cl-lpgr);

    .list-item {
      & + .list-item {
        margin-top: 40px;
      }

      dt {
        color: var(--cl-gy);
        font-size: 14px;
        font-weight: 700;
      }

      dd {
        margin-top: 12px;

        .list-keyword {
          display: flex;
          flex-wrap: wrap;
          gap: 8px 4px;

          a {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 28px;
            padding: 0 11px;
            border: 1px solid var(--cl-pgr);
            background-color: #ffffff;
            color: var(--cl-pgr);
            font-size: 12px;
            line-height: 1;
          }
        }

        .list-btn {
          .btn {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            width: 100%;
            height: 48px;
            background-color: var(--cl-pgr);
            color: #ffffff;
            font-size: 14px;
            font-weight: 700;
            line-height: 1;

            &::before {
              content: "";
              display: inline-block;
              position: relative;
              width: 20px;
              height: 22px;
              margin-right: 13px;
              background-image: url(../../img/usr/common/sp/searchbox_ttl.png);
              background-position: center;
              background-repeat: no-repeat;
              background-size: contain;
            }
          }
        }
      }
    }
  }
}

/* ----フッター---- */

.pane-order-footer {
  border-top: 1px solid #b9d5dc;
}

.block-footer-icon-nav {
  margin-top: 20px;

  .list-item {
    border-bottom: 1px solid var(--cl-pgr);

    a {
      display: block;
      position: relative;
      padding: 20px 38px 16px 58px;

      .list-ttl {
        font-size: 12px;
        font-weight: 700;
      }

      .list-comment {
        margin-top: 12px;
        color: var(--cl-gy);
        font-size: 10px;
      }

      &::before {
        content: "";
        display: block;
        position: absolute;
        top: 25px;
        left: 20px;
        width: 26px;
        height: 26px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
      }

      &::after {
        content: "";
        display: block;
        position: absolute;
        top: 50%;
        right: 20px;
        width: 6px;
        height: 8px;
        margin-top: -4px;
        background-color: var(--cl-pgr);
        clip-path: polygon(6px 50%, 0% 0%, 0% 8px);
      }

      &.icon-guide {
        &::before {
          background-image: url(../../img/usr/common/sp/footer_guide.png);
        }
      }

      &.icon-qa {
        &::before {
          background-image: url(../../img/usr/common/sp/footer_qa.png);
        }
      }

      &.icon-contact {
        &::before {
          width: 27px;
          height: 27px;
          background-image: url(../../img/usr/common/sp/footer_contact.png);
        }
      }
    }
  }
}

.block-footer-txt-nav {
  li {
    border-bottom: 1px solid var(--cl-pgr);

    a {
      display: block;
      position: relative;
      padding: 16px 38px 16px 20px;
      font-size: 12px;

      &::after {
        content: "";
        display: block;
        position: absolute;
        top: 50%;
        right: 20px;
        width: 6px;
        height: 8px;
        margin-top: -4px;
        background-color: var(--cl-pgr);
        clip-path: polygon(6px 50%, 0% 0%, 0% 8px);
      }
    }
  }
}

.block-footer-bot {
  padding: 20px;
}

.block-footer-bot-nav {
  display: flex;
  align-items: center;
  justify-content: center;

  li {
    padding: 0 8px;
    font-size: 10px;
  }

  li:not(:first-child) {
    position: relative;

    &::before {
      content: "｜";
      position: absolute;
      top: 0;
      left: -0.5em;
      color: var(--cl-pgr);
    }
  }
}

.block-footer-sns {
  margin-top: 20px;

  a {
    display: block;
    width: 24px;
    height: 24px;
    margin: 0 auto;
    background-image: url(../../img/usr/common/sp/footer_sns_x.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    text-indent: -999999px;
  }
}

.block-footer-copyright {
  margin-top: 20px;
  color: var(--cl-gy);
  font-size: 10px;
  font-weight: 700;
  text-align: center;
}

/* ----トップページ本文---- */
#top-slider-warp {
  width: 100%;
}

#top-slider-warp li img {
  vertical-align: top;
  width: 100vw;
  aspect-ratio: 3 / 2;
}

#top-slider-warp .swiper-pagination-bullets {
  position: absolute;
  bottom: 12px;
  left: 50%;
  display: flex;
  width: auto;
  padding: 0;
  transform: translateX(-50%);
}

#top-slider-warp span.swiper-pagination-bullet {
  display: block;
  width: 52px;
  height: 7px;
  padding: 0;
  border: 2px solid transparent;
  font-size: 0;
  background: none;
}

#top-slider-warp span.swiper-pagination-bullet::before {
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
  content: "";
}

.swiper-slide-active.swiper-slide-lazy {
  height: auto;
}

.swiper-slide-lazy {
  height: 0;
}

/* ----トップページ---- */
.block-top-title {
  margin: 0 0 24px;
  padding: 40px 0 0;
  border: 0;
  text-align: center;
  font-family: "Josefin Sans", "Noto Sans JP", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.333;
  color: #000;
  background: none;
}

.block-top-title span {
  display: block;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 10px;
  font-weight: bold;
  line-height: 1.5;
}

.block-top-more a {
  display: block;
  width: 68vw;
  margin: 0 auto;
  padding: 10px 5px;
  border: 1px solid #707070;
  text-align: center;
  font-size: 14px;
  background: #fff;
}

.block-top-topic--body {
  padding: 0 0 40px;
  background: #f5f5f5;
}

.block-top-topic--header {
  margin: 0 0 24px;
  padding: 40px 0 0;
  border: 0;
  text-align: center;
  font-family: "Josefin Sans", "Noto Sans JP", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.333;
  color: #000;
  background: none;
}

.block-top-topic--header span {
  display: block;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 10px;
  font-weight: bold;
  line-height: 1.5;
}

ul.block-topic--items {
  margin: 0 15px 24px;
}

ul.block-topic--items > li {
  padding: 12px 0;
  border-bottom: 1px solid #dedede;
}

.page-top ul.block-topic--items > li .block-icon-image--table-cell {
  display: block;
}

.page-top ul.block-topic--items > li dt,
.page-brandtop ul.block-topic--items > li dt,
.page-category ul.block-topic--items > li dt {
  width: 100%;
  font-size: 12px;
  margin: 0 0 8px;
}

.page-top ul.block-topic--items > li dd,
.page-brandtop ul.block-topic--items > li dd,
.page-category ul.block-topic--items > li dd {
  width: 100%;
  display: flex;
}

ul.block-topic--items > li dd .block-top-topic--icon-image,
ul.block-topic--items > li dd .block-top-topic--icon-comment {
  margin-right: 8px;
}

ul.block-topic--items > li dd .block-top-topic--icon-image img {
  width: auto;
  max-width: none;
  height: 100%;
}

.block-icon-image--table-cell-angle-right {
  width: 20px;
  padding-left: 0;
}

.block-top-topic--next-page {
  padding: 0;
}

.block-top-topic--next-page a {
  display: block;
  width: 68vw;
  margin: 0 auto;
  padding: 10px 5px;
  border: 1px solid #707070;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  background: #fff;
}

.block-top-event {
  padding: 0 0 40px;
}

.block-top-event--header {
  margin: 0 0 24px;
  padding: 40px 0 0;
  border: 0;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.333;
  color: #000;
  background: none;
}

/* ----トップページ予備テンプレート1---- */
.block-top-campaign {
  padding: 0 0 40px;
  position: relative;
  background: #f8e5de;
}

.block-top-campaign .block-campaign-banner {
  padding: 0 0 40px;
  position: relative;
}

.block-top-campaign .swiper-button-prev,
.block-top-campaign .swiper-button-next {
  --swiper-navigation-color: #111;
}

.block-top-campaign .swiper-button-prev {
  justify-content: start;
}

.block-top-campaign .swiper-button-next {
  justify-content: end;
}

.block-top-campaign .swiper-button-prev svg,
.block-top-campaign .swiper-button-next svg {
  width: 14px;
}

.block-campaign-banner .block-campaign-banner--list-container {
  margin: 0 45px;
}

.block-top-campaign .block-campaign-banner .slick-slider img {
  width: 100%;
  aspect-ratio: 1;
}

.block-top-campaign .block-campaign-banner .block-campaign-banner--title {
  margin-top: 16px;
}

/* ----トップページ予備テンプレート2---- */
.block-top-separate-banner--list img {
  width: 100%;
}

.block-top-instagram .block-top-title img {
  display: block;
  width: 100%;
  margin: 0 auto;
}

.block-top-instagram {
  padding: 0 0 40px;
}

.block-top-uservoice {
  padding: 0 0 40px;
  background: #f5f5f5;
}

/* ----ブランド画面---- */
.page-brandlist .block-topic-path {
  margin-top: 0;
}
.block-brand-list--item-img img {
  width: 100%;
  height: auto;
}
.block-brand-list--item-name {
  padding: 25px 20px 12px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
}
.block-brand-list--item-comment {
  padding: 0 20px 60px;
}
.block-brand-detail--image img {
  width: 100%;
  height: auto;
}

/* ----商品一覧---- */

.block-genre-page--goods,
.block-category-list--goods,
.block-event-page--goods {
  margin-top: 40px;
}

.block-genre-page--header,
.block-search-goods--header,
.block-category-list--header,
.block-event-page--header {
  margin: 40px 0 0;
  padding: 0 20px;
  font-size: 16px;
  font-weight: 700;
}

.block-goods-list--stock-info,
.block-goods-list--sort-order-items {
  display: none;
}

.block-goods-list--params {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0 20px;

  .block-goods-list--stock-info,
  .block-goods-list--sort-order-items {
    display: block;
  }
}

.block-filter--header-label {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 136px;
  height: 28px;
  margin: 0;
  padding: 0;
  border: none;
  background-color: var(--cl-pgr);
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;

  &::before,
  &::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }

  &::before {
    left: 7px;
    width: 20px;
    height: 16px;
    margin-top: -8px;
    background-image: url(../../img/usr/common/sp/filter_icon.png);
  }

  &::after {
    right: 6px;
    width: 18px;
    height: 18px;
    margin-top: -9px;
    background-image: url(../../img/usr/common/sp/filter_plus.png);
  }
}

.block-search-page--goods:has(> .alert) .block-goods-list--stock-info {
  display: none;
}

.block-goods-list--stock-info {
  margin-left: 16px;

  &:first-child {
    margin-left: 0;
  }

  label:has(input[type="checkbox"]) {
    display: flex;
    align-items: center;
    position: relative;
    height: 20px;
    padding-left: 47px;
    font-size: 12px;
    line-height: 1;
    cursor: pointer;

    input[type="checkbox"] {
      display: none;
    }

    &::before {
      content: "";
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: 43px;
      height: 20px;
      border: 2px solid #ededed;
      border-radius: 20px;
      background-color: #ffffff;
    }

    &::after {
      content: "";
      display: block;
      position: absolute;
      top: 2px;
      left: 25px;
      width: 16px;
      height: 16px;
      border-radius: 16px;
      background-color: var(--cl-lgy);
      background-image: none;
      opacity: 1;
      transition: left 0.03s;
    }

    &:has(input[type="checkbox"]:checked) {
      &::before {
        background-color: #ffffff;
      }

      &::after {
        left: 2px;
        background-color: var(--cl-pgr);
      }
    }
  }
}

.block-filter--modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  z-index: 999;
}

.block-filter-modal-wapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.block-filter-modal-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(51, 51, 51, 0.6);
}

.block-filter-modal-body {
  position: relative;
  width: calc(100vw - 32px);
  max-height: calc(100vh - 32px);
  max-height: calc(100dvh - 32px);
  padding: 20px 16px;
  border: 2px solid #ededed;
  background-color: #ffffff;

  .item-close_btn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 18px;
    height: 18px;
    cursor: pointer;

    &::before,
    &::after {
      content: "";
      display: block;
      position: absolute;
      top: 50%;
      left: 50%;
      width: 23px;
      height: 2px;
      margin: -1px 0 0 -13px;
      background-color: var(--cl-bk);
    }

    &::before {
      transform: rotate(45deg);
    }

    &::after {
      transform: rotate(-45deg);
    }
  }

  h2 {
    margin: 0;
    padding: 0;
    border: none;
    color: var(--cl-pgr);
    font-size: 16px;
    font-weight: 700;
    text-align: center;
  }

  .block-filter-list {
    margin-top: 16px;
    padding: 32px 16px;
    border: 1px solid var(--cl-pgr);
    border-radius: 5px;
    background-color: var(--cl-lpgr);
    max-height: calc(100dvh - 32px - 20px - 26px - 16px - 20px - 48px - 20px);
    overflow-x: hidden;
    overflow-y: auto;

    .block-filter-list-item {
      & + .block-filter-list-item {
        margin-top: 20px;
      }

      dt {
        color: var(--cl-pgr);
        font-size: 14px;
        font-weight: 700;
      }

      dd {
        margin-top: 8px;

        select {
          width: 100%;

          padding: 8px;
          border: 1px solid #ccdce7;
          border-radius: 4px;
          background-image: url(../../img/usr/common/sp/filter_select.png);
          background-position: center right 10px;
          background-repeat: no-repeat;
          background-size: 12px 8px;
          font-size: 13px;
          -webkit-appearance: none;
          appearance: none;

          &::-ms-expand {
            display: none;
          }
        }
      }
    }
  }

  .block-filter-btns {
    margin-top: 20px;

    ul {
      display: flex;
      justify-content: space-between;
      gap: 12px;

      li {
        width: calc((100% - 12px) / 2);

        button {
          display: flex;
          align-items: center;
          justify-content: center;
          position: relative;
          width: 100%;
          height: 48px;
          margin: 0;
          padding: 0;
          border: 1px solid var(--cl-pgr);
          font-size: 16px;
          font-weight: 700;
          line-height: 1;
          cursor: pointer;

          &.block-filter--clear-btn {
            background-color: #ffffff;
            color: var(--cl-pgr);
            font-weight: 400;
          }

          &.block-filter--search-btn {
            background-color: var(--cl-pgr);
            color: #ffffff;

            &::before {
              content: "";
              display: block;
              position: absolute;
              top: 50%;
              left: 12px;
              width: 23px;
              height: 19px;
              margin-top: -10px;
              background-image: url(../../img/usr/common/sp/filter_submit.png);
              background-position: center;
              background-repeat: no-repeat;
              background-size: contain;
            }
          }
        }
      }
    }
  }
}

.block-goods-list--sort-order-items {
  position: relative;
  margin-left: 16px;
}

.block-sort--header {
  display: block;
  width: auto;
  background-color: transparent;

  h2 {
    display: flex;
    align-items: center;
    justify-content: left;
    position: relative;
    width: 89px;
    height: 28px;
    margin: 0;
    padding: 0 22px 0 6px;
    border: 1px solid #ccdce7;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    cursor: pointer;

    &::after {
      content: "";
      display: block;
      position: absolute;
      top: 50%;
      right: 7px;
      width: 8px;
      height: 14px;
      margin-top: -7px;
      background-image: url(../../img/usr/common/sp/arw_sort.png);
      background-position: center;
      background-repeat: no-repeat;
      background-size: contain;
    }

    span {
      display: block;
      width: 100%;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
  }

  .block-sort--expand-icon {
    display: none;
  }
}

.block-genre-page--comment {
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
}

.block-goods-list-naviframe {
  display: flex;
  align-items: flex-start;
  margin: 28px 0;
  padding: 0 10px;
  text-align: left;
}

/* ----ページャー---- */

.pager-scope,
.pager-total {
  font-size: 12px;
}

.pager-total {
  margin-right: auto;
}

.pager {
  margin-bottom: 0;
  text-align: left;
}

.pager > * {
  display: inline-block;
  vertical-align: top;
}

.pagination {
  display: flex;
}

.pagination > li {
  min-width: 0;
  margin-left: 20px;
}

.pagination > * {
  list-style-type: none;
  float: none;
  margin: 0;
  padding: 0;
  background-color: transparent;
  border: none;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1;
}

.pagination > .disabled {
  color: var(--cl-pgr);
}

.pagination a {
  color: var(--cl-pgr);
}

.pager-current {
  color: var(--cl-bl);
  background-color: transparent;
  border: none;
}

.pager-current span {
  position: relative;
  padding-bottom: 4px;
  font-weight: 700;

  &::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--cl-bl);
  }
}

.block-icon-image-page-navigation {
  background-size: contain;
}

.block-icon-image--first,
.block-icon-image--last {
  width: 12px;
  height: 10px;
  background-image: url(../../img/usr/common/sp/arw_pager_2.png);
}

.block-icon-image--prev,
.block-icon-image--next {
  width: 7px;
  height: 10px;
  background-image: url(../../img/usr/common/sp/arw_pager_1.png);
}

.block-icon-image--last,
.block-icon-image--next {
  transform: rotate(180deg);
}

.block-goods-list--display-style-items {
  display: none;
  align-items: center;
  width: 100%;
  padding: 0 20px;
  margin: 0 0 8px;
}

.block-goods-list--display-style-items .block-style--header {
  display: block;
  width: 60px;
  background: none;
}

.block-goods-list--display-style-items .block-style--header h2 {
  width: 60px;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 12px;
  font-weight: normal;
  color: #444;
  background: none;
}

.block-goods-list--display-style-items .block-style--header .block-style--expand-icon {
  display: none;
}

.block-goods-list--display-style-items .block-style--element {
  display: block;
  width: calc(100% - 60px);
}

.block-goods-list--display-style-items .block-style--element .block-style--select {
  display: block;
  width: 100%;
  height: auto;
  padding-left: 12px;
}

.block-goods-list--display-style-items .block-style--element .block-style--select select {
  width: 100%;
  padding: 4px;
}

.block-style--element-bg {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  visibility: hidden;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
  opacity: 0;
  cursor: pointer;
  z-index: 9997;
}

.block-style--element-bg.is-show {
  visibility: visible;
  opacity: 1;
}

.block-style--element {
  position: absolute;
  top: 0;
  right: 0;
  visibility: hidden;
  min-width: 282px;
  padding: 20px 12px;
  border-radius: 7px;
  transition: all 0.3s;
  opacity: 0;
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: 9998;
}

.block-style--element.is-show {
  visibility: visible;
  opacity: 1;
}

.block-style--element select {
  display: none;
}

.block-style--element ul.block-style--list {
  display: block;
}

.block-style--element ul.block-style--list a,
.block-style--element ul.block-style--list span {
  position: relative;
  display: block;
  padding: 3px 0 3px 24px;
  font-size: 14px;
  text-decoration: none;
  line-height: 1.5;
  color: #fff;
}

.block-style--element ul.block-style--list span::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 12px;
  height: 7px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-35deg) skewY(-15deg);
  content: "";
}

.block-sort--element-bg {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  visibility: hidden;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
  opacity: 0;
  cursor: pointer;
  z-index: 9997;
}

.block-sort--element-bg.is-show {
  visibility: visible;
  opacity: 1;
}

.block-sort--element {
  position: absolute;
  top: 28px;
  right: 0;
  visibility: hidden;
  width: max-content;
  min-width: 118px;
  padding: 5px 0;
  border-radius: 7px;
  transition: all 0.3s;
  opacity: 0;
  border: 1px solid #ccdce7;
  border-radius: 4px;
  background: #ffffff;
  z-index: 9998;
}

.block-sort--element.is-show {
  display: block;
  visibility: visible;
  opacity: 1;
}

.block-sort--select {
  display: block;
  padding: 0;
  height: auto;
}

.block-sort--element select {
  display: none;
}

.block-sort--element ul.block-sort--list {
  display: block;
}

.block-sort--element ul.block-sort--list a,
.block-sort--element ul.block-sort--list span {
  display: flex;
  align-items: center;
  position: relative;
  min-height: 22px;
  padding: 2px 12px;
  font-size: 1.4rem;
  text-decoration: none;
}

.block-sort--element ul.block-sort--list span {
  background-color: var(--cl-pgr);
  color: #ffffff;
}

.block-thumbnail-t--items {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  border: 0;
  padding: 0 12px;
}

.block-thumbnail-t--item {
  width: calc((100% - 12px) / 2);
  margin: 0;
  padding: 0;
}

.block-thumbnail-t--item:nth-of-type(2n) {
  margin-right: 0;
}

.block-thumbnail-t--item a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 20px 12px 16px;
  background-color: var(--cl-lpgr);

  &:hover {
    text-decoration: none;
  }
}

.block-thumbnail-t--item .block-thumbnail-t--goods-image {
  margin: 0 0 8px;
}

.block-thumbnail-t--item .block-thumbnail-t--goods-image figure {
  display: block;
  position: relative;
  min-width: 0;
  min-height: 0;
  padding: 0;
  background: transparent;
  overflow: hidden;

  &::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #eeeeee;
    border-radius: 4px;
  }

  img {
    display: block;
    border-radius: 4px;
    object-fit: cover;
  }
}

.block-thumbnail-t--item .block-thumbnail-t--goods-description {
  padding: 0;
}

.block-thumbnail-t--item .block-thumbnail-t--goods-name {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
}

.block-thumbnail-t--item .block-thumbnail-t--comment {
  display: none;
}

.block-thumbnail-t--item .block-thumbnail-t--price-infos {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.block-thumbnail-t--stock {
  display: flex;
  align-items: center;
  color: var(--cl-pgr);
  font-size: 12px;

  dt {
    margin-right: 0.2em;
    font-weight: 700;
  }
}

.block-thumbnail-t--item .block-thumbnail-t--price-infos .block-thumbnail-t--scomment {
  font-size: 12px;
  font-weight: bold;
  color: #d53115;
}

.block-thumbnail-t--item .block-thumbnail-t--price-infos .block-thumbnail-t--scomment + .block-thumbnail-t--price-items .block-thumbnail-t--price {
  color: #d53115;
}

.block-thumbnail-t--item .block-thumbnail-t--price-infos .block-thumbnail-t--scomment + .block-thumbnail-t--price-items .block-thumbnail-t--default-price {
  font-size: 11px;
  font-weight: normal;
}

.block-thumbnail-t--price-items {
  margin-left: auto;

  .price::after {
    content: none;
  }
}

.block-thumbnail-t--item .block-thumbnail-t--price {
  color: var(--cl-gy);
  font-size: 12px;
  font-weight: 700;
}

.block-thumbnail-t--item .block-goods-list--favorite--btn,
.block-thumbnail-t--item .block-goods-list--favorite-registed--btn {
  top: 8px;
  right: 12px;
  width: 26px;
  height: 26px;
  background-image: url(../../img/usr/common/sp/list_favorite_off.png);
  background-size: contain;
}

.block-thumbnail-t--item .block-goods-list--favorite-registed--btn {
  background-image: url(../../img/usr/common/sp/list_favorite_on.png);
}

.page-top .block-thumbnail-t--items {
  padding: 0 4vw;
}

.block-top-pickup-container {
  .block-thumbnail-t--items {
    flex-wrap: nowrap;
    gap: 0;
    padding: 0;

    .block-goods-favorite,
    .block-icon,
    .block-thumbnail-t--price-infos,
    .variation-name {
      display: none;
    }

    .block-thumbnail-t--goods-name {
      display: -webkit-box;
      margin-top: 12px;
      font-size: 1.2rem;
      line-height: 1.4;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      -webkit-line-clamp: 2;
    }

    .block-thumbnail-t--item .block-thumbnail-t--goods-image figure {
      position: relative;
      border-radius: 6px;
      overflow: hidden;

      &::after {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 1px solid #eeeeee;
        border-radius: 6px;
      }

      img {
        display: block;
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
      }
    }
  }

  .block-thumbnail-t--item a {
    padding: 0;
    background-color: transparent;
  }
}

@media screen and (max-width: 868px) {
  .block-top-pickup-container {
    .block-top-event--goods {
      display: flex;
    }

    .block-thumbnail-t {
      position: relative;
      padding: 0 20px 42px;

      &::after {
        content: "";
        display: block;
        position: relative;
        flex-shrink: 0;
        width: 20px;
        height: 1px;
      }
    }

    .block-thumbnail-t--item {
      flex-shrink: 0;
      width: 136px;
      padding: 12px 8px;
      background-color: #ffffff;

      &:first-child {
        width: 140px;
        padding-left: 12px;
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
      }

      &:last-child {
        width: 140px;
        padding-right: 12px;
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px;
      }
    }
  }
}

.block-ranking-r--items {
  display: flex;
  flex-wrap: wrap;
  border: 0;
  padding: 0 5px;
}

.block-ranking-r--item {
  width: calc((100% - 5px) / 2);
  margin: 0 5px 24px 0;
  padding: 0;
}

.block-ranking-r--item:nth-of-type(2n) {
  margin-right: 0;
}

.block-ranking-r--items .block-ranking-r--goods-image {
  margin: 0 0 16px;
}

.block-ranking-r--items .block-ranking-r--goods-image figure {
  min-width: 140px;
  min-height: 140px;
  padding: 0;
  background: none;
}

.block-ranking-r--items .block-ranking-r--goods-description {
  padding: 0 20px;
}

.block-ranking-r--items .block-ranking-r--goods-name {
  font-weight: normal;
  margin: 0 0 4px;
}

.block-ranking-r--items .block-ranking-r--comment {
  display: none;
}

.block-ranking-r--items .block-ranking-r--price-infos .block-ranking-r--scomment {
  font-size: 12px;
  font-weight: bold;
  color: #d53115;
}

.block-ranking-r--items .block-ranking-r--price-infos .block-ranking-r--scomment + .block-ranking-r--price-items .block-ranking-r--price {
  color: #d53115;
}

.block-ranking-r--items .block-ranking-r--price-infos .block-ranking-r--scomment + .block-ranking-r--price-items .block-ranking-r--default-price {
  font-size: 11px;
  font-weight: normal;
}

.block-ranking-r--items .block-ranking-r--price {
  font-size: 13px;
  font-weight: 500;
}

.block-ranking-r--items .block-ranking-r--rank {
  top: 10px;
  left: 10px;
  width: 33px;
  height: 26px;
  padding: 2px 0 6px;
  border-radius: 0;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  background: url(../../img/usr/common/ico_rank.png) center center / auto 26px no-repeat;
}

.block-ranking-r--items .block-ranking-r--rank.block-ranking-r--rank.block-ranking-r--rank-1 {
  background: url(../../img/usr/common/ico_rank1.png) center center / auto 26px no-repeat;
}

.block-ranking-r--items .block-ranking-r--rank.block-ranking-r--rank.block-ranking-r--rank-2 {
  background: url(../../img/usr/common/ico_rank2.png) center center / auto 26px no-repeat;
}

.block-ranking-r--items .block-ranking-r--rank.block-ranking-r--rank.block-ranking-r--rank-3 {
  background: url(../../img/usr/common/ico_rank3.png) center center / auto 26px no-repeat;
}

.block-top-event .block-top-event--goods {
  position: relative;
}

.block-top-event .block-ranking-r {
  margin: 0 45px;
}

.block-top-event .block-ranking-r--items.swiper-wrapper {
  border: 0;
  flex-wrap: nowrap;
  width: 100%;
  margin: 0 0 20px;
  padding: 0;
}

.block-top-event .block-ranking-r--items.swiper-wrapper > li {
  margin-right: 0;
}

.block-top-event .block-top-event--goods .swiper-button-prev,
.block-top-event .block-top-event--goods .swiper-button-next {
  --swiper-navigation-color: #111;
}

.block-top-event .block-top-event--goods .swiper-button-prev {
  justify-content: start;
}

.block-top-event .block-top-event--goods .swiper-button-next {
  justify-content: end;
}

.block-top-event .block-top-event--goods .swiper-button-prev svg,
.block-top-event .block-top-event--goods .swiper-button-next svg {
  width: 14px;
}

.block-top-event .block-ranking-r--items .block-ranking-r--item {
  display: block;
  padding: 0;
}

.block-top-event .block-ranking-r--items .block-ranking-r--rank {
  top: 13px;
  left: 10px;
  width: 33px;
  height: 26px;
  padding: 2px 0 6px;
  border-radius: 0;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  background: url(../../img/usr/common/ico_rank.png) center center / auto 26px no-repeat;
}

.block-top-event .block-ranking-r--items .block-ranking-r--rank.block-ranking-r--rank.block-ranking-r--rank-1 {
  background: url(../../img/usr/common/ico_rank1.png) center center / auto 26px no-repeat;
}

.block-top-event .block-ranking-r--items .block-ranking-r--rank.block-ranking-r--rank.block-ranking-r--rank-2 {
  background: url(../../img/usr/common/ico_rank2.png) center center / auto 26px no-repeat;
}

.block-top-event .block-ranking-r--items .block-ranking-r--rank.block-ranking-r--rank.block-ranking-r--rank-3 {
  background: url(../../img/usr/common/ico_rank3.png) center center / auto 26px no-repeat;
}

.block-top-event .block-ranking-r--items .block-ranking-r--goods-image {
  margin: 0 0 17px;
}

.block-top-event .block-ranking-r--items .block-ranking-r--goods-image figure img {
  width: 100%;
}

.block-top-event .block-ranking-r--items .block-ranking-r--goods-name {
  font-weight: normal;
  margin: 0 0 8px;
}

.block-top-event .block-ranking-r--items .block-ranking-r--comment {
  display: none;
}

.block-top-event .block-ranking-r--items .block-ranking-r--price {
  font-size: 15px;
}

.block-recent-item--header {
  margin: 0 0 24px;
  padding: 40px 0 0;
  border: 0;
  text-align: center;
  font-family: "Josefin Sans", "Noto Sans JP", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.333;
  color: #000;
  background: none;
}

.block-recent-item--header span {
  display: block;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 10px;
  font-weight: bold;
  line-height: 1.5;
}

.block-thumbnail-h {
  width: 100%;
  margin: 0 0 40px;
  overflow-x: auto;
  overflow-y: hidden;
}

.block-thumbnail-h .block-thumbnail-h--items {
  display: flex;
  max-width: none;
  padding: 0 0 0 4vw;
}

.block-thumbnail-h .block-thumbnail-h--item {
  display: block;
  width: 32vw;
  min-width: 32vw;
  margin-right: 4vw;
  padding: 0;
}

.block-goods-detail-j--item {
  display: flex;
  padding: 20px 10px;
  border: 0;
}

.block-goods-detail-j--item a {
  display: block;
  width: 140px;
}

.block-goods-detail-j--items .block-goods-detail-j--goods-description {
  width: calc(100% - 140px);
  padding-left: 15px;
}

.block-goods-detail-j--items .block-goods-detail-j--goods-description .block-goods-detail-j--goods-name {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.block-goods-detail-j--items .block-goods-detail-j--goods-description .block-goods-detail-j--comment {
  margin: 0 0 8px;
  font-size: 11px;
  color: #808080;
}

.block-goods-detail-j--items .block-goods-detail-j--goods-description .block-goods-detail-j--price-infos {
  margin: 0 0 4px;
}

.block-goods-detail-j--items .block-goods-detail-j--goods-description .block-goods-detail-j--price-infos .block-goods-detail-j--scomment {
  font-size: 12px;
  font-weight: bold;
  color: #d53115;
}

.block-goods-detail-j--items .block-goods-detail-j--goods-description .block-goods-detail-j--price-infos .block-goods-detail-j--scomment + .block-goods-detail-j--price-items .block-goods-detail-j--price {
  color: #d53115;
}

.block-goods-detail-j--items .block-goods-detail-j--goods-description .block-goods-detail-j--price-infos .block-goods-detail-j--scomment + .block-goods-detail-j--price-items .block-goods-detail-j--default-price {
  font-size: 11px;
  font-weight: normal;
}

.block-goods-detail-j--items .block-goods-detail-j--goods-description .block-goods-detail-j--price {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
}

.block-goods-detail-j--items .block-goods-detail-j--goods-description .block-goods-detail-j--stock {
  margin: 0 0 4px;
  display: flex;
  font-size: 13px;
  font-weight: 500;
}

.block-goods-detail-j--items .block-goods-detail-j--goods-description .block-goods-detail-j--stock dt {
  font-weight: 500;
}

.block-goods-detail-j--items .block-goods-detail-j--goods-description .block-goods-detail-j--stock dt::after {
  content: "：";
}

.block-goods-detail-j--items .block-goods-detail-j--goods-description .block-goods-detail-j--comment1 {
  margin: 0 0 16px;
  font-size: 11px;
  color: #808080;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.block-goods-detail-j--items .block-goods-detail-j--goods-description .block-goods-detail-j--cart-btn .block-list-add-cart-btn {
  width: 100%;
  font-size: 13px;
  padding: 12px;
  border-radius: 22px;
}

.block-goods-detail-j--items .block-goods-detail-j--goods-description .block-goods-detail-j--custom-order .block-list-custom-order-btn {
  width: 100%;
  font-size: 13px;
  padding: 12px;
  border-radius: 22px;
}

.block-pickup-list-p .block-pickup-list-p--item .block-pickup-list-p--price-infos .block-pickup-list-p--scomment {
  font-size: 12px;
  font-weight: bold;
  color: #d53115;
}

.block-pickup-list-p .block-pickup-list-p--item .block-pickup-list-p--price-infos .block-pickup-list-p--price-items .price,
.block-pickup-list-p .block-pickup-list-p--item .block-pickup-list-p--price-infos .block-pickup-list-p--price-items .net-price {
  font-size: 13px;
  font-weight: 500;
}

.block-pickup-list-p .block-pickup-list-p--item .block-pickup-list-p--price-infos .block-pickup-list-p--price-items .default-price {
  font-size: 11px;
  font-weight: normal;
}

.block-pickup-list-p .block-pickup-list-p--item .block-pickup-list-p--price-infos .block-pickup-list-p--scomment + .block-pickup-list-p--price-items .price {
  color: #d53115;
}

/* ----パンくずリスト---- */

.block-topic-path {
  min-height: 52px;
  margin: 40px 0 0;
  padding: 16px 20px;
  border-top: none;
  line-height: 1.5;
}

.block-topic-path--list li {
  display: inline-block;
  position: relative;
  font-size: 12px;
  padding-right: 30px;

  a {
    color: var(--cl-gy);
  }

  &:not(:last-child)::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 11px;
    width: 6px;
    height: 9px;
    margin-top: -4px;
    background-image: url(../../img/usr/common/sp/topicpath_arw.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }
}

.block-topic-path a {
  text-decoration: none;
}

.block-topic-path--delimiter {
  display: none;
}

/* ----マイページ---- */

.block-favorite .block-accessory-list--name {
  padding: 16px 20px;
  background: none;
}

.block-store-coupon-list--table .block-store-coupon-list--bonus {
  font-size: 16px;
  font-weight: bold;
}

.block-login--member-header,
.block-login--first-time-header {
  margin-bottom: 8px;
}

.block-onetimepassword-certify--header,
.block-onetimepassword-send--header {
  padding-left: 0;
  padding-right: 0;
}

.block-inquiry-history--body li {
  padding: 8px 0;
}

.block-inquiry-history-detail--subject {
  padding: 8px 10px;
  background: none;
}

/* ----クイックオーダー---- */

.block-quick-order--price-pop {
  font-size: 12px;
  font-weight: bold;
  color: #d53115;
}

.block-quick-order--price {
  font-weight: 500;
  color: #c30;
}

.block-quick-order--price-price {
  color: #c30;
}

.block-quick-order--default-price {
  font-weight: normal;
}

.block-quick-order--subtotal-cell {
  color: #111;
}

/* ----購入フロー---- */

.block-cart-recent-item--header {
  margin: 0 0 24px;
  padding: 40px 0 0;
  border: 0;
  text-align: center;
  font-family: "Josefin Sans", "Noto Sans JP", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.333;
  color: #000;
  background: none;
}

.block-cart-recent-item--header span {
  display: block;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 10px;
  font-weight: bold;
  line-height: 1.5;
}

.page-cart .block-search-box--form {
  display: none;
}

.block-cart--goods-list-item-delete-btn {
  text-decoration: none;
}

.block-cart--procedure-container {
  top: 0;
  transition: top 0.2s;
}

.block-cart--procedure-container.block-cart--procedure-container__fixed {
  top: 72px;
}

.block-order-estimate--dest-address-item-buttons__selected {
  background: #ffebe8;
}

.block-order-gift-noshi h3 {
  margin-bottom: 8px;
}

.block-order-complete--wrapper {
  padding: 0 10px;
}

.block-order-complete--message {
  margin: 0 0 12px;
}

.block-order-complete--message p {
  padding: 0;
  font-size: 13px;
}

.block-order-complete--orderid {
  margin: 0 0 20px;
  border: 0;
}

.block-order-complete table.block-order-complete--orderid th {
  display: block;
  width: 100%;
  padding: 2px 0;
  border: 0;
  text-align: center;
  font-size: 11px;
  color: #808080;
  background: none;
}

.block-order-complete--orderid td {
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  font-size: 12px;
  background: none;
}

.block-order-complete--orderid td a {
  font-size: 12px;
}

.block-regular-goods-add--header,
.block-regular-goods-change--header {
  margin: -10px -10px 0;
}

.block-goodschange-list {
  margin: 10px;
}

.block-goodsadd-list--customer-name,
.block-goodschange-list--customer-name {
  margin: 0 0 10px;
  font-weight: bold;
}

.block-regular-purcharse-list--info-withdrawal {
  display: block;
  width: auto;
}

.block-order-regular-add-confirm h2 {
  margin-bottom: 8px;
  border: 0;
}

.block-order-regular-add-complete--wrapper {
  padding: 0 10px;
}

.block-order-regular-add-complete--message {
  margin: 0 0 12px;
}

.block-order-regular-add-complete--message p {
  padding: 0;
  font-size: 13px;
}

.block-order-regular-add-complete--regular-sales {
  margin: 0 0 20px;
  border: 0;
}

.block-order-regular-add-complete table th {
  display: block;
  width: 100%;
  padding: 2px 0;
  border: 0;
  text-align: center;
  font-size: 11px;
  color: #808080;
  background: none;
}

.block-order-regular-add-complete table td {
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  font-size: 12px;
  background: none;
}

.block-order-regular-add-complete table td a {
  font-size: 12px;
}

/* ----ページ機能---- */

.block-page-block--contents-text {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}

.block-page-block--contents-body-text-2column {
  width: calc((100% - 20px) / 2);
  margin-right: 20px;
}

.block-page-block--contents-body-text-2column:last-child {
  margin-right: 0;
}

.block-page-block--contents-img {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}

.block-page-block--contents-body-img-2column {
  width: calc((100% - 20px) / 2);
  margin-right: 20px;
}

.block-page-block--contents-body-img-2column:last-child {
  margin-right: 0;
}

.block-pagecategory-page-list {
  margin: 0 10px;
}

.block-pagecategory-page-list--frame {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.block-pagecategory-page-list--frame .block-pagecategory-page-list--page {
  width: calc(50% - 5px);
  margin: 0 10px 10px 0;
}

.block-pagecategory-page-list--frame .block-pagecategory-page-list--page:nth-of-type(2n) {
  margin-right: 0;
}

/* ----商品詳細画面---- */

.block-goods-detail {
  margin: 0;
  padding: 0;
}

.block-src-l {
  margin: 0;
}

.block-goods-gallery {
  margin: 0 -20px;
  overflow-x: auto;
  overflow-y: hidden;
}

.block-goods-gallery::-webkit-scrollbar {
  display: none;
}

.block-goods-gallery ul {
  display: flex;
  padding: 0;
}

.block-goods-gallery ul li {
  display: block;
  width: 58px;
  min-width: 58px;
  flex-basis: 58px;
  margin: 0 8px 0 0;
  padding: 0;
}

.block-goods-gallery ul li figure {
  width: 58px;
  height: 58px;
}

.block-icon {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  font-size: 0;
}

.block-icon span {
  margin: 0;
}

.block-icon img {
  height: 20px;
}

.page-goods .block-icon {
  margin: 0;
}

.page-goods {
  .block-goods-reception_period + .block-icon {
    margin-top: 40px;
  }
}

.block-goods-name {
  flex-shrink: 1;
  margin: 0 16px 0 0;
}

.block-goods-name h1 {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
}

.block-goods-comment {
  font-size: 12px;
  line-height: 1.5;
}

.block-goods-comment.more-open {
  position: relative;
  max-height: 54px;
  padding-bottom: 16px;
}

.block-goods-comment.more-open .open-button {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 16px;
  cursor: pointer;
}

.block-goods-comment.more-open .open-button::before {
  position: absolute;
  top: 0;
  left: calc(50% - 6px);
  display: block;
  width: 12px;
  height: 12px;
  border-right: 1px solid #222;
  border-bottom: 1px solid #222;
  transform: rotate(45deg);
  content: "";
}

.goods-detail-description {
  display: flex;
  padding: 1px 0;
  font-size: 13px;
}

.goods-detail-description dt {
  display: block;
  font-weight: normal;
  width: 6.5em;
}

.goods-detail-description dd {
  display: block;
}

.goods-detail-description.block-goods-spec {
  display: block;
  font-size: 12px;
}

.goods-detail-description.block-goods-spec dt {
  display: inline;
  font-weight: normal;
}

.goods-detail-description.block-goods-spec dd {
  display: inline;
}

.block-goods-price--on-sales-comment {
  font-size: 12px;
  font-weight: bold;
  text-align: left;
  color: #d53115;
}

.block-goods-price--on-sales-term {
  font-size: 12px;
  margin: 4px 0;
}

.block-goods-price .block-goods-price--on-sales-off-percent {
  display: inline-block;
  padding: 2px 10px;
  margin: 4px 4px 4px 0;
  font-size: 12px;
  color: #f0f0f0;
  background-color: #d53115;
}

.block-goods-price .block-goods-price--on-sales-countdown,
.block-goods-price .block-goods-price--on-sales-countdown > div {
  display: inline-block;
  color: #d53115;
}

.block-goods-price--on-sales-comment ~ .block-goods-price--price,
.block-goods-price--on-sales-off-percent ~ .block-goods-price--price,
.block-goods-price--on-sales-countdown ~ .block-goods-price--price {
  color: #d53115;
}

.block-goods-price--on-sales-comment + .block-goods-price--price + .block-goods-price--default-price {
  font-size: 14px;
  font-weight: normal;
}

.block-goods-price {
  margin: 40px 0 0;
  text-align: left;
}

.block-goods-price--price {
  font-size: 18px;
  font-weight: 700;
  text-align: left;
}

.block-modal-cart-goods-price {
  display: flex;
  flex-wrap: wrap;

  .block-goods-variation-color,
  .block-goods-variation-size {
    font-size: 18px;

    &:not(:empty) {
      margin-right: 12px;
    }
  }
}

.block-modal-cart-goods-price .block-goods-price--price {
  font-size: 14px;
  font-weight: 400;
  margin: auto 0;
}

.block-goods-price--price::after,
.block-goods-price--net-price::after {
  font-size: 10px;
  font-weight: 400;
}

.block-goods-price--default-price {
  text-align: left;
}

.block-goods-price--default-price::after {
  font-size: 11px;
  content: "（税込）";
}

.block-goods-price--default-net::after {
  font-size: 11px;
  content: "（税抜）";
}

.block-goods-price--regular-repeat-price::after {
  font-size: 11px;
  content: "（税込）";
}

.block-goods-price--regular-repeat-net::after {
  font-size: 11px;
  content: "（税抜）";
}

.block-goods-term--sales-stock {
  padding: 6px 0;
  font-size: 12px;
  color: #d53115;
}

.block-goods-term--sales-term {
  padding: 6px 0;
  font-size: 14px;
  color: #d53115;
}

.block-variation--name {
  border: 0;
  border-top: 1px solid #dedede;
  padding: 12px 0 0;
  margin: 10px 0 4px;
  font-size: 14px;
  font-weight: bold;
}

.block-variation--item {
  margin-right: 4px;
}

.block-color--item-term,
.block-size--item-term {
  min-width: 56px;
  min-height: 56px;
}

.block-variation--item dt {
  border: 1px solid #dedede;
}

.block-variation--item.active dt {
  border: 1px solid #d53100;
}

.block-variation--item.size-disable-stock dt {
  border: 1px dashed #dedede;
}

.block-color--item-term figure {
  width: 54px;
  height: 54px;
}

.block-color--item-term img {
  max-width: 100%;
  max-height: 100%;
}

.block-size--item-term span {
  width: 54px;
  height: 54px;
  font-size: 13px;
}

.block-variation--selected-item {
  margin: 8px 0 16px;
}

.block-size-with-cart--item-term,
.block-color-with-cart--item-term,
.block-color-size-with-cart--color-item-term,
.block-color-size-with-cart--size-item-term {
  flex-shrink: 0;
}

.block-color-size-with-cart--nocolor {
  width: 48px;
  height: 48px;
  margin-right: 4px;
  flex-shrink: 0;
}

.block-color-size-with-cart--color-item-term {
  margin-right: 4px;
}

.block-color-size-with-cart--size-item-term span,
.block-size-with-cart--item-term span {
}

.block-color-size-with-cart--color-item-term figure,
.block-color-with-cart--item-term figure {
  width: 46px;
  height: 46px;
}

.block-color-size-with-cart--color-item-term img,
.block-color-with-cart--item-term img {
  max-width: 100%;
  max-height: 100%;
}

.block-color-size-with-cart--color-size-item-term {
  width: 100%;
  text-align: center;
  font-size: 18px;
}

.block-size-with-cart--item-term,
.block-color-with-cart--item-term {
  text-align: center;
  font-size: 18px;
}

.block-goods-not-available-method {
  margin: 10px 0 4px;
  padding: 12px 0 0;
  border-top: 1px solid #dedede;
}

.block-variation .block-variation-no-stock--message,
.block-variation .block-variation-outside-sales-period--message,
.block-variation .block-goods-variation-arrival-notice--btn,
.block-variation .block-variation-add-cart--btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 100%;
  border-radius: 3px;
}

.block-variation .block-variation-no-stock--message,
.block-variation .block-variation-outside-sales-period--message {
  border: 0;
  color: #808080;
  background: #f5f5f5;
  width: 160px;
  height: 48px;
  margin-left: 20px;
  font-size: 16px;
  font-weight: 700;
}

.block-variation .block-variation-outside-sales-period--message.before {
  width: 180px;
}

.block-variation .block-variation-outside-sales-period--message.after {
  width: 220px;
}

.block-variation .block-goods-variation-arrival-notice--btn {
  border: 0;
  color: #fff;
  background: #73c3d6;
  width: 160px;
  height: 48px;
  margin-left: 20px;
  font-size: 16px;
  font-weight: 700;
}

.block-variation .block-variation-favorite {
  margin-left: 8px;
  flex-shrink: 0;
}

.block-variation .block-variation-favorite--btn,
.block-variation .block-variation-favorite-registed--btn {
  height: 48px;
  width: 48px;
  border-radius: 3px;
}

.block-variation .block-variation-favorite--btn {
  background: url(../../img/usr/common/goods_bookmark_val_btn_sp.png) center center / 18px auto no-repeat;
}

.block-variation .block-variation-favorite-registed--btn {
  background: #fff2ef url(../../img/usr/common/goods_bookmark_reg_btn_sp.png) center center / 18px auto no-repeat;
}

.block-variation .block-variation-favorite--btn .block-icon-image,
.block-variation .block-variation-favorite-registed--btn .block-icon-image {
  display: none;
}

.block-variation-add-cart {
  .block-add-cart--btn.btn-primary {
    width: 160px;
    height: 48px;
    margin-left: 20px;
  }
}

.block-custom-order--btn {
  margin: 10px 0;
  padding: 16px 0;
  border-radius: 3px;
  font-size: 15px;
}

.block-arrival-notice .block-arrival-notice--btn {
  width: 100%;
  border: 0;
  border-radius: 3px;
  color: #fff;
  background: #73c3d6;
}

.block-no-stock .block-no-stock--message,
.block-outside-sales-period--message {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 3px;
  color: #808080;
  background: #f5f5f5;
}

.block-goods-favorite--btn {
  padding: 16px 0;
  font-size: 15px;
  color: #d53100;
  background: #fff;
}

.block-contact-about-goods {
  text-align: center;
}

.block-contact-about-goods .block-contact-about-goods-btn {
  display: inline;
  padding: 0;
  border: 0;
  text-decoration: underline;
  font-size: 14px;
  color: #081f2c;
  background: none;
}

.block-goods-link {
  text-align: center;
}

.block-goods-link .block-goods-link--btn {
  display: inline;
  padding: 0;
  border: 0;
  text-decoration: underline;
  font-size: 14px;
  color: #081f2c;
  background: none;
}

.block-goods-store-stock {
  text-align: center;
}

.block-goods-store-stock .block-goods-store-stock--btn {
  margin: 0 0 10px;
  padding: 16px 0;
  border-radius: 3px;
  border: 1px solid #d53100;
  font-size: 15px;
  color: #d53100;
  background: #fff;
}

.block-goods-detail dl[class^="block-goods-comment"] dt {
  display: block;
  margin: 0 0 14px;
  padding: 24px 0 0;
  font-size: 20px;
  font-weight: 500;
}

.block-goods-detail dl[class^="block-goods-comment"] + dl[class^="block-goods-comment"] dt {
  display: none;
}

.block-goods-detail dl[class^="block-goods-comment"] dt h3 {
  margin: 0;
  border: 0;
  font-size: 20px;
}

.block-goods-detail h3.block-goods-comment--title {
  margin: 0 0 12px;
  padding: 8px 0;
  border-bottom: 1px solid #dedede;
  font-size: 14px;
  line-height: 1.5;
}

.block-goods-comment--table-frame {
  width: 100%;
  margin: 0 0 15px;
  overflow-x: auto;
  overflow-y: hidden;
}

.block-goods-comment--table-frame .block-goods-comment--table {
  border-collapse: collapse;
}

.block-goods-comment--table-frame .block-goods-comment--table th,
.block-goods-comment--table-frame .block-goods-comment--table td {
  padding: 7px 22px;
  font-size: 12px;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  border: 1px solid #707070;
}

.block-goods-comment--table-frame .block-goods-comment--table tr.title th {
  background: #eee;
}

.block-goods-comment--table-frame .block-goods-comment--table tr th:first-of-type,
.block-goods-comment--table-frame .block-goods-comment--table tr.title th:first-of-type {
  min-width: 100px;
  text-align: left;
  font-weight: bold;
}

.block-goods-comment--table-frame .block-goods-comment--table td {
  white-space: nowrap;
}

.block-goods-user-review h2 {
  margin: 0;
  padding: 16px 20px;
  border: 0;
  font-size: 19px;
  background: none;
}

.block-goods-user-review .block-goods-user-review--info {
  padding: 10px 20px;
  background: none;
}

.block-goods-user-review .block-goods-user-review--count-summary {
  padding: 10px 13px;
  border: 1px solid #707070;
  border-radius: 4px;
}

.block-goods-user-review .block-goods-user-review--score dt {
  font-weight: normal;
}

.block-goods-user-review .block-goods-user-review--score dd img {
  height: 100%;
  top: -2px;
}

.block-goods-user-review .block-goods-user-review--description {
  margin: 0 0 24px;
  font-size: 11px;
}

.block-goods-user-review .block-goods-user-review--need-login-message {
  margin: 16px 0 12px;
  text-align: center;
  font-size: 12px;
}

.block-goods-user-review .block-goods-user-review--need-login-message a {
  text-decoration: underline;
}

.block-goods-user-review .block-goods-user-review--write-review-link,
.block-goods-user-review .block-goods-user-review--write-review-btn {
  display: block;
  width: 216px;
  margin: 0 auto;
  padding: 10px 0;
  border-radius: 20px;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background: #d53100;
}

.block-goods-user-review .block-goods-user-review--list {
  margin: 0 20px;
}

.block-goods-user-review .block-goods-user-review--list .block-goods-user-review--item {
  padding: 16px 0;
  border-bottom: 1px solid #dedede;
}

.block-goods-user-review .block-goods-user-review--list .block-goods-user-review--item:last-of-type {
  border-bottom: 0;
}

.block-goods-user-review .block-goods-user-review--item-title {
  border: 0;
  font-size: 15px;
  font-weight: 500;
}

.block-goods-user-review .block-goods-user-review--item-summary {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.block-goods-user-review .block-goods-user-review--item-summary .block-goods-user-review--item-name {
  margin: 0 0 8px;
  order: 20;
}

.block-goods-user-review .block-goods-user-review--item-summary .block-goods-user-review--item-score {
  margin: 0 0 8px;
  order: 10;
}

.block-goods-user-review .block-goods-user-review--item-summary .block-goods-user-review--item-score dt {
  display: none;
}

.block-goods-user-review .block-goods-user-review--item-summary .block-goods-user-review--item-score dd img {
  width: 30%;
  top: -2px;
}

.block-goods-detail-footer {
  display: none;
}

h2.block-accessory-list--name {
  padding: 16px 20px;
  border: 0;
  font-size: 19px;
  background: none;
}

.block-goods-uservoice {
  padding: 0 0 40px;
  background: #f5f5f5;
}

.block-goods-uservoice .block-goods-uservoice--title {
  margin: 0 0 24px;
  padding: 40px 0 0;
  border: 0;
  text-align: center;
  font-family: "Josefin Sans", "Noto Sans JP", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.333;
  color: #000;
  background: none;
}

.block-goods-uservoice .block-goods-uservoice--title span {
  display: block;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 10px;
  font-weight: bold;
  line-height: 1.5;
}

.page-goods .block-search-box--form {
  display: none;
}

/*CSSによる商品詳細画面の項目の並び順変更用*/
.pane-goods-right-side {
  display: block;
}
.block-goods-size--box .block-goods-size--body {
  padding-left: 10px;
  padding-right: 10px;
}
.block-goods-size--body .block-measured .block-measured--item-list,
.block-goods-size--body .block-measured .js-unisize-bunner,
.block-goods-size--body .block-measured .js-unisize-bunner > div {
  margin: 12px 0;
}
.block-goods-size--box .block-measured--item-list {
  width: 100%;
  border: 0;
}
.block-goods-size--box .block-measured--item-list th {
  font-size: 13px;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid #ddd;
  background-color: #f2f2f2;
  border: 0;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
}
.block-goods-size--box .block-measured--item-list td {
  font-size: 11px;
  text-align: center;
  line-height: 1.3;
  vertical-align: middle;
  width: calc(100% / 6);
  padding: 5px 0;
  border: 0;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
}
.block-goods-size--box .block-measured--item-list th:first-child {
  border-left: 0;
}
.block-goods-size--box .block-measured--item-list th.block-measured--header {
  border-top: 0;
}
.block-goods-size--box .block-measured--item-list tr:first-child th {
  border-top: 0;
}

/* ----ゲストお気に入り画面---- */
.block-guest-favorite-synchronize-title {
  font-weight: bold;
  font-size: 16px;
}
.block-guest-favorite-synchronize-description {
  font-size: 14px;
}
.block-guest-favorite-synchronize-link {
  text-align: center;
}
/* ----定期購入商品サイクル情報変更画面---- */
.block-regular-purcharse-cycle-info-update--skip-cancel-message {
  margin: 5px 0 0 5px;
}
/* ----アプリログイン訴求画面---- */
.block-applogin-body {
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.9em;
  text-align: center;
  margin: auto;
  height: 100px;
}

/* ---- LightningRecommend ---- */
.block-top-lightningrecommend,
.block-ranking-lightningrecommend {
  padding: 0 0 40px;
}

.block-top-lightningrecommend--header,
.block-ranking-lightningrecommend--header {
  margin: 0 0 24px;
  padding: 40px 0 0;
  border: 0;
  text-align: center;
  font-family: "Josefin Sans", "Noto Sans JP", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.333;
  color: #000;
  background: none;
}

.block-common-lightningrecommend {
  margin-top: 10px;
  background-color: #ededed;
}

.block-common-lightningrecommend--header {
  padding: 16px 20px;
  border: 0;
  font-size: 14px;
  background: none;
  color: var(--cl-pgr);
}

.block-cart--lightningrecommend-wrapper {
  padding: 0 10px;
}

/* ----本品とレフィル切り替え画面---- */
.block-refillgoods-list {
  margin: 10px;
}
.block-regular-goods-refillgoods--header {
  margin: -10px -10px 0;
}

/*  */

.block-goods-detail .swiper-slider-main img {
  width: 100%;
}

.block-add-cart--btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0;
  padding: 0;
  width: 212px;
  height: 48px;
  border: 2px solid #ffffff;
  border-radius: 0;
  background-color: #f8af49;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.08em;

  &::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #ededed;
  }
}

/* button */

.btn-bdr {
  display: block;
  position: relative;
  background-color: #ededed;
  width: 100%;
  min-height: 48px;
  border: none;
  cursor: pointer;

  span {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 1px;
    left: 1px;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    border: 1px solid #ffffff;
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
  }

  &:hover {
    text-decoration: none;
  }
}

.btn-orange {
  span {
    background-color: var(--cl-or);
  }

  &:hover {
    text-decoration: none;
  }
}

.btn-red {
  span {
    background-color: var(--cl-rd);
  }

  &:hover {
    text-decoration: none;
  }
}

.btn-pgreen {
  span {
    background-color: var(--cl-pgr);
  }

  &:hover {
    text-decoration: none;
  }
}

.btn-sld {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  border: none;
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;

  &:hover {
    text-decoration: none;
  }
}

.btn-gray {
  background-color: #cccccc;

  &:hover {
    text-decoration: none;
  }
}

/* 注文系 */

.block-order-complete--body,
.block-order-method,
.block-cart--body,
.block-order-estimate {
  margin: 0;
  padding: 20px 20px 40px;
  text-align: left;
}

.block-order-estimate {
  padding-bottom: 56px;
}

.block-cart--body {
  padding-bottom: 0;
}

.block-order-complete--body {
  padding-bottom: 56px;
}

.block-order-complete h1,
.block-order-method h1,
.block-cart--body h1,
.block-order-estimate h1 {
  margin: 0 0 40px;
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  text-align: left;
}

.block-order-method h2 {
  margin: 0 0 20px;
  padding: 0;
  border: none;
  color: var(--cl-pgr);
  font-size: 16px;
  font-weight: 700;
}

.block-order-step-flow {
  margin-bottom: 56px;

  ul {
    display: flex;
    justify-content: space-between;
    position: relative;

    li {
      position: relative;
      height: 42px;

      &:nth-child(1) {
        z-index: 4;
      }

      &:nth-child(2) {
        z-index: 3;
      }

      &:nth-child(3) {
        z-index: 2;
      }

      &:nth-child(4) {
        z-index: 1;
      }

      &:not(:first-child) {
        &::before {
          content: "";
          display: block;
          position: absolute;
          top: 9px;
          left: calc((100vw - 100px) / 3 * -1);
          width: calc((100vw - 100px) / 3);
          height: 2px;
          background-color: #ededed;
        }
      }

      .no {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        width: 20px;
        height: 20px;
        border-radius: 20px;
        background-color: #ededed;
        color: #ffffff;
        font-size: 10px;
        font-weight: 700;
        line-height: 1;
      }

      .txt {
        position: absolute;
        bottom: 0;
        left: 50%;
        color: var(--cl-gy);
        font-size: 10px;
        font-weight: normal;
        transform: translate(-50%, 0);
        white-space: nowrap;
      }

      &.is-done {
        &::before {
          background-color: #e6f4f8;
        }

        .no {
          background-color: #e6f4f8;
        }
      }

      &.is-current {
        &::before {
          background-color: #e6f4f8;
        }

        .no {
          background-color: var(--cl-pgr);
        }

        .txt {
          color: var(--cl-pgr);
          font-weight: 700;
        }
      }
    }
  }
}

.block-order-complete--wrapper {
  margin: 0;
  padding: 0;
}

.block-order-complete--img {
  display: flex;
  align-items: center;
  justify-content: center;

  img {
    display: block;
    height: auto;
  }
}

.block-order-complete--cs_payment {
  margin: 56px 0;
  font-size: 16px;

  h3 {
    margin: 0;
    padding: 0;
    border: none;
    color: var(--cl-pgr);
    font-size: 16px;
    font-weight: 700;
  }

  dl {
    font-size: 12px;

    div {
      display: flex;
      padding: 20px 0;

      & + div {
        border-top: 1px solid var(--cl-lpgr);
      }

      dt {
        width: 140px;
        color: var(--cl-bl);
        font-weight: 700;
      }

      dd {
        width: calc(100% - 140px);
      }
    }

    & + p {
      margin-top: 36px;
    }
  }

  p {
    a {
      color: #f87a49;
      text-decoration: underline;
    }
  }
}

.block-order-complete--lottery-btn {
  margin-top: 40px;

  .btn-bdr {
    span {
      font-size: 16px !important;
    }
  }
}

.block-order-complete--message {
  margin: 56px 0 0;
  font-size: 14px;
}

.block-order-complete--orderid {
  display: flex;
  align-items: center;
  margin: 20px 0 0;

  dt {
    color: var(--cl-bl);
    font-size: 12px;
    font-weight: 700;
  }

  dd {
    margin-left: 20px;
    font-size: 12px;
  }
}

.block-order-complete--bot-btn {
  margin-top: 20px;

  li + li {
    margin-top: 32px;
  }
}

.block-order-method--reservation-content {
  padding: 20px;
  border: 2px solid var(--cl-lpgr);

  p {
    font-size: 12px;
  }

  .block-order-method--reservation-input {
    .txt-required {
      color: var(--cl-rd);
      font-weight: 700;
    }

    input {
      width: 100%;
      margin-top: 8px;
    }
  }
}

.block-order-method--goods {
  margin-top: 40px;
}

.block-order-method--goods-content {
  border: none;
}

.block-order-method--goods-list li {
  padding: 20px;
  border: none;
  background-color: var(--cl-lpgr);

  & + li {
    margin-top: 16px;
  }
}

.block-order-method--goods-item-image {
  width: 120px;
  display: table-cell;
  vertical-align: top;
}

.block-order-method--goods-item-image figure {
  width: 120px;
  height: 120px;
  background: transparent;

  img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }
}

.block-order-method--goods-info {
  display: table-cell;
  vertical-align: top;
  width: calc(100% - 120px);
  padding-left: 10px;
}

.block-order-method--goods-name,
.block-order-method--goods-set-name {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
}

.block-order-method--goods-comment {
  margin-top: 20px;
  font-size: 12px;
}

.block-order-method--goods-qty {
  margin-top: 20px;
}

.block-order-method--dest,
.block-order-method--delivery-datetime,
.block-order-method--payment,
.block-order-method--sales-append {
  margin-top: 40px;
}

.block-order-method--dest-content,
.block-order-method--delivery-datetime-content,
.block-order-method--payment-content,
.block-order-method--sales-append-container,
.block-order-estimate--summary-content,
.block-order-estimate--dest-content,
.block-order-estimate--date-spec-content,
.block-order-estimate--method-pay-content,
.block-order-estimate--sales-append-content,
.block-order-estimate-point-content {
  padding: 20px;
  border: 2px solid var(--cl-lpgr);
}

.block-order-method--dest-item,
.block-order-method--dest-add {
  padding: 0;
  border-bottom: none;

  address {
    font-size: 12px;
  }

  & + .block-order-method--dest-item,
  & + .block-order-method--dest-add {
    margin-top: 40px;
  }
}

.block-order-method--dest-item-title {
  display: flex;
  align-items: center;
  padding-bottom: 12px;
  font-size: 14px;
}

.block-order-method--dest-edit {
  margin-left: 20px;
}

.block-order-method--dest-change-btn {
  display: block;
  width: 16px;
  height: 19px;
  margin: 0;
  padding: 0;
  border: none;
  background-color: transparent;
  background-image: url(../../img/usr/order/sp/address_edit.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  text-indent: -999999px;
  cursor: pointer;
}

.block-order-method--delivery-address-add-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 32px;
  border: none;
  background-color: var(--cl-pgr);
  color: #ffffff;
  font-size: 12px;
  cursor: pointer;
}

.block-order-method--delivery-service,
.block-order-method--date-spec,
.block-order-method--regular-content,
.block-regular-cycle--deliv_date,
.block-order-method--time-spec {
  padding: 0;
  border-bottom: none;

  &:not(:first-child) {
    margin-top: 32px;
  }
}

.block-order-method--delivery-service-title,
.block-order-method--date-spec-title,
.block-order-method--time-spec-title {
  margin-bottom: 8px;
  color: var(--cl-bl);
  font-size: 1.2rem;
  font-weight: 700;
}

.block-order-method--date-spec-content,
.block-order-method--time-spec-content {
  font-size: 12px;
  color: var(--cl-gy);
}

.block-order-method--delivery-service-select {
  display: flex;
  align-items: center;
  font-size: 1.4rem;

  li + li {
    margin-left: 20px;
  }

  label {
    margin-right: 0;
  }

  label + input + label {
    margin-left: 20px;
  }
}

.block-order-method--delivery-help {
  margin-top: 20px;
}

.block-order-method--delivery-help-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 32px;
  border: 2px solid var(--cl-pgr);
  background-color: #ffffff;
  color: var(--cl-pgr);
  font-size: 12px;
  line-height: 1;
  cursor: pointer;

  &::before {
    content: "";
    display: inline-block;
    position: relative;
    width: 15px;
    height: 15px;
    margin-right: 8px;
    background-image: url(../../img/usr/order/sp/order_icon_help.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }
}

.block-common-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  z-index: 99999;
}

.block-common-modal-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.block-common-modal-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(51, 51, 51, 0.6);
}

.block-common-modal-body {
  position: relative;
  width: calc(100vw - 32px);
  max-height: calc(100vh - 32px);
  max-height: calc(100dvh - 32px);
  padding: 20px;
  border: 2px solid #ededed;
  background-color: #ffffff;
  overflow: auto;

  .block-common-modal-close_btn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 18px;
    height: 18px;
    cursor: pointer;

    &::before,
    &::after {
      content: "";
      display: block;
      position: absolute;
      top: 50%;
      left: 50%;
      width: 23px;
      height: 2px;
      margin: -1px 0 0 -13px;
      background-color: var(--cl-bk);
    }

    &::before {
      transform: rotate(45deg);
    }

    &::after {
      transform: rotate(-45deg);
    }
  }

  h2 {
    margin: 0;
    padding: 0;
    border: none;
    color: var(--cl-pgr);
    font-size: 16px;
    font-weight: 700;
    text-align: center;
  }
}

.variation_cart_modal .block-common-modal-body {
  padding: 34px 16px 20px;
}

#add-cart .block-common-modal-body {
  padding: 20px 16px;
}

.block-order-method--delivery-note {
  margin-top: 20px;
  font-size: 1.2rem;
}

.block-order-method--promotion-title,
.block-order-method--point-use-title,
.block-order-method--payment-method-title,
.block-order-method--coupon-title,
.block-order-method--shipping-title {
  margin-bottom: 8px;
  color: var(--cl-bl);
  font-size: 12px;
  font-weight: 700;
}

.block-order-method--promotion,
.block-order-method--point-use,
.block-order-method--payment-method,
.block-order-method--coupon,
.block-order-method--shipping {
  padding: 0;
  border-bottom: none;

  &:not(:first-child) {
    margin-top: 32px;
  }
}

.block-order-method--coupon-content,
.block-order-method--promotion-content {
  font-size: 12px;

  > p {
    margin-bottom: 4px;
  }
}

.block-order-method--coupon-available-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 32px;
  padding: 0;
  border: none;
  background-color: var(--cl-pgr);
  color: #ffffff;
  font-size: 12px;
  text-align: center;
}

.block-order-method--shipping-content {
  dl {
    display: flex;
    font-size: 14px;
  }
}

.help-block {
  margin-top: 12px;
  color: var(--cl-gy);
  font-size: 12px;
}

.block-order-method--current-point {
  font-size: 14px;
}

.block-order-method--point-use-select {
  margin-top: 20px;
  font-size: 14px;

  li {
    display: flex;
    align-items: center;
  }

  li + li {
    margin-top: 20px;
  }

  input[name="pointpay_num"] {
    font-size: 1.2rem;
  }
}

.block-order-method--payment-method-select {
  font-size: 14px;

  li {
    margin: 0;

    .help-block {
      font-size: 11px;
    }
  }

  li + li {
    margin-top: 20px;
  }
}

.block-order-method--payment-method-select .help-block {
  margin-top: 0;
  padding-left: 24px;
}

.block-order-method--sales-append-container {
  .fieldset-vertical {
    margin: 0;
  }

  .fieldset-vertical .form-label {
    margin-bottom: 8px;
    color: var(--cl-bl);
    font-size: 1.2rem;
    font-weight: 700;
  }

  .fieldset-vertical .form-group {
    margin: 0;

    & + .form-group {
      margin-top: 32px;
    }
  }

  label:has(input) {
    + label {
      margin-top: 16px;
    }
  }

  select {
    width: 100%;
  }
}

.block-order-bot--submit-btn {
  margin-top: 56px;

  li {
    & + .list-back {
      margin-top: 40px;
    }
  }

  .list-back {
    .btn-sld {
      min-height: 32px;
      font-size: 12px;
      font-weight: 400;
    }
  }

  .list-submit {
    .btn-bdr span {
      font-size: 12px;
      font-weight: 700;
    }
  }
}

.block-order-method--delivery-help-list {
  margin-top: 40px;

  .list-item {
    font-size: 12px;

    & + .list-item {
      margin-top: 32px;
    }

    h3 {
      margin: 0 0 12px;
      padding: 0;
      border: none;
      font-size: 1.2rem;
      font-weight: 700;
    }

    p {
      color: var(--cl-gy);
    }

    img {
      display: block;
      width: 100%;
      height: auto;
      margin-top: 20px;
    }
  }
}

.block-order-method--contents .block-order-method--payment-content input[type="text"][name="promotion_code"],
.block-order-method--contents .block-order-method--payment-content input[type="text"][name="coupon"] {
  max-width: none;
}

.block-goods-payment-icon {
  margin-top: 40px;
  font-size: 1.2rem;

  .item-ttl {
    margin-bottom: 8px;
    color: var(--cl-bl);
    font-weight: 700;
  }

  ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;

    img {
      display: block;
      width: auto;
      height: 20px;
    }
  }
}

.block-common-alert-list {
  margin-top: 20px;
  padding: 20px;
  border: 2px solid var(--cl-rd);
  color: var(--cl-rd);
  font-size: 1.4rem;
  font-weight: 700;

  a {
    color: var(--cl-rd);
    text-decoration: underline;
  }

  & + .block-order-estimate--sales-delivery-comment {
    margin-top: 32px;
  }
}

.block-cart--age_confirmation {
  margin-top: 20px;
  padding: 20px;
  border: 2px solid var(--cl-rd);
  font-size: 14px;

  .ttl {
    color: var(--cl-rd);
    font-weight: 700;
  }

  .comment {
    margin-top: 20px;
    font-size: 12px;
    color: var(--cl-gy);
  }

  .input {
    display: flex;
    align-items: center;
    margin-top: 20px;
    font-size: 14px;

    input {
      width: 54px;
      height: 28px;
      margin: 0 12px;
      border-color: var(--cl-gy);
    }
  }
}

.block-cart--cart-info {
  margin-top: 36px;
}

.block-cart--cart-content {
  > div {
    display: flex;
    padding: 20px 0;
    font-size: 12px;

    & + div {
      border-top: 2px solid var(--cl-lpgr);
    }

    dt {
      width: 104px;
      color: var(--cl-bl);
      font-weight: 700;
    }

    dd {
      width: calc(100% - 104px);
    }

    .subtotal {
      font-size: 1.6rem;
      font-weight: 700;

      .tax {
        font-size: 1.2rem;
        font-weight: 400;
      }
    }

    .free-shipping {
      margin-top: 8px;
      color: var(--cl-gy);
    }

    &.list-payment {
      display: block;

      dt,
      dd {
        width: 100%;
      }

      .block-goods-payment-icon {
        margin-top: 12px;
      }
    }
  }
}

.block-cart--cart-goods {
  margin-top: 20px;
}

.block-cart--cart-goods-list {
  .list-item {
    display: flex;
    gap: 12px;
    padding: 20px;
    border: none;
    background-color: var(--cl-lpgr);

    & + .list-item {
      margin-top: 20px;
    }

    .list-img {
      width: 120px;

      img {
        display: block;
        width: 100%;
        height: auto;
      }

      .block-goods-favorite {
        display: none;
      }
    }

    .list-detail {
      width: calc(100% - 132px);
      font-size: 12px;
      line-height: 1.333;
    }

    .list-price {
      margin-top: 20px;
    }

    .list-form {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 20px;
    }

    .list-qty {
      select {
        font-size: 12px;
        color: var(--cl-bk);
      }

      input {
        width: 66px;
        height: 28px;
      }
    }

    .block-cart--goods-list-item-delete-btn {
      display: block;
      width: 16px;
      height: 18px;
      background-image: url(../../img/usr/order/sp/icon_cart_deleta.png);
      background-position: center;
      background-repeat: no-repeat;
      background-size: contain;
      text-indent: -999999px;
      cursor: pointer;
    }
  }
}

.block-cart--resevation_code {
  margin-top: 20px;
  padding: 20px;
  border: 2px solid var(--cl-or);
  font-size: 12px;

  .ttl {
    color: var(--cl-or);
    font-size: 14px;
    font-weight: 700;
  }

  .comment {
    margin-top: 12px;
  }

  .company {
    margin-top: 12px;
    color: var(--cl-gy);
  }
}

.block-cart--submit {
  margin-top: 20px;

  .list-item {
    & + .list-item {
      margin-top: 32px;
    }
  }

  .list-item label span {
    font-size: 16px;
  }
}

.block-goods_list-history,
.block-goods_list-recommend {
  padding: 20px 0;

  &.block-goods_list-history {
    background-color: #ededed;
    margin-top: 40px;

    h2 {
      display: flex;
      align-items: center;
      position: relative;
      margin: 0;
      padding: 0 20px;
      border: none;
      font-size: 12px;
      font-weight: 700;

      &::before {
        content: "";
        display: inline-block;
        position: relative;
        width: 18px;
        height: 18px;
        margin-right: 6px;
        background-image: url(../../img/usr/common/sp/icon_history_ttl.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
      }
    }
  }

  &.block-goods_list-recommend {
    background-color: var(--cl-lpgr);
    margin-top: 20px;

    h2 {
      margin: 0;
      padding: 0 20px;
      border: none;
      color: var(--cl-pgr);
      font-size: 1.4rem;
      font-weight: 700;
    }
  }
}

.block-goods_list-history-list,
.block-goods_list-recommend-list {
  margin-top: 20px;

  .list-items {
    display: flex;
    padding: 0 20px;
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;

    &::-webkit-scrollbar {
      display: none;
    }
  }

  .list-item {
    flex-shrink: 0;
    width: 120px;
    margin-right: 20px;
  }

  .list-img {
    img {
      display: block;
      width: 100%;
      height: auto;
      border-radius: 4px;
      aspect-ratio: 1 / 1;
    }
  }

  .list-name {
    margin-top: 12px;
    font-size: 11px;
    line-height: 1.4;

    p {
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;
      overflow: hidden;
    }
  }
}

.block-order-complete--body,
.block-order-method,
.block-cart--body {
  .block-goods_list-history {
    margin: 56px -20px 0;
  }
}

.block-order-estimate--novelty,
.block-order-estimate--summary {
  order: unset;
}

.block-order-estimate h2 {
  margin: 0 0 20px;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--cl-pgr);
  font-size: 16px;
  font-weight: 700;
}

.block-order-estimate--goods-delivary-date {
  dt {
    color: var(--cl-bl);
    font-size: 1.2rem;
    font-weight: 700;
  }

  dd {
    margin-top: 12px;
    font-size: 14px;

    .note {
      position: relative;
      margin-top: 8px;
      padding-left: calc(1em + 3px);
      font-size: 11px;
      color: var(--cl-gy);

      &::before {
        content: "※";
        position: absolute;
        top: 0;
        left: 0;
        color: var(--cl-rd);
      }
    }
  }
}

.block-order-estimate--goods-content {
  margin: 12px 0 0;
  border: none;
  border-bottom: none;
  background: #fff;

  li {
    padding: 20px;
    border: none;

    & + li {
      margin-top: 20px;
    }

    background-color: var(--cl-lpgr);
  }

  .block-order-estimate--goods-item-image {
    width: 120px;

    figure {
      width: 120px;
      height: 120px;
      background: transparent;
    }

    img {
      display: block;
      width: 100%;
      height: auto;
    }
  }

  .block-order-estimate--goods-description {
    width: calc(100% - 120px);
    padding-left: 8px;
    font-size: 12px;

    .block-order-estimate--goods-name {
      font-weight: 400;
      line-height: 1.4;
    }

    .block-order-estimate--goods-set-name {
      font-weight: 400;
      line-height: 1.4;
    }

    .block-order-estimate--goods-price,
    .block-order-estimate--goods-qty {
      margin-top: 20px;
    }

    .block-order-estimate--goods-price-num {
      color: var(--cl-gy);
      font-weight: 700;
    }
  }

  & + .block-order-estimate--goods-delivary-date {
    margin-top: 40px;
  }
}

.block-order-estimate--novelty,
.block-order-estimate--summary,
.block-order-estimate--dest,
.block-order-estimate--date-spec-confirmation,
.block-order-estimate--method-pay,
.block-order-estimate--sales-append,
.block-order-estimate-total,
.block-order-estimate-point,
h2.block-order-estimate--novelty-title:not(:first-child) {
  margin-top: 40px;
}

.block-order-estimate--novelty-comment {
  font-size: 14px;
}

.block-order-estimate--novelty-content {
  margin-top: 20px;
  padding: 0;
  border: none;
  background-color: transparent;
}

.block-order-estimate--novelty-content-item {
  h3 {
    margin: 0 0 12px;
    padding: 0 0 8px;
    border-bottom: 2px solid var(--cl-bl);
    font-size: 1.4rem;
    font-weight: 400;
  }

  & + .block-order-estimate--novelty-content-item {
    margin-top: 40px;
  }

  .novelty-qty {
    dt {
      color: var(--cl-bl);
      font-size: 1.2rem;
      font-weight: 700;
    }

    dd {
      margin-top: 16px;
      font-size: 1.4rem;

      .note {
        position: relative;
        margin-top: 8px;
        padding-left: calc(1em + 3px);
        font-size: 1.1rem;

        &::before {
          content: "※";
          position: absolute;
          top: 0;
          left: 0;
          color: var(--cl-rd);
        }
      }
    }
  }

  .novelty-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 12px;

    .list-item {
      width: calc((100% - 12px) / 2);
      padding: 12px;
      background-color: var(--cl-lpgr);
    }

    .list-img {
      img {
        display: block;
        width: 100%;
        height: auto;
        border-radius: 4px;
        aspect-ratio: 1 / 1;
        object-fit: cover;
      }
    }

    .list-detail {
      margin-top: 8px;
    }

    .list-name {
      font-size: 12px;
      line-height: 1.4;
    }

    .list-qty {
      margin-top: 11px;
    }

    .list-qty-select {
      display: flex;
      align-items: center;
      justify-content: flex-end;

      dt {
        font-size: 1.2rem;
      }

      dd {
        margin-left: 5px;

        select {
          width: 64px;
          height: 28px;
          font-size: 1.2rem;
        }
      }
    }

    .list-qty-txt {
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
    }
  }
}

.block-order-estimate--delivery-summary {
  padding: 0;
  border-bottom: none;
  font-size: 12px;
}

.block-order-estimate--delivery-info {
  margin-top: 20px;
}

.block-order-estimate--delivery-name {
  font-weight: 400;
}

.block-order-estimate--dest-content {
  position: relative;
  font-size: 1.2rem;

  address {
    width: calc(100% - 40px);
  }
}

.block-order-estimate--dest-name {
  margin-top: 20px;
}

.block-order-estimate--change-btn {
  width: 20px;
  height: 23px;
  background-image: url(../../img/usr/order/sp/icon_order_edit.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  text-indent: -999999px;
}

.block-order-estimate--dest .block-order-estimate--change-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 20px;
}

.block-order-estimate--date-spec,
.block-order-estimate--time-spec {
  padding: 0;

  &:not(:first-child) {
    margin-top: 32px;
  }
}

.block-order-estimate--change-btn-ttl {
  display: flex;
  align-items: center;
  position: relative;
  width: max-content;

  h3 {
    margin: 0 0 12px;
    padding: 0;
    color: var(--cl-bl);
    border: none;
    font-size: 12px;
    font-weight: 700;
  }

  .block-order-estimate--change-btn {
    position: absolute;
    top: 0;
    right: -28px;
    width: 20px;
    margin-left: 8px;
  }
}

.block-order-estimate--point,
.block-order-estimate--promotion-code,
.block-order-estimate--coupon {
  margin-top: 32px;
  font-size: 14px;
}

.block-order-estimate--method {
  .help-block {
    font-size: 11px;
  }
}

.block-order-estimate--method-name {
  font-size: 14px;
}

.block-order-estimate--point {
  .help-block {
    font-size: 11px;
  }
}

.block-order-estimate--promotion {
  .block-order-estimate--discount-period {
    font-size: 11px;
  }
}

.block-order-estimate--promotion-code-message,
.block-order-estimate--coupon-apply-message {
  padding: 0;
}

.block-order-estimate--pay-input {
  margin: 32px 0 0;
}

.block-order-estimate--pay-detail {
  margin: 0;
  border: none;
}

.block-order-estimate--pay-detail .form-group {
  border: none;

  + .form-group {
    margin-top: 32px;
  }

  + .block-order-estimate--pay-card-brand {
    margin-top: 20px;
  }
}

.block-order-estimate--pay-selectcard .form-control {
  padding: 0;
}

.block-order-estimate--pay-detail .form-label {
  padding: 0;
  margin: 0;
  float: none;
}

.fieldset-vertical .form-label label {
  color: var(--cl-bl);
  font-size: 1.2rem;
  font-weight: 700;
}

.block-order-estimate--pay-detail .form-control {
  margin: 12px 0 0;
  padding: 0;
  font-size: 14px;

  .help-block {
    font-size: 11px;
  }
}

.block-order-estimate--pay-card-brand {
  select {
    width: 100%;
  }
}

.block-order-estimate--pay-card,
.block-order-estimate--pay-security-code {
  input {
    width: 100%;
  }
}

.block-order-estimate--pay-expire {
  .form-control {
    font-size: 12px;
  }

  select[name="card_m"] {
    margin-right: 0.5em;
  }

  select[name="card_y"] {
    margin: 0 0.5em;
  }
}

.block-order-estimate--pay-savecard {
  font-size: 1.4rem;
}

.block-order-estimate--sales-append {
  border: none;
}

.block-order-estimate--sales-append-list {
  &.table,
  thead,
  tbody,
  tr,
  th,
  td {
    display: block;
    padding: 0;
    border: none;
    background-color: transparent;
  }

  tr + tr {
    margin-top: 32px;
  }
}

.block-order-estimate-total-list {
  > div {
    display: flex;
    align-items: baseline;
    padding: 0 0 20px;
    font-size: 12px;

    & + div {
      padding-top: 20px;
      border-top: 2px solid var(--cl-lpgr);
    }

    dt {
      width: 144px;
      color: var(--cl-bl);
      font-weight: 700;
    }

    dd {
      width: calc(100% - 144px);
    }

    .total-price {
      b {
        font-size: 16px;
      }
    }

    & + div:last-child {
      padding: 20px 0 0;
    }
  }
}

.block-order-estimate-point-content {
  > div {
    + div {
      margin-top: 32px;
    }

    dt {
      color: var(--cl-bl);
      font-size: 12px;
      font-weight: 700;
    }

    dd {
      margin-top: 8px;
      font-size: 14px;

      .help-block {
        font-size: 11px;
      }
    }
  }
}

.block-order-estimate-terms {
  margin-top: 56px;

  li {
    position: relative;
    padding-left: 1em;
    font-size: 14px;

    span {
      color: #f87a49;
      text-decoration: underline;
      cursor: pointer;
    }

    &::before {
      content: "※";
      position: absolute;
      top: 0;
      left: 0;
      color: var(--cl-rd);
    }
  }
}

.block-order-estimate-terms + .block-order-bot--submit-btn {
  margin-top: 32px;
}

.block-modal-terms_of_service {
  margin-top: 20px;
  padding: 20px;
  border: 2px solid var(--cl-lpgr);
  font-size: 12px;
  line-height: 1.333;

  p + p {
    margin-top: 1.5em;
  }
}

.block-modal-terms_of_service-list {
  margin-top: 40px;

  .layer-1st {
    .layer-1st-item {
      & + .layer-1st-item {
        margin-top: 32px;
      }

      .ttl {
        color: var(--cl-bl);
        font-weight: 700;
      }

      .list-no {
        margin-top: 8px;
        counter-reset: counter;

        > li {
          display: table;
          position: relative;
          list-style-type: none;

          &::before {
            content: "[" counter(counter) "]";
            counter-increment: counter;
            display: table-cell;
            padding-right: 5px;
          }

          & + li {
            margin-top: 20px;
          }
        }
      }
    }
  }
}

.block-modal-return_policy {
  margin-top: 20px;
  padding: 20px;
  border: 2px solid var(--cl-lpgr);
  font-size: 12px;
  line-height: 1.333;

  p + p {
    margin-top: 1.5em;
  }

  .item-btn {
    margin: 24px 0;

    .btn-bdr {
      font-size: 1.4rem;
    }
  }
}

.block-order-estimate--container .block-order-bot--submit-btn {
  margin-top: 32px;

  & .list-submit {
    .btn-bdr span {
      font-size: 16px;
    }

    .help-block {
      margin-top: 20px;
      font-size: 11px;
    }
  }

  & .list-back {
    margin-top: 32px;
  }
}

.block-cart--submit [id^="cart_next"] {
  display: none;
}

.block-order-bot--submit-btn #order_next {
  display: none;
}

.block-order-bot--submit-btn #estimate_next {
  display: none;
}

.block-cart--nodata {
  width: 100%;
  margin: 0 auto 80px;
  text-align: center;
}

.block-cart--nodata-message {
  margin: 20px 0 40px;
  color: #333;
  font-size: 14px;
}

#order_back span {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.block-cart--goods-list-item-sales-info {
  margin-top: 20px;
}

.block-cart--sales-detail-append-spec {
  margin-top: 20px;
}

#estimate_next.block-order-estimate--commit-btn {
  display: none;
}

.block-order-complete .btn-bdr span {
  font-size: 14px;
}

.block-goods-list-naviframe--bottom {
  margin-bottom: 40px;
}

.block-topic-path + #block_of_itemhistory {
  #block_of_history {
    margin-top: 0;
  }
}

.block-goods-detail-footer {
  position: fixed;
  left: 0;
  z-index: 999;
  top: calc(100dvh - 72px);
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  border: 1px solid #c8c8c8;
  margin: 0;
  height: 72px;
  padding: 12px 20px;

  &:has(.block-variation--item-dropdown) {
    top: calc(100dvh - 112px);
    height: 112px;
  }

  .block-goods-price {
    margin: 0;

    .block-goods-price--price {
      font-size: 14px;
      font-weight: 400;
    }
  }

  .block-goods-detail-cart {
  }

  .block-variation--item-dropdown {
    margin-bottom: 12px;
  }
}

.block-order-estimate--pay-ttl {
  margin-bottom: 20px;
}

.block-thumbnail-t--novelty-icon {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;

  img {
    display: block;
    width: auto;
    height: 20px;
  }
}

.modal-body {
  max-height: calc(100vh - 100px);
  max-height: calc(100dvh - 100px);
  padding: 10px;
  overflow: auto;
}
