@charset "UTF-8";
/*
-- Import CSS
-------------------------------------------------- */
/*
-- Layout CSS
-------------------------------------------------- */
.site-header {
  background-color: #fff;
  width: 100%;
  height: 120px;
  padding: 0;
  position: relative;
}
.site-header .header-nar {
  background-color: #fff;
  padding: 10px 30px 45px;
  width: 100%;
  height: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: #D4000B 2px solid;
}
.site-header .gnav-bar {
  background-color: #D4000B;
  background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.2) 25%, rgba(255, 255, 255, 0) calc(25% + 1px), rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.2) calc(50% + 1px), rgba(255, 255, 255, 0.2) 75%, rgba(255, 255, 255, 0) calc(75% + 1px));
  background-repeat: repeat;
  background-position: left top;
  background-size: 20px 20px;
  border-radius: 5px;
  margin: 0 30px 0;
  padding: 0 20px;
  position: absolute;
  width: calc(100% - 60px);
  top: calc(100% - 35px);
  z-index: 10;
}
.site-header .drawer-btn {
  display: none;
}

@media (max-width: 991px) {
  .site-header {
    background-color: #fff;
    width: 100%;
    height: 72px;
  }
  .site-header .header-nar {
    padding: 10px 15px 10px;
    height: 72px;
  }
  .site-header .header-btns-wrap {
    display: none;
  }
  .site-header .gnav-bar {
    display: none;
  }
  .site-header .drawer-btn {
    display: block;
  }
}
@media (max-width: 640px) {
  .site-header {
    height: 72px;
  }
  .site-header .header-nar {
    padding: 10px 15px 10px;
    height: 72px;
  }
  .site-header .header-btns-wrap {
    display: none;
  }
  .site-header .gnav-bar {
    display: none;
  }
  .site-header .drawer-btn {
    display: block;
  }
}
.site-logo {
  position: relative;
  margin-bottom: 0;
}
.site-logo .logo-inner {
  display: block;
}
.site-logo .logo-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.site-logo .logo-img {
  width: 190px;
  height: auto;
  aspect-ratio: 38/8;
}
.site-logo .logo-text {
  width: 150px;
  height: auto;
  aspect-ratio: 30/8;
}

@media (max-width: 991px) {
  .site-logo .logo-img {
    width: auto;
    height: 30px;
  }
  .site-logo .logo-text {
    width: auto;
    height: 30px;
    aspect-ratio: 30/8;
  }
}
.header-btns-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-btns-wrap .tax-free {
  border: 1px solid #D4000B;
  padding: 8px 10px;
  margin-left: 10px;
}
.header-btns-wrap .tax-free .icon {
  width: 90px;
}
.header-btns-wrap .btn {
  font-size: 0.8125rem;
  font-weight: bold;
  line-height: 1.3;
  margin-left: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  min-width: 80px;
  min-height: 42px;
  height: 42px;
  border-radius: 8px;
}
.header-btns-wrap .btn:hover, .header-btns-wrap .btn:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.header-btns-wrap .btn .icon {
  margin-right: 5px;
}

@media (max-width: 991px) {
  .header-btns-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header-btns-wrap .btn-tel .icon {
    width: 16px;
  }
  .header-btns-wrap .btn-access .icon {
    width: 12px;
  }
  .header-btns-wrap .btn-contact .icon {
    width: 16px;
  }
  .header-btns-wrap .btn {
    font-size: 0.875rem;
    font-weight: bold;
    margin-left: 8px;
    padding: 13px 10px;
  }
  .header-btns-wrap .btn .icon {
    margin-right: 5px;
  }
}
.gnav-bar .nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 60px;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.gnav-bar .nav-list .item {
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  position: relative;
}
.gnav-bar .nav-list .item:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 20px;
  display: block;
  background-color: #fff;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.gnav-bar .nav-list .link {
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  display: inline-block;
  padding: 10px 20px;
  -webkit-transition: all 300ms 0s ease;
  transition: all 300ms 0s ease;
}
.gnav-bar .nav-list .link:hover, .gnav-bar .nav-list .link:active {
  opacity: 1;
  color: #C4D400;
}

.drawer-btn {
  width: 50px;
  height: 50px;
  position: absolute;
  padding: 0;
  right: 15px;
  top: 15px;
  border: 0;
  background-color: #fff;
}
.drawer-btn .text {
  font-size: 0.625rem;
  font-weight: blod;
  color: #D4000B;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.drawer-btn .icon-bar {
  position: absolute;
  display: block;
  border-top: 2px solid #D4000B;
  border-bottom: 2px solid #D4000B;
  width: 20px;
  height: 16px;
  left: 50%;
  top: 11px;
  -webkit-transform: translate(-50%, 0) rotate(0);
          transform: translate(-50%, 0) rotate(0);
  overflow: hidden;
  -webkit-transition-property: border-top border-bottom;
  transition-property: border-top border-bottom;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.drawer-btn .icon-bar::before, .drawer-btn .icon-bar::after {
  content: "";
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  display: block;
  position: absolute;
  height: 2px;
  width: 20px;
  left: 50%;
  top: 50%;
  background-color: #D4000B;
  -webkit-transform: translate(-50%, -50%) rotate(0);
          transform: translate(-50%, -50%) rotate(0);
}
.drawer-btn:hover, .drawer-btn:active {
  opacity: 1;
}
.drawer-btn.active {
  opacity: 1;
}
.drawer-btn.active .drawer-btn-text.open {
  opacity: 0;
}
.drawer-btn.active .drawer-btn-text.close {
  opacity: 1;
}
.drawer-btn.active .icon-bar {
  border-top: 0;
  border-bottom: 0;
}
.drawer-btn.active .icon-bar::before {
  -webkit-transform: translate(-50%, -50%) rotate(-225deg);
          transform: translate(-50%, -50%) rotate(-225deg);
}
.drawer-btn.active .icon-bar::after {
  -webkit-transform: translate(-50%, -50%) rotate(225deg);
          transform: translate(-50%, -50%) rotate(225deg);
}

.drawer-wrap {
  display: none;
  position: absolute;
  top: 70;
  left: 0;
  width: 100%;
  height: calc(100% - 70px);
  background-color: #fff;
  z-index: 1000;
  padding: 20px 15px;
}
.drawer-wrap .sp-nav-list {
  margin-top: 20px;
}
.drawer-wrap .item {
  border-bottom: 1px dashed #FFB2B2;
}
.drawer-wrap .item:first-child {
  border-top: 1px dashed #FFB2B2;
}
.drawer-wrap .link {
  font-size: 1rem;
  font-weight: normal;
  padding: 12px 20px;
  text-align: left;
  width: 100%;
  display: block;
}
.drawer-wrap .btn {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.16);
  min-width: 90px;
  margin-bottom: 10px;
}
.drawer-wrap .btn:hover, .drawer-wrap .btn:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.drawer-wrap .btn .icon {
  margin-right: 5px;
}
.drawer-wrap .tax-free {
  max-width: 180px;
  margin: 20px auto 0;
  border: 1px solid #D4000B;
  padding: 8px 10px;
  display: block;
  background-color: #fff;
}

.drawer-wrap.open {
  display: block;
}

.main-wrap {
  padding-top: 40px;
}

@media (max-width: 991px) {
  .main-wrap {
    padding-top: 0;
  }
}
.store-body {
  margin-bottom: 80px;
  margin-top: 60px;
}

@media (max-width: 991px) {
  .store-body {
    margin-bottom: 60px;
    margin-top: 40px;
  }
}
.breadcrumbs + .store-body {
  margin-top: 0;
}

@media (max-width: 991px) {
  .category-nav + .store-body {
    margin-top: 40px;
  }
}
.store-page-title {
  font-size: 1.875rem;
  font-weight: bold;
  position: relative;
  margin-bottom: 30px;
}
.store-page-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 10px;
  background-color: #D4000B;
  background-image: linear-gradient(135deg, #c4d400 57px, rgba(196, 212, 0, 0) 58px), linear-gradient(-45deg, white 25%, rgba(255, 255, 255, 0) calc(25% + 1px), rgba(255, 255, 255, 0) 50%, white calc(50% + 1px), white 75%, rgba(255, 255, 255, 0) calc(75% + 1px));
  background-repeat: no-repeat, repeat;
  background-position: left top;
  background-size: 80px 10px, 6px 6px;
  margin-top: 7px;
}
@media (max-width: 991px) {
  .store-page-title {
    font-size: 1.5rem;
  }
}
@media (max-width: 640px) {
  .store-page-title {
    font-size: 1.375rem;
  }
  .store-page-title::after {
    background-size: 80px 10px, 6px 6px;
  }
}

.container-large {
  max-width: 1480px;
  width: 100%;
}

.store-header {
  background-color: #212121;
  background-image: url(../img/store/mv-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 70px 30px 50px;
  min-height: 420px;
  color: #fff;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.store-header .inner-header {
  width: 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
}
.store-header .inner-search {
  position: absolute;
  right: 40px;
  bottom: 40px;
}
.store-header .store-title {
  font-size: 2.375rem;
  font-weight: bold;
  color: #fff;
  margin: 0;
  padding-left: 40px;
}

@media (max-width: 991px) {
  .store-header {
    display: none;
    background-color: #212121;
    background-image: url(../img/store/mv-bg.jpg);
    padding: 25px 20px 25px;
    min-height: 220px;
  }
  .store-header .store-title {
    font-size: 1.625rem;
    font-weight: bold;
    padding: 0;
    color: #fff;
  }
  .store-header .inner-header {
    width: 100%;
  }
  .store-header .inner-search {
    right: 15px;
    bottom: 15px;
  }
}
.header-search {
  --hs-height: 42px;
  --hs-bd-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
.header-search .btn {
  min-height: var(--hs-height);
  height: var(--hs-height);
  padding: 3px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: bold;
  margin: 0;
}
.header-search .btn .icon {
  width: 18px;
  height: auto;
}
.header-search .btn-detail-open {
  min-width: 140px;
}
.header-search .simple-search {
  --ss-height: var(--hs-height);
  --ss-bd-radius: var(--hs-bd-radius);
  --ss-btn-width: calc(var(--ss-height) + 5px);
}

@media (max-width: 991px) {
  .header-search {
    display: none;
    --hs-height: 40px;
  }
  .header-search .btn-detail-open {
    display: none;
  }
}
.simple-search {
  --ss-height: 46px;
  --ss-bd-radius: 8px;
  --ss-btn-width: calc(var(--ss-height) + 5px);
  width: 280px;
}
.simple-search form {
  width: 100%;
}
.simple-search .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.simple-search .form-control {
  border-radius: var(--ss-bd-radius) 0 0 var(--ss-bd-radius);
  height: var(--ss-height);
  width: calc(100% - var(--ss-btn-width));
  border-color: #E06C16;
}
.simple-search .btn {
  border-radius: 0 var(--ss-bd-radius) var(--ss-bd-radius) 0;
  min-width: var(--ss-btn-width);
  width: var(--ss-btn-width);
  min-height: var(--ss-height);
  height: var(--ss-height);
  padding: 3px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.simple-search .btn:focus, .simple-search .btn:disabled, .simple-search .btn:visited, .simple-search .btn:focus {
  -webkit-transform: none;
          transform: none;
}
.simple-search .btn .icon {
  width: 18px;
  height: auto;
}

@media (max-width: 991px) {
  .simple-search {
    --ss-height: 38px;
    --ss-bd-radius: 38px;
    --ss-btn-width: var(--ss-height);
    width: 100%;
  }
}
/*
* footer
* --------------------------------------------------*/
.footer-banner {
  padding: 50px 0 30px;
}

.footer-guide {
  background-color: #F5f5f5;
  padding: 40px 0 30px;
}
.footer-guide .heading {
  font-size: 1.5pxrem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}
.footer-guide .guide-list .guide-item {
  margin-bottom: 10px;
}
.footer-guide .guide-btn {
  background-color: #fff;
  border: 2px solid #FFB2B2;
  color: #241613;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-radius: 5px;
  text-align: center;
  line-height: 1.5;
  min-height: 80px;
  padding: 5px;
}
.footer-guide .guide-btn:focus, .footer-guide .guide-btn:disabled, .footer-guide .guide-btn:visited, .footer-guide .guide-btn:focus {
  background-color: #fff;
  border: 2px solid #FFB2B2;
  color: #241613;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.footer-guide .guide-btn:not(:disabled):not(.disabled):active, .footer-guide .guide-btn:not(:disabled):not(.disabled).active, .footer-guide .guide-btn:not(:disabled):not(.disabled):active:focus {
  background-color: inherit;
  border: 2px solid inherit;
  color: inherit;
}
.footer-guide .guide-btn:hover, .footer-guide .guide-btn:active, .footer-guide .guide-btn.touch {
  background-color: #fff;
  border: 2px solid #FFB2B2;
  color: #241613;
  opacity: 0.7;
}
.footer-guide .guide-btn .lg, .footer-guide .guide-btn .sm {
  display: block;
  line-height: 1.5;
  width: 100%;
}
.footer-guide .guide-btn .lg {
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1.4;
}
.footer-guide .guide-btn .sm {
  font-size: 0.8125rem;
  font-weight: normal;
  line-height: 1.4;
}

.category-nav {
  padding: 0 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.category-nav .category-nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-left: 1px solid #fff;
  width: 100%;
  gap: 8px;
}
.category-nav .category-nav-list .list-item {
  width: calc((100% + 8px) / 6 - 8px);
  margin-bottom: -1px;
}
@media (max-width: 991px) {
  .category-nav {
    padding: 0;
  }
  .category-nav .category-nav-list {
    border-left: 0;
    gap: 6px;
  }
  .category-nav .category-nav-list .list-item {
    width: calc(50% - 3px);
    border-right: 0;
  }
}
.category-nav .link {
  --icon-size: 66px;
  background-color: #efefef;
  border: 1px solid #bbbcbc;
  line-height: 1.3;
  letter-spacing: -0.05em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  width: 100%;
  position: relative;
  border-radius: 10px;
}
.category-nav .link:has(.icon-wrap) {
  --icon-size: 66px;
  min-height: 66px;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#fff), to(#fff));
  background-image: linear-gradient(0, #fff, #fff);
  background-size: 100% calc(100% - 20px);
  background-position: center center;
  background-repeat: no-repeat;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 0;
  padding: 5px;
  overflow: hidden;
}
.category-nav .link:has(.icon-wrap) .text, .category-nav .link:has(.icon-wrap) .en {
  width: calc(100% - var(--icon-size) - 6px);
  display: block;
  margin: 0;
  line-height: 1.1;
}
.category-nav .link:has(.icon-wrap) .text {
  font-size: 0.875rem;
  font-weight: bold;
}
.category-nav .link:has(.icon-wrap) .en {
  font-size: 0.8125rem;
  font-weight: bold;
}
.category-nav .link:has(.icon-wrap) .icon-wrap {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: var(--icon-size);
  height: var(--icon-size);
}
.category-nav .link:has(.icon-wrap) .icon-wrap img {
  position: absolute;
  width: 100%;
  height: 100%;
}
.category-nav .link:not(:has(.icon-wrap)) {
  padding: 5px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 66px;
}
.category-nav .link:not(:has(.icon-wrap)) .text {
  font-size: 0.875rem;
  font-weight: bold;
  width: calc(100% - 28px);
  display: block;
}
.category-nav .link:not(:has(.icon-wrap))::after {
  content: "";
  display: block;
  background-image: url("../img/store/arrow.svg");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 12px;
  height: 12px;
  position: absolute;
  left: 15px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
@media (max-width: 991px) {
  .category-nav .link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
  }
}
.category-nav .item-btn-inner {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.category-nav .btn-detail-open {
  width: 100%;
  background-color: #fffde8;
  border: 1px solid #bbbcbc;
  color: #E06C16;
  border-radius: 10px;
  -webkit-box-shadow: none;
          box-shadow: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
}
.category-nav .btn-detail-open:focus, .category-nav .btn-detail-open:disabled, .category-nav .btn-detail-open:visited, .category-nav .btn-detail-open:focus {
  background-color: #fffde8;
  border: 1px solid #bbbcbc;
  color: #E06C16;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.category-nav .btn-detail-open:not(:disabled):not(.disabled):active, .category-nav .btn-detail-open:not(:disabled):not(.disabled).active, .category-nav .btn-detail-open:not(:disabled):not(.disabled):active:focus {
  background-color: inherit;
  border: 1px solid inherit;
  color: inherit;
}
.category-nav .btn-detail-open:hover, .category-nav .btn-detail-open:active, .category-nav .btn-detail-open.touch {
  background-color: #fffde8;
  border: 1px solid #bbbcbc;
  color: #E06C16;
  opacity: 0.7;
}
.category-nav .btn-detail-open::before {
  content: "";
  position: relative;
  height: 18px;
  width: 18px;
  background-color: #E06C16;
  display: block;
  -webkit-mask-image: url(../img/common/icon-search.svg);
          mask-image: url(../img/common/icon-search.svg);
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}

.btn-header-nav-frontpage {
  background-color: #fffde8;
  border: 1px solid #bbbcbc;
  color: #212121;
  font-size: 14px;
  max-width: 360px;
  width: calc(100% - 30px);
  min-height: 32px;
  height: 32px;
  margin-inline: auto;
  border-radius: 10px;
  -webkit-box-shadow: none;
          box-shadow: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  position: relative;
}
.btn-header-nav-frontpage:focus, .btn-header-nav-frontpage:disabled, .btn-header-nav-frontpage:visited, .btn-header-nav-frontpage:focus {
  background-color: #fffde8;
  border: 1px solid #bbbcbc;
  color: #212121;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.btn-header-nav-frontpage:not(:disabled):not(.disabled):active, .btn-header-nav-frontpage:not(:disabled):not(.disabled).active, .btn-header-nav-frontpage:not(:disabled):not(.disabled):active:focus {
  background-color: inherit;
  border: 1px solid inherit;
  color: inherit;
}
.btn-header-nav-frontpage:hover, .btn-header-nav-frontpage:active, .btn-header-nav-frontpage.touch {
  background-color: #fffde8;
  border: 1px solid #bbbcbc;
  color: #212121;
  opacity: 0.7;
}
.btn-header-nav-frontpage::before {
  content: "";
  position: absolute;
  right: 10px;
  top: calc(50% - 6px);
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  height: 12px;
  width: 12px;
  background-color: #212121;
  display: block;
  -webkit-mask-image: url(../img/store/arrow.svg);
          mask-image: url(../img/store/arrow.svg);
  -webkit-mask-position: calc(50% - 2px) center;
          mask-position: calc(50% - 2px) center;
  -webkit-mask-size: 12px auto;
          mask-size: 12px auto;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
.btn-header-nav-frontpage.is-open::before {
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
}

@media (max-width: 991px) {
  .header-nav {
    display: none;
  }
  .header-nav.header-nav-frontpage {
    display: block;
    padding-left: 15px;
    padding-right: 15px;
    height: 280px;
    overflow: hidden;
  }
  .header-nav.header-nav-frontpage.is-open {
    height: auto;
  }
  .store-footer .category-nav .category-nav-list {
    gap: 6px;
  }
  .store-footer .category-nav .category-nav-list .list-item {
    width: calc(50% - 3px);
    border-right: 0;
  }
}
.sp-btn-bar {
  display: none;
  margin-bottom: 20px;
  -webkit-transition: top 0.5s ease-in-out;
  transition: top 0.5s ease-in-out;
}
.sp-btn-bar.is-fixed {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 100;
}
.sp-btn-bar .bar-btn {
  font-size: 0.875rem;
  font-weight: bold;
  background-color: #EDE4E4;
  color: #fff;
  padding: 8px 10px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sp-btn-bar .bar-btn:nth-child(odd) {
  border-right: 1px solid #fff;
}
.sp-btn-bar .bar-btn::before {
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  width: 14px;
  height: 14px;
  margin-top: -2px;
  margin-bottom: -2px;
  margin-right: 7px;
}
.sp-btn-bar .btn-cat {
  background-color: #3AACCE;
}
.sp-btn-bar .btn-cat::before {
  background-image: url(../img/store/icon-cat.svg);
}
.sp-btn-bar .btn-search {
  background-color: #E06C16;
}
.sp-btn-bar .btn-search::before {
  background-image: url(../img/store/icon-search.svg);
}

@media (max-width: 991px) {
  .sp-btn-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
/*
-- js
--------------------------------------------------*/
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("../slick/ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("../slick/fonts/slick.eot");
  src: url("../slick/fonts/slick.eot?#iefix") format("embedded-opentype"), url("../slick/fonts/slick.woff") format("woff"), url("../slick/fonts/slick.ttf") format("truetype"), url("../slick/fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

/*
-- Module CSS
-------------------------------------------------- */
.h2 {
  font-size: 1.875rem;
  font-weight: bold;
  position: relative;
}
.h2::after {
  content: "";
  display: block;
  width: 100%;
  height: 6px;
  background-color: #D4000B;
  background-image: linear-gradient(-45deg, white 25%, rgba(255, 255, 255, 0) calc(25% + 1px), rgba(255, 255, 255, 0) 50%, white calc(50% + 1px), white 75%, rgba(255, 255, 255, 0) calc(75% + 1px)), linear-gradient(135deg, #c4d400 16px, rgba(196, 212, 0, 0) 17px);
  background-repeat: repeat, no-repeat;
  background-position: left top;
  background-size: 6px 6px, 42px 10px;
  margin-top: 7px;
}
@media (max-width: 991px) {
  .h2 {
    font-size: 1.5rem;
  }
}
@media (max-width: 640px) {
  .h2 {
    font-size: 1.375rem;
  }
  .h2::after {
    background-color: #D4000B;
    background-image: linear-gradient(-45deg, white 25%, rgba(255, 255, 255, 0) calc(25% + 1px), rgba(255, 255, 255, 0) 50%, white calc(50% + 1px), white 75%, rgba(255, 255, 255, 0) calc(75% + 1px)), linear-gradient(135deg, #c4d400 16px, rgba(196, 212, 0, 0) 17px);
    background-size: 6px 6px, 22px 10px;
  }
}

.note-txt {
  font-size: 0.9375rem;
  padding-left: 20px;
  position: relative;
}
.note-txt::before {
  content: "※";
  position: absolute;
  left: 0;
}

.note-txt-indent {
  font-size: 0.9375rem;
  padding-left: 20px;
  text-indent: -20px;
}

.btn-small {
  font-size: 0.875rem;
  height: 40px;
  min-height: 40px;
  padding: 3px 10px;
}

.btn-xs {
  font-size: 0.75rem;
  height: 32px;
  min-height: 32px;
  padding: 3px 10px;
}

.btn-pink {
  background-color: #FFB2B2;
  border: 1px solid #FFB2B2;
  color: #fff;
}
.btn-pink:focus, .btn-pink:disabled, .btn-pink:visited, .btn-pink:focus {
  background-color: #FFB2B2;
  border: 1px solid #FFB2B2;
  color: #fff;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.btn-pink:not(:disabled):not(.disabled):active, .btn-pink:not(:disabled):not(.disabled).active, .btn-pink:not(:disabled):not(.disabled):active:focus {
  background-color: inherit;
  border: 1px solid inherit;
  color: inherit;
}
.btn-pink:hover, .btn-pink:active, .btn-pink.touch {
  background-color: #FFB2B2;
  border: 1px solid #FFB2B2;
  color: #fff;
  opacity: 0.7;
}

.btn-blue {
  background-color: #3AACCE;
  border: 1px solid #3AACCE;
  color: #fff;
}
.btn-blue:focus, .btn-blue:disabled, .btn-blue:visited, .btn-blue:focus {
  background-color: #3AACCE;
  border: 1px solid #3AACCE;
  color: #fff;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.btn-blue:not(:disabled):not(.disabled):active, .btn-blue:not(:disabled):not(.disabled).active, .btn-blue:not(:disabled):not(.disabled):active:focus {
  background-color: inherit;
  border: 1px solid inherit;
  color: inherit;
}
.btn-blue:hover, .btn-blue:active, .btn-blue.touch {
  background-color: #3AACCE;
  border: 1px solid #3AACCE;
  color: #fff;
  opacity: 0.7;
}

.btn-orange {
  background-color: #E06C16;
  border: 1px solid #E06C16;
  color: #fff;
}
.btn-orange:focus, .btn-orange:disabled, .btn-orange:visited, .btn-orange:focus {
  background-color: #E06C16;
  border: 1px solid #E06C16;
  color: #fff;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.btn-orange:not(:disabled):not(.disabled):active, .btn-orange:not(:disabled):not(.disabled).active, .btn-orange:not(:disabled):not(.disabled):active:focus {
  background-color: inherit;
  border: 1px solid inherit;
  color: inherit;
}
.btn-orange:hover, .btn-orange:active, .btn-orange.touch {
  background-color: #E06C16;
  border: 1px solid #E06C16;
  color: #fff;
  opacity: 0.7;
}

.btn-line {
  background-color: #00b900;
  border: 1px solid #00b900;
  color: #fff;
}
.btn-line:focus, .btn-line:disabled, .btn-line:visited, .btn-line:focus {
  background-color: #00b900;
  border: 1px solid #00b900;
  color: #fff;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.btn-line:not(:disabled):not(.disabled):active, .btn-line:not(:disabled):not(.disabled).active, .btn-line:not(:disabled):not(.disabled):active:focus {
  background-color: inherit;
  border: 1px solid inherit;
  color: inherit;
}
.btn-line:hover, .btn-line:active, .btn-line.touch {
  background-color: #00b900;
  border: 1px solid #00b900;
  color: #fff;
  opacity: 0.7;
}

.breadcrumbs {
  padding-top: 25px;
  padding-bottom: 25px;
}

.breadcrumbs-list {
  margin-bottom: 0;
}
.breadcrumbs-list .breadcrumbs-ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.breadcrumbs-list .item {
  padding: 0;
  margin-left: 0;
  margin-right: 0;
  color: #1e1e1e;
  font-size: 0.75rem;
}
.breadcrumbs-list .item:before {
  content: none;
}
.breadcrumbs-list .item:after {
  content: ">";
  margin: 0 10px 0 8px;
  position: relative;
  top: -2px;
}
.breadcrumbs-list .item:last-child:after {
  content: none;
}
.breadcrumbs-list .link {
  font-size: 0.75rem;
  font-weight: bold;
  color: #1563c7;
  padding: 0 0 2px;
  text-decoration: none;
}

.form-control {
  width: 100%;
}
.form-control.form-inline {
  display: inline-block;
}
.form-control.w-half {
  width: 50%;
}
.form-control.w-short {
  width: 120px;
}

.form-group .form-control {
  margin-bottom: 10px;
}
.form-group .form-control:last-child {
  margin-bottom: 0;
}
.form-group .form-control:only-child {
  margin-bottom: 0;
}

.form-wrap {
  max-width: 800px;
  margin: 20px auto 40px;
}
.form-wrap .form-group {
  border-top: 1px dashed #C4D400;
  margin-bottom: 0;
  padding: 15px 0;
}
.form-wrap .form-group:last-child {
  border-bottom: 1px dashed #C4D400;
}

.form-check {
  padding-left: 22px;
}
.form-check .form-check-input {
  display: none;
}
.form-check .form-check-label {
  line-height: 1.5;
}
.form-check .check-mark::before, .form-check .check-mark::after, .form-check .radio-mark::before, .form-check .radio-mark::after {
  content: "";
  display: block;
  position: absolute;
}
.form-check .check-mark::after, .form-check .radio-mark::after {
  visibility: hidden;
  opacity: 0;
}
.form-check .check-mark::before, .form-check .radio-mark::before {
  top: 7px;
  left: 0;
  height: 16px;
  width: 16px;
  border: 1px solid #999999;
  background-color: #fff;
}
.form-check .check-mark::before {
  border-radius: 4px;
}
.form-check .check-mark::after {
  left: 6px;
  top: 10px;
  width: 4px;
  height: 9px;
  border: 2px solid #D4000B;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.form-check .radio-mark::before {
  border-radius: 16px;
}
.form-check .radio-mark::after {
  left: 4px;
  top: 11px;
  width: 8px;
  height: 8px;
  background-color: #3AACCE;
  border-radius: 10px;
}
.form-check .form-check-input:checked + .check-mark::after, .form-check .form-check-input:checked + .radio-mark::after {
  visibility: visible;
  opacity: 1;
}
.form-check .form-check-input:checked + .check-mark::before, .form-check .form-check-input:checked + .radio-mark::before {
  border: 1px solid #454545;
}

.product-list .list-col {
  margin-bottom: 30px;
}

.product-card {
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  display: block;
  border-bottom: 2px solid #FFB2B2;
  position: relative;
  -webkit-box-shadow: 0 3px 5px 0 rgba(36, 22, 19, 0.1);
          box-shadow: 0 3px 5px 0 rgba(36, 22, 19, 0.1);
  -webkit-transition: all 300ms 0s ease;
  transition: all 300ms 0s ease;
  text-decoration: none;
  line-height: 1.5;
}
.product-card::after {
  content: "";
  display: block;
  background-color: #C4D400;
  width: 120px;
  height: 2px;
  position: absolute;
  left: 50%;
  bottom: -2px;
  -webkit-transition: all 300ms 0s ease;
  transition: all 300ms 0s ease;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
.product-card:hover, .product-card:active {
  opacity: 1;
  -webkit-box-shadow: 0 0 0 0 rgba(36, 22, 19, 0.1);
          box-shadow: 0 0 0 0 rgba(36, 22, 19, 0.1);
}
.product-card:hover::after, .product-card:active::after {
  width: 100%;
}
.product-card:hover .thumbnail-wrap,
.product-card:hover .inner, .product-card:active .thumbnail-wrap,
.product-card:active .inner {
  opacity: 0.6;
}
.product-card .card-article {
  height: 100%;
}
.product-card .thumbnail-square {
  width: 100%;
  margin-bottom: 0;
  padding-bottom: 100%;
  position: relative;
}
.product-card .thumbnail-square .thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-card .inner {
  padding: 5px 10px 10px;
}
.product-card .brand {
  font-size: 0.875rem;
  margin-bottom: 0;
}
.product-card .name {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0;
}
.product-card .code {
  font-size: 0.75rem;
  margin-bottom: 0;
  line-height: 1.5;
}
.product-card .price {
  font-size: 1rem;
  font-weight: bold;
  color: #D4000B;
  border-top: 1px solid #CECECE;
  border-bottom: 1px solid #CECECE;
  margin-bottom: 0;
  text-align: right;
  padding: 4px 0;
  margin: 5px 0 3px;
}
.product-card .price .tax {
  font-size: 0.75rem;
  font-weight: normal;
  color: #333333;
}
.product-card .shop {
  font-size: 0.75rem;
  text-align: right;
  margin-bottom: 0;
  padding-left: 22px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.product-card .shop::before {
  content: "";
  display: block;
  background-image: url(../img/store/icon-store.svg);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 18px;
  height: 18px;
}
.product-card .row .inner {
  padding-top: 0;
  padding-left: 0;
}

.product-card.card-horizon {
  border: 2px solid #FFB2B2;
}
.product-card.card-horizon::after {
  width: 30%;
}
.product-card.card-horizon:hover::after, .product-card.card-horizon:active::after {
  width: 100%;
}
.product-card.card-horizon .inner-row {
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.product-card.card-horizon .inner-row .inner-img {
  width: 280px;
}
.product-card.card-horizon .inner-row .inner-content {
  width: calc(100% - 280px);
  padding-left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.product-card.card-horizon .inner-row .left {
  width: 60%;
}
.product-card.card-horizon .inner-row .right {
  width: 40%;
}
.product-card.card-horizon .inner-row .info-bar {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 2px;
  border-top: 1px solid #CECECE;
  border-bottom: 1px solid #CECECE;
  padding: 5px 0;
  margin-top: 10px;
}
.product-card.card-horizon .inner-row .desc {
  margin-top: 10px;
  width: 100%;
}
.product-card.card-horizon .inner-row .price {
  font-size: 1.375rem;
  font-weight: bold;
  border: 0;
  padding: 0;
}
.product-card.card-horizon .inner-row .price .tax {
  font-size: 0.875rem;
  font-weight: normal;
  color: #333333;
  margin-left: 3px;
}
.product-card.card-horizon .inner-row .name {
  font-size: 1.125rem;
  font-weight: bold;
}
.product-card.card-horizon .inner-row .shop, .product-card.card-horizon .inner-row .code {
  font-size: 0.875rem;
  font-weight: bold;
  margin-right: 15px;
}

.thum-label-list {
  position: absolute;
  right: 5px;
  top: 5px;
  z-index: 5;
}
.thum-label-list .label {
  font-size: 0.8125rem;
  font-weight: bold;
  min-width: 80px;
  padding: 0 5px;
}

.label-list, .thum-label-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 3px;
  gap: 5px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.label-list .label, .thum-label-list .label {
  font-size: 0.75rem;
  font-weight: bold;
  background-color: var(--label-bg-color);
  color: var(--label-color);
  border: 1px var(--label-bd-style) var(--label-bd-color);
  display: block;
  min-width: 60px;
  text-align: center;
  padding: 0 5px;
  border-radius: 4px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 3px);
          flex: 0 0 calc(50% - 3px);
}

.detail-label-list .label-new, .label-list .label-new, .thum-label-list .label-new {
  --label-bg-color: #fff;
  --label-color: #314e9c;
  --label-bd-color: #314e9c;
  --label-bd-style: dashed;
}
.detail-label-list .label-old, .label-list .label-old, .thum-label-list .label-old {
  --label-bg-color: #fff;
  --label-color: #7c8285;
  --label-bd-color: #7c8285;
  --label-bd-style: dashed;
}
.detail-label-list .label-vintage, .label-list .label-vintage, .thum-label-list .label-vintage {
  --label-bg-color: #fff;
  --label-color: #846031;
  --label-bd-color: #9f7e51;
  --label-bd-style: dashed;
}
.detail-label-list .label-sale, .label-list .label-sale, .thum-label-list .label-sale {
  --label-bg-color: #df3a38;
  --label-color: #fff;
  --label-bd-color: #df3a38;
  --label-bd-style: solid;
}
.detail-label-list .label-beginner, .label-list .label-beginner, .thum-label-list .label-beginner {
  --label-bg-color: #df3a38;
  --label-color: #fff;
  --label-bd-color: #df3a38;
  --label-bd-style: solid;
}
.detail-label-list .label-parallel, .label-list .label-parallel, .thum-label-list .label-parallel {
  --label-bg-color: #fff;
  --label-color: #602b88;
  --label-bd-color: #602b88;
  --label-bd-style: dashed;
}
.detail-label-list .label-postage_free, .label-list .label-postage_free, .thum-label-list .label-postage_free {
  --label-bg-color: #5a4f4a;
  --label-color: #fff;
  --label-bd-color: #5a4f4a;
  --label-bd-style: solid;
}
.detail-label-list .label-new_arrival, .label-list .label-new_arrival, .thum-label-list .label-new_arrival {
  --label-bg-color: #fff;
  --label-color: #00834e;
  --label-bd-color: #cdd600;
  --label-bd-style: dashed;
}

.detail-search-box {
  background-color: #F5f5f5;
  border: 2px solid #3AACCE;
  padding: 20px 30px 25px;
  margin-bottom: 40px;
}

.detail-search .box-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 10px;
}
.detail-search .box-header .col-left, .detail-search .box-header .col-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.detail-search .box-header .col-right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.detail-search .box-header .title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0;
}
.detail-search .box-header .note {
  margin-bottom: 0;
  padding-left: 10px;
}
.detail-search .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.detail-search .form-group .col-label {
  width: 120px;
}
.detail-search .form-group .col-form {
  width: calc(100% - 120px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.detail-search .form-group .form-group {
  margin-bottom: 0;
}
.detail-search .form-group .form-group + .form-group {
  margin-left: 10px;
}
.detail-search .form-control {
  width: 100%;
  margin-bottom: 0;
}
.detail-search .form-control.w-half {
  width: 50%;
}
.detail-search .form-control.w-short {
  width: 120px;
}
.detail-search .btns-wrap {
  margin-bottom: 0;
}
.detail-search .btn-search-submit {
  margin-bottom: 0;
  max-width: 420px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.detail-search .btn-search-submit::before {
  content: "";
  background-image: url(../img/store/icon-search.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  width: 16px;
  height: 16px;
  margin-top: -2px;
  margin-bottom: -2px;
  margin-right: 10px;
}
.detail-search .btn-reset {
  min-width: 160px;
}
.detail-search .form-check + .form-check, .detail-search .form-check + .form-control, .detail-search .form-control + .form-check, .detail-search .form-control + .form-control {
  margin-left: 10px;
}

@media (max-width: 991px) {
  .detail-search-box {
    padding: 15px 15px;
    margin-bottom: 40px;
  }
  .detail-search .box-header {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 10px;
  }
  .detail-search .box-header .col-left,
  .detail-search .box-header .col-right {
    width: 100%;
  }
  .detail-search .box-header .col-right {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .detail-search .box-header .title {
    font-size: 1.125rem;
    font-weight: bold;
    width: 80px;
    margin-bottom: 0;
  }
  .detail-search .box-header .note {
    font-size: 0.875rem;
    width: calc(100% - 80px);
    line-height: 1.3;
  }
  .detail-search .form-group {
    display: block;
  }
  .detail-search .form-group .col-label {
    width: 100%;
  }
  .detail-search .form-group .col-form {
    width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .detail-search .form-group .form-group {
    margin-bottom: 0;
  }
  .detail-search .form-group .form-group + .form-group {
    margin-left: 0;
    margin-top: 5px;
  }
  .detail-search .form-control {
    width: 100%;
    margin-bottom: 0;
    margin-right: 0;
  }
  .detail-search .form-control.w-half {
    width: 100%;
  }
  .detail-search .form-control.w-short {
    width: 120px;
  }
  .detail-search .btns-wrap {
    margin-bottom: 0;
  }
  .detail-search .btns-wrap .btn + .btn {
    margin-top: 12px;
  }
  .detail-search .form-check + .form-check,
  .detail-search .form-check + .form-control,
  .detail-search .form-control + .form-check,
  .detail-search .form-control + .form-control {
    margin-left: 0;
  }
}
.sort-bar {
  background-color: #F5f5f5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 30px;
  padding: 8px 8px 8px 15px;
  position: relative;
}
.sort-bar .btn-open {
  background-color: #3AACCE;
  border: none;
  border-radius: 3px;
  text-align: center;
  color: #fff;
  line-height: 1.3;
  padding: 5px 6px;
  position: absolute;
  right: 10px;
  top: 10px;
  display: none;
}
.sort-bar .btn-open .icon {
  color: #fff;
  margin: 0;
  padding: 0;
  position: relative;
  display: block;
}
.sort-bar .sort-hide {
  padding-top: 10px;
}
.sort-bar .sort-hide .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.sort-bar .sort-hide .form-group {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.sort-bar .sort-hide .form-group + .form-group {
  padding-left: 10px;
  margin-left: 10px;
  border-left: 1px dotted #ddd;
}
.sort-bar .sort-hide .form-check {
  font-size: 0.875rem;
}
.sort-bar .sort-hide .form-check + .form-check {
  margin-left: 10px;
}
.sort-bar .sort-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc(100% - 180px);
}
.sort-bar .sort-left .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.sort-bar .sort-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 180px;
}
.sort-bar .heading {
  font-size: 0.875rem;
  font-weight: bold;
  margin-bottom: 0;
  margin-right: 10px;
}
.sort-bar .sort-btn {
  background-color: #fff;
  border: 1px solid #fff;
  color: #241613;
  font-size: 0.875rem;
  display: block;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 5px;
  text-align: center;
  line-height: 1.5;
  min-height: 32px;
  padding: 5px;
}
.sort-bar .sort-btn:focus, .sort-bar .sort-btn:disabled, .sort-bar .sort-btn:visited, .sort-bar .sort-btn:focus {
  background-color: #fff;
  border: 1px solid #fff;
  color: #241613;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.sort-bar .sort-btn:not(:disabled):not(.disabled):active, .sort-bar .sort-btn:not(:disabled):not(.disabled).active, .sort-bar .sort-btn:not(:disabled):not(.disabled):active:focus {
  background-color: inherit;
  border: 1px solid inherit;
  color: inherit;
}
.sort-bar .sort-btn:hover, .sort-bar .sort-btn:active, .sort-bar .sort-btn.touch {
  background-color: #fff;
  border: 1px solid #fff;
  color: #241613;
  opacity: 0.7;
}
.sort-bar .sort-btn.current {
  background-color: #D6D6D6;
  border: 1px solid #D6D6D6;
  color: #999999;
}
.sort-bar .sort-btn.current:focus, .sort-bar .sort-btn.current:disabled, .sort-bar .sort-btn.current:visited, .sort-bar .sort-btn.current:focus {
  background-color: #D6D6D6;
  border: 1px solid #D6D6D6;
  color: #999999;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.sort-bar .sort-btn.current:not(:disabled):not(.disabled):active, .sort-bar .sort-btn.current:not(:disabled):not(.disabled).active, .sort-bar .sort-btn.current:not(:disabled):not(.disabled):active:focus {
  background-color: inherit;
  border: 1px solid inherit;
  color: inherit;
}
.sort-bar .sort-btn.current:hover, .sort-bar .sort-btn.current:active, .sort-bar .sort-btn.current.touch {
  background-color: #D6D6D6;
  border: 1px solid #D6D6D6;
  color: #999999;
  opacity: 0.7;
}
.sort-bar .sort-btn + .sort-btn {
  margin-left: 8px;
}
.sort-bar .icon {
  --icon-color: #3AACCE;
  margin-right: 5px;
  color: var(--icon-color);
}
.sort-bar .icon-new {
  font-style: normal;
  font-size: 7px;
  padding: 2px 1px;
  text-align: center;
  color: #fff;
  background-color: var(--icon-color);
  border-radius: 3px;
}

@media (max-width: 991px) {
  .sort-bar {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 30px;
    padding: 8px;
  }
  .sort-bar .sort-left {
    width: 100%;
    margin-bottom: -8px;
    padding-right: 30px;
  }
  .sort-bar .sort-right {
    display: none;
  }
  .sort-bar .heading {
    font-size: 0.6875rem;
    font-weight: bold;
    width: 50px;
    padding-bottom: 8px;
  }
  .sort-bar .inner {
    width: calc(100% - 50px);
  }
  .sort-bar .sort-btn {
    font-size: 0.75rem;
    padding: 3px 5px;
    min-height: 28px;
    margin-right: 8px;
    margin-bottom: 8px;
  }
  .sort-bar .sort-btn.current {
    background-color: #D6D6D6;
    border: 1px solid #D6D6D6;
    color: #999999;
  }
  .sort-bar .sort-btn.current:focus, .sort-bar .sort-btn.current:disabled, .sort-bar .sort-btn.current:visited, .sort-bar .sort-btn.current:focus {
    background-color: #D6D6D6;
    border: 1px solid #D6D6D6;
    color: #999999;
    outline: none;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .sort-bar .sort-btn.current:not(:disabled):not(.disabled):active, .sort-bar .sort-btn.current:not(:disabled):not(.disabled).active, .sort-bar .sort-btn.current:not(:disabled):not(.disabled):active:focus {
    background-color: inherit;
    border: 1px solid inherit;
    color: inherit;
  }
  .sort-bar .sort-btn.current:hover, .sort-bar .sort-btn.current:active, .sort-bar .sort-btn.current.touch {
    background-color: #D6D6D6;
    border: 1px solid #D6D6D6;
    color: #999999;
    opacity: 0.7;
  }
  .sort-bar .sort-btn + .sort-btn {
    margin-left: 0;
  }
  .sort-bar .btn-open {
    display: block;
  }
  .sort-bar .btn-open.is-open .icon {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .sort-bar .sort-hide {
    padding-top: 0;
    height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }
  .sort-bar .sort-hide.is-open {
    padding-top: 10px;
    height: auto;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }
  .sort-bar .sort-hide .form-group {
    width: 100%;
  }
  .sort-bar .sort-hide .form-group + .form-group {
    padding-left: 0;
    margin-left: 0;
    border-left: 0;
  }
  .sort-bar .sort-hide .form-check + .form-check {
    margin-left: 0;
  }
}
.product-detail-header {
  margin-bottom: 40px;
}
.product-detail-header .brand {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 5px;
}
.product-detail-header .store-page-title {
  margin-bottom: 15px;
}
.product-detail-header .detail-copy {
  font-size: 1.25rem;
  font-weight: bold;
}
.product-detail-header .detail-label-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
}
.product-detail-header .detail-label-list .label {
  font-size: 0.9375rem;
  font-weight: bold;
  background-color: var(--label-bg-color);
  font-weight: bold;
  color: var(--label-color);
  border: 1px var(--label-bd-style) var(--label-bd-color);
  display: block;
  padding: 2px 10px;
  line-height: 1.3;
  border-radius: 5px;
  min-width: 80px;
  text-align: center;
}

@media (max-width: 991px) {
  .product-detail-header {
    margin-bottom: 30px;
  }
  .product-detail-header .brand {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 3px;
  }
  .product-detail-header .store-page-title {
    line-height: 1.5;
  }
  .product-detail-header .detail-copy {
    font-size: 1.125rem;
    font-weight: bold;
    line-height: 1.5;
  }
  .product-detail-header .detail-label-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .product-detail-header .detail-label-list .label {
    font-size: 0.8125rem;
    font-weight: bold;
    display: block;
    padding: 3px 10px;
    border-radius: 5px;
  }
}
.product-slide {
  margin-bottom: 50px;
}
.product-slide .slide-wrap {
  background-color: #F5f5f5;
  vertical-align: top;
  line-height: 0;
}
.product-slide .slide-thumbnail {
  margin-bottom: 0;
  vertical-align: top;
}
.product-slide .slide-thumbnail .thumbnail {
  max-height: 600px;
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 0;
  vertical-align: top;
}
.product-slide .slick-dotted.slick-slider {
  margin-bottom: 0;
}
.product-slide .slide-munu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 10px;
  gap: 10px;
}
.product-slide .slide-munu .item {
  width: calc((100% + 10px) / 10 - 10px);
  margin-right: 0;
  position: relative;
}
.product-slide .slide-munu .item::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid #FFB2B2;
}
.product-slide .slide-munu .item.current .thumbnail-square {
  opacity: 0.7;
}

@media (max-width: 991px) {
  .product-slide {
    margin-bottom: 50px;
  }
  .product-slide .slide-thumbnail .thumbnail {
    max-height: 400px;
  }
  .product-slide .slick-dotted.slick-slider {
    margin-bottom: 0;
  }
  .product-slide .slide-munu {
    gap: 4px;
  }
  .product-slide .slide-munu .item {
    width: calc((100% + 4px) / 5 - 4px);
  }
}
.thumbnail-square {
  position: relative;
  height: 0;
  padding-bottom: 100%;
  margin-bottom: 0;
}
.thumbnail-square .thumbnail {
  position: absolute;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 0;
}

.detail-cart {
  background-color: #F5f5f5;
  border: 2px solid #3AACCE;
  margin-bottom: 50px;
  padding: 35px 50px;
}
.detail-cart .detail-cart-shop {
  font-size: 1.125rem;
  font-weight: bold;
  background-color: #fff;
  border: 1px solid #D1CBCB;
  padding: 5px 20px;
  line-height: 1.7;
  text-align: center;
}
.detail-cart .catalog-price {
  font-size: 1.25rem;
  margin-bottom: 0;
  line-height: 1.3;
}
.detail-cart .price {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 0;
}
.detail-cart .price .num {
  color: #D4000B;
  font-size: 2.625rem;
  font-weight: bold;
}
.detail-cart .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.detail-cart .btn::before {
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  width: 20px;
  height: 20px;
  margin-top: -2px;
  margin-bottom: -2px;
  margin-right: 7px;
}
.detail-cart .btn.icon-cart::before {
  background-image: url(../img/store/icon-cart-plus.svg);
}
.detail-cart .btn.icon-contact::before {
  background-image: url(../img/store/icon-contact.svg);
}
.detail-cart .btn.icon-line::before {
  background-image: url(../img/store/icon-line.png);
}
.detail-cart .cart-btn {
  background-color: #D4000B;
  border: 1px solid #D4000B;
  color: #fff;
  font-size: 1.75rem;
  font-weight: bold;
  line-height: 1.5;
  width: 100%;
  min-height: 80px;
  margin-bottom: 20px;
}
.detail-cart .cart-btn:focus, .detail-cart .cart-btn:disabled, .detail-cart .cart-btn:visited, .detail-cart .cart-btn:focus {
  background-color: #D4000B;
  border: 1px solid #D4000B;
  color: #fff;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.detail-cart .cart-btn:not(:disabled):not(.disabled):active, .detail-cart .cart-btn:not(:disabled):not(.disabled).active, .detail-cart .cart-btn:not(:disabled):not(.disabled):active:focus {
  background-color: inherit;
  border: 1px solid inherit;
  color: inherit;
}
.detail-cart .cart-btn:hover, .detail-cart .cart-btn:active, .detail-cart .cart-btn.touch {
  background-color: #D4000B;
  border: 1px solid #D4000B;
  color: #fff;
  opacity: 0.7;
}
.detail-cart .cart-btn::before {
  width: 40px;
  height: 40px;
}
.detail-cart .detail-cart-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}
.detail-cart .detail-cart-row .col-price {
  width: 65%;
}
.detail-cart .detail-cart-row .col-shop {
  width: 35%;
  min-width: 300px;
}

@media (max-width: 991px) {
  .detail-cart {
    margin-bottom: 30px;
    padding: 15px 15px;
  }
  .detail-cart .detail-cart-shop {
    font-size: 0.9375rem;
    font-weight: bold;
    padding: 5px 10px;
    margin-bottom: 10px;
  }
  .detail-cart .catalog-price {
    font-size: 0.875rem;
    margin-bottom: 5px;
  }
  .detail-cart .price {
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 0;
  }
  .detail-cart .price .num {
    color: #D4000B;
    font-size: 1.5rem;
    font-weight: bold;
  }
  .detail-cart .btn {
    font-size: 0.875rem;
    font-weight: bold;
    min-height: 44px;
    height: 44px;
    padding: 10px;
    margin-bottom: 10px;
  }
  .detail-cart .btn::before {
    width: 16px;
    height: 16px;
  }
  .detail-cart .cart-btn {
    font-size: 1.125rem;
    font-weight: bold;
    min-height: 70px;
    margin-bottom: 15px;
  }
  .detail-cart .cart-btn::before {
    width: 28px;
    height: 28px;
  }
  .detail-cart .detail-cart-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 10px;
  }
  .detail-cart .detail-cart-row .col-price {
    width: 100%;
    margin-bottom: 10px;
  }
  .detail-cart .detail-cart-row .col-shop {
    width: 100%;
  }
}
.bunkatsu table th {
  background-color: rgb(255, 241, 127) !important;
}

.product-detail-body {
  margin-bottom: 40px;
}
.product-detail-body table th {
  width: 24%; /* PC時は30% */
}
@media screen and (max-width: 768px) {
  .product-detail-body .table tr,
  .product-detail-body .table th,
  .product-detail-body .table td {
    display: block; /* 縦に並べるためにブロック要素化 */
    width: 100%; /* 全幅に広げる */
    -webkit-box-sizing: border-box;
            box-sizing: border-box; /* パディングを含めた幅計算 */
  }
}

.product-detail-category {
  border-top: 2px solid #FFB2B2;
  padding-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.product-detail-category .cat-item {
  background-color: #fff;
  border: 1px solid #3AACCE;
  color: #666666;
  font-size: 0.875rem;
  font-weight: normal;
  padding: 2px 15px;
  min-width: 80px;
  text-align: center;
  border-radius: 50px;
  margin-right: 10px;
  margin-top: 10px;
}
.product-detail-category .cat-item:focus, .product-detail-category .cat-item:disabled, .product-detail-category .cat-item:visited, .product-detail-category .cat-item:focus {
  background-color: #fff;
  border: 1px solid #3AACCE;
  color: #666666;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.product-detail-category .cat-item:not(:disabled):not(.disabled):active, .product-detail-category .cat-item:not(:disabled):not(.disabled).active, .product-detail-category .cat-item:not(:disabled):not(.disabled):active:focus {
  background-color: inherit;
  border: 1px solid inherit;
  color: inherit;
}
.product-detail-category .cat-item:hover, .product-detail-category .cat-item:active, .product-detail-category .cat-item.touch {
  background-color: #fff;
  border: 1px solid #3AACCE;
  color: #666666;
  opacity: 0.7;
}

@media (max-width: 991px) {
  .product-detail-category .cat-item {
    font-size: 0.8125rem;
    font-weight: normal;
    padding: 2px 10px;
    min-width: 80px;
    text-align: center;
    border-radius: 50px;
    margin-right: 6px;
    margin-top: 6px;
  }
}
.cart-form .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cart-form .form-group .col-label {
  width: 20%;
}
.cart-form .form-group .col-form {
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.privacy-chick {
  margin-top: 40px;
  margin-bottom: 40px;
  text-align: center;
}
.privacy-chick .privacy-txt {
  margin-bottom: 0;
}
.privacy-chick .form-check {
  display: inline-block;
}

.btns-row-cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
.btns-row-cart .btn {
  width: 20%;
  min-width: 160px;
}
.btns-row-cart .btn-submit {
  width: 30%;
}
.btns-row-cart .inner {
  width: 30%;
}
.btns-row-cart .inner .btn {
  width: 100%;
}

@media (max-width: 991px) {
  .btns-row-cart {
    gap: 12px;
  }
  .btns-row-cart .btn {
    width: calc(50% - 6px);
    min-width: 100px;
  }
  .btns-row-cart .btn-submit {
    width: 100%;
  }
  .btns-row-cart .inner {
    width: calc(80% - 6px);
  }
}
.table-cart-product .name {
  width: 55%;
}
.table-cart-product .subtotal {
  width: 15%;
}
.table-cart-product .num {
  white-space: nowrap;
  width: 30%;
}
.table-cart-product .num form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
}
.table-cart-product .num form .btn {
  margin-left: 5px;
}
.table-cart-product .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
}
.table-cart-product .delete {
  margin-left: 10px;
  border-left: 1px dotted #ddd;
}
.table-cart-product .delete .btn {
  margin-left: 10px;
}

@media (max-width: 991px) {
  .entry-contents .table-cart-product, .table-cart-product, .entry-contents .table-sp-break, .table-sp-break {
    border: 0;
  }
  .entry-contents .table-cart-product tbody tr th, .entry-contents .table-cart-product tbody tr td, .table-cart-product tbody tr th, .table-cart-product tbody tr td, .entry-contents .table-sp-break tbody tr th, .entry-contents .table-sp-break tbody tr td, .table-sp-break tbody tr th, .table-sp-break tbody tr td {
    border: 0;
  }
  .entry-contents .table-cart-product tbody tr td, .table-cart-product tbody tr td, .entry-contents .table-sp-break tbody tr td, .table-sp-break tbody tr td {
    border-bottom: 1px solid #eee;
  }
}
.user-info-form {
  --label-width: 25%;
}
.user-info-form .control-label {
  margin-bottom: 0;
}
.user-info-form .form-control {
  margin-bottom: 0;
}
.user-info-form .help-block {
  font-size: 14px;
  color: #D4000B;
  width: 100%;
  margin-bottom: 0;
  margin-top: 0;
}
.user-info-form .form-group {
  margin-bottom: 0;
}
.user-info-form > .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.user-info-form > .form-group + .form-group {
  padding-top: 20px;
}
.user-info-form > .form-group > .control-label {
  width: var(--label-width);
}
.user-info-form > .form-group > .form-control {
  width: calc(100% - var(--label-width));
}
.user-info-form > .form-group > .help-block {
  padding-left: var(--label-width);
}
.user-info-form > .form-group .input-small {
  width: 180px;
}
.user-info-form > .form-group .group-inner {
  width: calc(100% - var(--label-width));
}
.user-info-form > .form-group .group-inner .form-group {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.user-info-form > .form-group .group-inner .form-group + .form-group {
  margin-top: 10px;
}
.user-info-form > .form-group .group-inner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 10px;
  width: calc(100% - var(--label-width));
}
.user-info-form > .form-group .group-inner-row .form-group {
  width: calc(50% - 5px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 991px) {
  .user-info-form > .form-group {
    padding-bottom: 15px;
  }
  .user-info-form > .form-group + .form-group {
    padding-top: 15px;
  }
  .user-info-form > .form-group > .control-label {
    width: 100%;
    font-weight: bold;
  }
  .user-info-form > .form-group > .form-control {
    width: 100%;
  }
  .user-info-form > .form-group > .help-block {
    padding-left: 0;
  }
  .user-info-form > .form-group .input-small {
    width: 180px;
  }
  .user-info-form > .form-group .group-inner {
    width: 100%;
  }
  .user-info-form > .form-group .group-inner-row {
    width: 100%;
  }
  .user-info-form > .form-group .group-inner-row .form-group {
    width: calc(50% - 5px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.pagination {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pagination .pagination {
  margin-top: 0;
  border-radius: 0;
  gap: 6px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.pagination .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.pagination .page-link {
  font-size: 1rem;
  color: #3AACCE;
  border: 1px solid #3AACCE;
  border-radius: 5px;
  display: block;
  min-width: 34px;
  line-height: 1.3;
  padding: 5px 10px;
  text-align: center;
}
.pagination .page-link:active, .pagination .page-link:hover, .pagination .page-link:focus {
  opacity: 0.7;
  background-color: #3AACCE;
  color: #fff;
}
.pagination .page-link:active.current, .pagination .page-link:hover.current, .pagination .page-link:focus.current {
  opacity: 1;
  color: #999;
  background-color: #ccc;
  border: 1px solid #ccc;
}
.pagination .active .page-link {
  color: #999;
  background-color: #eee;
  border: 1px solid #eee;
}
.pagination .prev .page-link,
.pagination .next .page-link {
  padding: 5px 15px;
  background-color: #3AACCE;
  color: #fff;
}

@media (max-width: 991px) {
  .pagination {
    margin-top: 40px;
  }
  .pagination pagination {
    border-radius: 0;
    gap: 6px;
    margin-top: 0;
  }
  .pagination .nav-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .pagination .page-link {
    font-size: 0.8125rem;
    padding: 5px 5px;
  }
}
.popup-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(18, 18, 18, 0.8);
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  visibility: hidden;
  padding: 20px;
  opacity: 0;
  -webkit-transition: ease 0.2s;
  transition: ease 0.2s;
}
.popup-wrap.is-open {
  visibility: visible;
  opacity: 1;
}

.popup-panel {
  border-radius: 5px;
  background-color: #fff;
  position: relative;
  padding: 30px 20px 30px;
  max-width: 980px;
  width: 100%;
  max-height: calc(100vh - 100px);
}
.popup-panel .popup-close {
  position: absolute;
  display: block;
  top: -10px;
  right: -10px;
  background-color: #fff;
  border: 2px solid #FFB2B2;
  border-radius: 100px;
  width: 40px;
  height: 40px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  z-index: 100;
}
.popup-panel .popup-close::before, .popup-panel .popup-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #D4000B;
}
.popup-panel .popup-close::before {
  width: 2px;
  height: 22px;
}
.popup-panel .popup-close::after {
  width: 22px;
  height: 2px;
}
.popup-panel .panel-body {
  padding: 0 20px;
  max-height: calc(100% - 100px);
  overflow: auto;
}
.popup-panel .panel-body .detail-search-box {
  margin-bottom: 0;
  padding: 0;
  border: 0;
}

@media (max-width: 640px) {
  .popup-panel {
    border-width: 4px;
    padding: 15px 0px;
    max-height: calc(100vh - 60px);
  }
  .popup-panel .panel-header .logo-icon {
    border-width: 4px;
    top: -26px;
    left: -26px;
    width: 72px;
    height: 72px;
  }
  .popup-panel .panel-header .logo-icon .logo {
    width: 80%;
    height: 80%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .popup-panel .panel-header .heading {
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 15px;
  }
  .popup-panel .panel-header .heading .logo-text {
    margin: 0 auto 0;
    height: 24px;
  }
  .popup-panel .panel-header .heading .lg {
    font-size: 1.375rem;
    font-weight: bold;
  }
  .popup-panel .popup-close {
    top: -10px;
    right: -10px;
    width: 36px;
    height: 36px;
  }
  .popup-panel .popup-close::before {
    height: 16px;
  }
  .popup-panel .popup-close::after {
    width: 16px;
  }
  .popup-panel .panel-body {
    padding: 0 15px;
    max-height: calc(100vh - 90px);
  }
  .popup-panel.is-open {
    visibility: visible;
    opacity: 1;
  }
}
.search-panel {
  border: 2px solid #3AACCE;
  background-color: #F5f5f5;
}

.cat-panel {
  background-color: #EDE4E4;
}
.cat-panel .panel-body {
  padding: 0 10px;
}

/*
-- Utility CSS
-------------------------------------------------- */
.tb-visible {
  display: none;
}

@media (max-width: 991px) {
  .tb-visible {
    display: block;
  }
}
.pc-visible {
  display: block;
}

.sp-visible {
  display: none;
}

@media (max-width: 991px) {
  .pc-visible {
    display: none;
  }
  .sp-visible {
    display: block;
  }
}
/**
 * 表示状態
 */
.hide {
  display: none;
}

/**
 * bold
 */
.bold {
  font-weight: bold;
}

/**
 * フォントサイズ
 */
.font-size-050 {
  font-size: 0.5rem;
}

.font-size-075 {
  font-size: 0.75rem;
}

.font-size-080 {
  font-size: 0.8rem;
}

.font-size-085 {
  font-size: 0.85rem;
}

.font-size-090 {
  font-size: 0.9rem;
}

.font-size-095 {
  font-size: 0.95rem;
}

.font-size-100 {
  font-size: 1rem;
}

.font-size-110 {
  font-size: 1.1rem;
}

.font-size-120 {
  font-size: 1.2rem;
}

.font-size-125 {
  font-size: 1.25rem;
}

.font-size-130 {
  font-size: 1.3rem;
}

.font-size-140 {
  font-size: 1.4rem;
}

.font-size-150 {
  font-size: 1.5rem;
}

.font-size-160 {
  font-size: 1.6rem;
}

.font-size-180 {
  font-size: 1.8rem;
}

.font-size-400 {
  font-size: 4rem;
}

.font-size-800 {
  font-size: 8rem;
}

/**
 * 下マージン処理
 */
.margin-bottom-000 {
  margin-bottom: 0rem;
}

.margin-bottom-020 {
  margin-bottom: 0.2rem;
}

.margin-bottom-025 {
  margin-bottom: 0.25rem;
}

.margin-bottom-030 {
  margin-bottom: 0.3rem;
}

.margin-bottom-050 {
  margin-bottom: 0.5rem;
}

.margin-bottom-070 {
  margin-bottom: 0.7rem;
}

.margin-bottom-075 {
  margin-bottom: 0.75rem;
}

.margin-bottom-080 {
  margin-bottom: 0.8rem;
}

.margin-bottom-090 {
  margin-bottom: 0.9rem;
}

.margin-bottom-100 {
  margin-bottom: 1rem;
}

.margin-bottom-120 {
  margin-bottom: 1.2rem;
}

.margin-bottom-125 {
  margin-bottom: 1.25rem;
}

.margin-bottom-130 {
  margin-bottom: 1.3rem;
}

.margin-bottom-150 {
  margin-bottom: 1.5rem;
}

.margin-bottom-160 {
  margin-bottom: 1.6rem;
}

.margin-bottom-175 {
  margin-bottom: 1.75rem;
}

.margin-bottom-180 {
  margin-bottom: 1.8rem;
}

.margin-bottom-200 {
  margin-bottom: 2rem;
}

.margin-bottom-225 {
  margin-bottom: 2.25rem;
}

.margin-bottom-250 {
  margin-bottom: 2.5rem;
}

.margin-bottom-300 {
  margin-bottom: 3rem;
}

.margin-bottom-350 {
  margin-bottom: 3.5rem;
}

.margin-bottom-400 {
  margin-bottom: 4rem;
}

.margin-bottom-450 {
  margin-bottom: 4.5rem;
}

.margin-bottom-500 {
  margin-bottom: 5rem;
}

.margin-bottom-550 {
  margin-bottom: 5.5rem;
}

.margin-bottom-600 {
  margin-bottom: 6rem;
}

.margin-bottom-650 {
  margin-bottom: 6.5rem;
}

.margin-bottom-700 {
  margin-bottom: 7rem;
}

.margin-bottom-750 {
  margin-bottom: 7.5rem;
}

.margin-bottom-800 {
  margin-bottom: 8rem;
}

.margin-bottom-850 {
  margin-bottom: 8.5rem;
}

/**
 * パディング
 */
.padding-000 {
  padding: 0rem;
}

.padding-020 {
  padding: 0.2rem;
}

.padding-025 {
  padding: 0.25rem;
}

.padding-030 {
  padding: 0.3rem;
}

.padding-050 {
  padding: 0.5rem;
}

.padding-070 {
  padding: 0.7rem;
}

.padding-075 {
  padding: 0.75rem;
}

.padding-080 {
  padding: 0.8rem;
}

.padding-090 {
  padding: 0.9rem;
}

.padding-100 {
  padding: 1rem;
}

.padding-120 {
  padding: 1.2rem;
}

.padding-125 {
  padding: 1.25rem;
}

.padding-130 {
  padding: 1.3rem;
}

.padding-150 {
  padding: 1.5rem;
}

.padding-160 {
  padding: 1.6rem;
}

.padding-175 {
  padding: 1.75rem;
}

.padding-180 {
  padding: 1.8rem;
}

.padding-200 {
  padding: 2rem;
}

.padding-225 {
  padding: 2.25rem;
}

.padding-250 {
  padding: 2.5rem;
}

.padding-300 {
  padding: 3rem;
}

.padding-350 {
  padding: 3.5rem;
}

.padding-400 {
  padding: 4rem;
}

.padding-450 {
  padding: 4.5rem;
}

.padding-500 {
  padding: 5rem;
}

.padding-550 {
  padding: 5.5rem;
}

.padding-600 {
  padding: 6rem;
}

.padding-650 {
  padding: 6.5rem;
}

.padding-700 {
  padding: 7rem;
}

.padding-750 {
  padding: 7.5rem;
}

.padding-800 {
  padding: 8rem;
}

.padding-850 {
  padding: 8.5rem;
}

/**
 * パディング下
 */
.padding-bottom-000 {
  padding-bottom: 0rem;
}

.padding-bottom-020 {
  padding-bottom: 0.2rem;
}

.padding-bottom-025 {
  padding-bottom: 0.25rem;
}

.padding-bottom-030 {
  padding-bottom: 0.3rem;
}

.padding-bottom-050 {
  padding-bottom: 0.5rem;
}

.padding-bottom-070 {
  padding-bottom: 0.7rem;
}

.padding-bottom-075 {
  padding-bottom: 0.75rem;
}

.padding-bottom-080 {
  padding-bottom: 0.8rem;
}

.padding-bottom-090 {
  padding-bottom: 0.9rem;
}

.padding-bottom-100 {
  padding-bottom: 1rem;
}

.padding-bottom-120 {
  padding-bottom: 1.2rem;
}

.padding-bottom-125 {
  padding-bottom: 1.25rem;
}

.padding-bottom-130 {
  padding-bottom: 1.3rem;
}

.padding-bottom-150 {
  padding-bottom: 1.5rem;
}

.padding-bottom-160 {
  padding-bottom: 1.6rem;
}

.padding-bottom-175 {
  padding-bottom: 1.75rem;
}

.padding-bottom-180 {
  padding-bottom: 1.8rem;
}

.padding-bottom-200 {
  padding-bottom: 2rem;
}

.padding-bottom-225 {
  padding-bottom: 2.25rem;
}

.padding-bottom-250 {
  padding-bottom: 2.5rem;
}

.padding-bottom-300 {
  padding-bottom: 3rem;
}

.padding-bottom-350 {
  padding-bottom: 3.5rem;
}

.padding-bottom-400 {
  padding-bottom: 4rem;
}

.padding-bottom-450 {
  padding-bottom: 4.5rem;
}

.padding-bottom-500 {
  padding-bottom: 5rem;
}

.padding-bottom-550 {
  padding-bottom: 5.5rem;
}

.padding-bottom-600 {
  padding-bottom: 6rem;
}

.padding-bottom-650 {
  padding-bottom: 6.5rem;
}

.padding-bottom-700 {
  padding-bottom: 7rem;
}

.padding-bottom-750 {
  padding-bottom: 7.5rem;
}

.padding-bottom-800 {
  padding-bottom: 8rem;
}

.padding-bottom-850 {
  padding-bottom: 8.5rem;
}

/**
 * テキスト揃え
 */
.text-align-center {
  text-align: center;
}

.text-align-left {
  text-align: left;
}

.text-align-right {
  text-align: right;
}

/**
 * 幅指定
 */
.max-width-100 {
  max-width: 100px;
}

.max-width-200 {
  max-width: 200px;
}

/**
 * 枠付きエリア
 */
.with-border {
  border: 1px solid #999999;
  padding: 0.45em;
}

/**
 * リンクカラーなくす
 */
.no-link-color-white {
  color: #FFF;
}
.no-link-color-white:hover {
  text-decoration: none;
  color: #FFF;
}
.no-link-color-white:active {
  text-decoration: none;
  color: #FFF;
}
.no-link-color-white:visited {
  text-decoration: none;
  color: #FFF;
}
.no-link-color-white:link {
  text-decoration: none;
  color: #FFF;
}

/**
 * 強制改行
 */
.force-break {
  overflow-wrap: anywhere;
}

/**
 * 画像モーダル
 */
.image-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 100000000;
  /* 閉じるボタン */
  /* 画像表示エリア */
}
.image-modal .close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  z-index: 100000001;
}
.image-modal .right {
  position: absolute;
  top: 0px;
  right: 60px;
  height: 100vh;
  color: white;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  z-index: 100000002;
  line-height: 100vh;
}
.image-modal .left {
  position: absolute;
  top: 0px;
  left: 60px;
  height: 100vh;
  color: white;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  z-index: 100000002;
  line-height: 100vh;
}
.image-modal .image-area {
  max-width: 90%;
  max-height: 90%;
}
.image-modal .image-area img {
  max-width: 93vh;
  max-height: 93vh;
  display: block;
}
/*# sourceMappingURL=store-style.css.map */