@charset "UTF-8";
.bulk {
  padding: 8px 0;
}
.bulk p {
  padding-bottom: 12px;
}
.bulk p:first-child {
  font-weight: bold;
}
.bulk p:first-child:before {
  content: "＊";
}

/* product.html: オプション（プルダウン）用カートボタン */
.cart-add-btn .off {
  display: none;
}
.cart-add-btn .on {
  display: block;
}

.favorite-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

@media (max-width: 780px) {
  .favorite-wrap {
    display: flex;
    align-items: center;
    margin-bottom: 2vw;
  }
}
.fa-heart:before {
  font-size: 28px;
  padding-left: 12px;
}

/* product.html: 在庫状況 */
.item-stock {
  margin-bottom: 20px;
  font-size: 14px;
}

/* product.html: 定期購入ボタン */
.subscription-add-btn {
  background: #607bac;
}
.subscription-add-btn:hover {
  background: cornflowerblue;
}

.favorite a {
  color: #ff9393;
}

/* product.html: SKU */
.sku-outstock-btn {
  background: #989898;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  width: 100%;
  border-radius: 3px;
  padding: 16px;
}

.subscription-sku-btn {
  background: #607bac;
}
.subscription-sku-btn a:hover {
  background: cornflowerblue;
}

.item-subscription-wrap {
  padding-right: 40px;
}

/* product.html: 販売予告 */
.item-sell-text p {
  margin: 10px 0;
}

/* product.html: 予約販売 */
.item-reserve-release-date {
  color: #EB503C;
}

.item-reserve p {
  margin: 12px 0;
}

.fixed-price {
  font-size: 14px;
  margin-bottom: 12px;
}

.item-point {
  margin: 18px 0;
  font-size: 14px;
}

/* product.html: 定期購入 */
.subscription-title {
  font-size: 16px;
  color: cornflowerblue;
  display: inline-block;
  margin-bottom: 8px;
}

/* product.html: セール期間 */
.sale-priod {
  background: #EB503C;
  color: #fff;
  padding: 10px;
  text-align: center;
  font-size: 14px;
  margin-bottom: 20px;
}

/* product.html: 定期購入（回数割引） */
.subscription-time {
  margin: 24px 0;
}

/* product.html: 定期購入（景品） */
.subscription-gift {
  display: flex;
  align-items: center;
  margin: 30px 0;
}
.subscription-gift img {
  width: 30%;
  margin-right: 8px;
}
.subscription-gift .subscription-gift-text {
  line-height: 1.6rem;
}

/* product.html: 名入れ */
.nameprint-area {
  margin: 40px 0;
}
.nameprint-area p {
  margin-bottom: 8px;
}
.nameprint-area .nameprint-description {
  margin-bottom: 16px !important;
}
.nameprint-area input {
  border: 1px solid #000;
  padding: 6px;
  width: 100%;
  border-radius: 3px;
  margin-top: 0;
}
.nameprint-area textarea {
  width: 100%;
  padding: 6px;
  border-radius: 3px;
}

p.nameprint-character {
  margin-bottom: 24px;
}

.nameprint-title {
  font-weight: bold;
  font-size: 18px;
}
.nameprint-title span {
  color: #EB503C;
  font-size: 14px;
  margin-left: 8px;
}

/* product.html: 追加商品画像 */
.add-image-list {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  flex: 0 0 32%;
  max-width: 32%;
  margin-right: 8px;
}
.add-image-list p {
  line-height: 1.6rem;
}

.product-price-block {
  margin-bottom: 20px;
}

.description-text img {
  width: 100%;
}

.makeshop-option-select-wrap {
  position: relative;
  background: #ffffff;
}
.makeshop-option-select-wrap::before {
  position: absolute;
  top: 10px;
  right: 8px;
  content: "";
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #666666;
  pointer-events: none;
}

.makeshop-option-label {
  font-size: 14px;
  font-weight: 400;
  color: #000;
  line-height: 1;
  margin: 0 0 10px;
  text-align: left;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: none;
  background-color: #fff;
  border-radius: 0;
  border: 2px solid #dcdcdc;
  box-sizing: border-box;
  width: 300px;
  height: 60px;
  padding: 0 20px;
  font-size: 16px;
  background-image: url(../img/select_arrow.svg);
  background-repeat: no-repeat;
  background-position: 98% center;
  background-size: 20px 10px;
  margin: 0 0 25px 0;
  font-family: "Zen Old Mincho", serif;
}

@media (max-width: 780px) {
  select {
    -webkit-appearance: none;
    -moz-appearance: none;
         appearance: none;
    background: none;
    background-color: #fff;
    height: 50px;
    border-radius: 0;
    border: 1px solid #dcdcdc;
    box-sizing: border-box;
    width: 60vw;
    padding: 0 2vw;
    font-size: 3.33333vw;
    background-image: url(../img/select_arrow.svg);
    background-repeat: no-repeat;
    background-position: 96% center;
    background-size: 4vw 2vw;
    margin: 0 0 1vw;
  }
}
@media screen and (max-width: 1184px) {
  .sku-add-btn {
    font-size: 12px;
  }
  .sku-add-btn a {
    padding: 20px 0;
  }
  .detail-product-discount {
    font-size: 16px !important;
    padding-bottom: 0px !important;
  }
  .add-image-list {
    display: block;
    max-width: 100%;
    margin: 16px 0;
  }
  .item-image-list {
    margin-right: 0;
  }
  select::-ms-expand {
    display: none;
  }
  .bg-section .description-text {
    -moz-columns: 1;
         columns: 1;
  }
}
@media (max-width: 780px) {
  .sku-add-btn a {
    padding: 0 !important;
  }
}
.wrapper {
  width: 100%;
  overflow-x: hidden;
}
.wrapper .main {
  width: 100%;
  margin: 0 auto 120px;
}
.wrapper .main .contents-section {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}
.wrapper .main .contents-section .item-inner {
  margin-top: 100px;
}
.wrapper .main .contents-section .item-inner .detail {
  display: flex;
  justify-content: space-between;
}
.wrapper .main .contents-section .item-inner .detail .item-image {
  width: 50%;
}
.wrapper .main .contents-section .item-inner .detail .item-image .item-image-thumbnail {
  width: 100%;
}
.wrapper .main .contents-section .item-inner .detail .item-image .item-image-thumbnail .item-image-large {
  width: 100%;
}
.wrapper .main .contents-section .item-inner .detail .item-image .item-image-thumbnail .item-image-large .item-image-list img {
  max-width: 100%;
}
.wrapper .main .contents-section .item-inner .detail .item-image .item-image-thumbnail .item-image-small {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.wrapper .main .contents-section .item-inner .detail .item-image .item-image-thumbnail .item-image-small .item-image-list {
  flex-basis: 20%;
}
.wrapper .main .contents-section .item-inner .detail .item-image .item-image-thumbnail .item-image-small .item-image-list img {
  max-width: 100%;
}
.wrapper .main .contents-section .item-inner .detail .detail-right {
  width: 45%;
  text-align: left;
}
.wrapper .main .contents-section .item-inner .detail .detail-right .product-name {
  font-size: 32px;
  font-weight: 500;
  color: #000;
  line-height: 1.5;
  margin: 0 0 20px;
  text-align: left;
}
.wrapper .main .contents-section .item-inner .detail .detail-right .product-price-block {
  font-size: 26px;
  font-weight: 500;
  color: #000;
  line-height: 1.5;
  margin: 0 0 20px;
  text-align: left;
}
.wrapper .main .contents-section .item-inner .detail .detail-right .product-price-block .small {
  font-size: 20px;
}
.wrapper .main .contents-section .item-inner .detail .detail-right .description-text {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  line-height: 2;
  margin: 0 0 20px;
  text-align: left;
}
.wrapper .main .contents-section .item-inner .detail .detail-right .description-text p span {
  font-size: 14px;
  color: #333;
  font-weight: 400;
  line-height: 1;
  margin: 15px 0 8px;
  display: block;
}
.wrapper .main .contents-section .item-inner .detail .detail-right .description-text p .red {
  color: #AC2437;
}
.wrapper .main .contents-section .item-inner .detail .detail-right .productnum-wrap {
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.wrapper .main .contents-section .item-inner .detail .detail-right .productnum-wrap .purchase-num {
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 8px;
  flex-basis: 100%;
}
.wrapper .main .contents-section .item-inner .detail .detail-right .productnum-wrap .button {
  display: flex;
  flex-direction: column;
  margin: 12px 0 0 15px;
}
.wrapper .main .contents-section .item-inner .detail .detail-right .productnum-wrap input.productnum {
  font-size: 18px;
  font-family: "Zen Old Mincho", serif;
  color: #333;
  width: 100px;
  height: 40px;
  float: left;
  text-align: right;
  padding: 0 5px;
  flex-basis: 120px;
}
.wrapper .main .contents-section .item-inner .detail .detail-right .productnum-wrap input.spinner-up {
  margin-top: 3px;
  border: 0px;
  width: 10px;
  height: 8px;
  background: url(https://gigaplus.makeshop.jp/okashikurata/img/common/up.svg) no-repeat;
  cursor: pointer;
}
.wrapper .main .contents-section .item-inner .detail .detail-right .productnum-wrap input.spinner-down {
  margin-top: 3px;
  border: 0px;
  width: 10px;
  height: 8px;
  background: url(https://gigaplus.makeshop.jp/okashikurata/img/common/down.svg) no-repeat;
  cursor: pointer;
}
.wrapper .main .contents-section .item-inner .detail .detail-right .cart-add-btn {
  margin-top: 40px;
}
.wrapper .main .contents-section .item-inner .detail .detail-right .cart-add-btn .sku {
  width: 100%;
  margin-bottom: 20px;
}
.wrapper .main .contents-section .item-inner .detail .detail-right .cart-add-btn .sku th {
  border-bottom: 1px solid #919191;
  padding-bottom: 8px;
  text-align: left;
  width: 0%;
  line-height: 1.4rem;
  font-size: 16px;
  font-weight: 600;
}
.wrapper .main .contents-section .item-inner .detail .detail-right .cart-add-btn .sku td {
  text-align: left;
  vertical-align: middle;
  font-size: 16px;
  border-bottom: 1px solid #919191;
  padding: 20px 0;
  width: 30%;
}
.wrapper .main .contents-section .item-inner .detail .detail-right .cart-add-btn .sku-cart {
  width: 70% !important;
}
.wrapper .main .contents-section .item-inner .detail .detail-right .cart-add-btn .price,
.wrapper .main .contents-section .item-inner .detail .detail-right .cart-add-btn .item-stock-sku {
  text-align: left;
  margin-bottom: 8px;
  font-size: 20px;
}
.wrapper .main .contents-section .item-inner .detail .detail-right .cart-add-btn .price span,
.wrapper .main .contents-section .item-inner .detail .detail-right .cart-add-btn .item-stock-sku span {
  font-size: 14px;
}
.wrapper .main .contents-section .item-inner .detail .detail-right .cart-add-btn .sku-add-btn {
  background: #AC2437;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wrapper .main .contents-section .item-inner .detail .detail-right .cart-add-btn .sku-add-btn a:hover {
  background: #fff;
  border: 1px solid #AC2437;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wrapper .main .contents-section .item-inner .detail .detail-right .cart-add-btn .sku-add-btn a {
  color: #fff;
  text-decoration: none;
  display: block;
}
.wrapper .main .contents-section .item-inner .detail .detail-right .cart-add-btn .sku-add-btn a:hover {
  text-decoration: none;
  opacity: 1;
  color: #AC2437;
}
.wrapper .main .contents-section .item-inner .detail .detail-right .add-btn {
  background: #AC2437;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wrapper .main .contents-section .item-inner .detail .detail-right .add-btn a:hover {
  background: #fff;
  border: 1px solid #AC2437;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wrapper .main .contents-section .item-inner .detail .detail-right .add-btn a {
  color: #fff;
  text-decoration: none;
  display: block;
}
.wrapper .main .contents-section .item-inner .detail .detail-right .add-btn a:hover {
  text-decoration: none;
  opacity: 1;
  color: #AC2437;
}
.wrapper .main .contents-section .item-inner .detail .detail-right .item-share {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 40px auto;
  gap: 20px;
}
.wrapper .main .contents-section .item-inner .detail .detail-right .info-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.wrapper .main .contents-section .item-inner .detail .detail-right .info-area li {
  flex-basis: 100%;
  font-size: 16px;
  font-weight: 400;
  text-align: left;
  margin-bottom: 10px;
}
.wrapper .main .contents-section .item-inner .detail .detail-right .info-area li a {
  text-decoration: none;
  color: #000;
}

@media (max-width: 780px) {
  .wrapper {
    width: 100%;
    overflow-x: hidden;
  }
  .wrapper .main {
    width: 100%;
    margin: 0 auto 15vw;
    position: relative;
    z-index: 999;
  }
  .wrapper .main .contents-section {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  .wrapper .main .contents-section .item-inner {
    margin-top: 14.1025641026vw;
  }
  .wrapper .main .contents-section .item-inner .detail {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 90vw;
    margin: 0 auto;
  }
  .wrapper .main .contents-section .item-inner .detail .item-image {
    width: 100%;
  }
  .wrapper .main .contents-section .item-inner .detail .item-image .item-image-thumbnail {
    width: 100%;
  }
  .wrapper .main .contents-section .item-inner .detail .item-image .item-image-thumbnail .item-image-large {
    width: 100%;
  }
  .wrapper .main .contents-section .item-inner .detail .item-image .item-image-thumbnail .item-image-large .item-image-list img {
    max-width: 100%;
  }
  .wrapper .main .contents-section .item-inner .detail .item-image .item-image-thumbnail .item-image-small {
    width: 100vw;
    margin: 0 auto;
    gap: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .wrapper .main .contents-section .item-inner .detail .item-image .item-image-thumbnail .item-image-small .item-image-list {
    flex-basis: 20%;
  }
  .wrapper .main .contents-section .item-inner .detail .item-image .item-image-thumbnail .item-image-small .item-image-list img {
    max-width: 100%;
  }
  .wrapper .main .contents-section .item-inner .detail .detail-right {
    width: 100%;
    text-align: left;
    padding: 0;
  }
  .wrapper .main .contents-section .item-inner .detail .detail-right .product-name {
    font-size: 5.3846153846vw;
    font-weight: 500;
    color: #000;
    line-height: 1.5;
    margin: 0 0 3vw;
    text-align: left;
  }
  .wrapper .main .contents-section .item-inner .detail .detail-right .product-price-block {
    font-size: 4.1025641026vw;
    font-weight: 500;
    color: #000;
    line-height: 1.5;
    margin: 0 0 3vw;
    text-align: left;
  }
  .wrapper .main .contents-section .item-inner .detail .detail-right .product-price-block .small {
    font-size: 3.3333333333vw;
  }
  .wrapper .main .contents-section .item-inner .detail .detail-right .description-text {
    font-size: 3.0769230769vw;
    font-weight: 400;
    color: #000;
    line-height: 2;
    margin: 0 0 3vw;
    text-align: left;
  }
  .wrapper .main .contents-section .item-inner .detail .detail-right .description-text p span {
    font-size: 2.8205128205vw;
    color: #333;
    font-weight: 400;
    line-height: 1;
    margin: 2vw 0 1vw;
    display: block;
  }
  .wrapper .main .contents-section .item-inner .detail .detail-right .productnum-wrap {
    padding-top: 3vw;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .wrapper .main .contents-section .item-inner .detail .detail-right .productnum-wrap .purchase-num {
    font-size: 3.0769230769vw;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 1vw;
    flex-basis: 100%;
  }
  .wrapper .main .contents-section .item-inner .detail .detail-right .productnum-wrap .button {
    display: flex;
    flex-direction: column;
    margin: 12px 0 0 15px;
  }
  .wrapper .main .contents-section .item-inner .detail .detail-right .productnum-wrap input.productnum {
    font-size: 3.3333333333vw;
    font-family: "Zen Old Mincho", serif;
    color: #333;
    width: 30vw;
    height: 12.8205128205vw;
    float: left;
    text-align: right;
    padding: 0 5px;
    flex-basis: 120px;
  }
  .wrapper .main .contents-section .item-inner .detail .detail-right .productnum-wrap input.spinner-up {
    margin-top: 3px;
    border: 0px;
    width: 10px;
    height: 8px;
    background: url(https://gigaplus.makeshop.jp/okashikurata/img/common/up.svg) no-repeat;
    cursor: pointer;
  }
  .wrapper .main .contents-section .item-inner .detail .detail-right .productnum-wrap input.spinner-down {
    margin-top: 3px;
    border: 0px;
    width: 10px;
    height: 8px;
    background: url(https://gigaplus.makeshop.jp/okashikurata/img/common/down.svg) no-repeat;
    cursor: pointer;
  }
  .wrapper .main .contents-section .item-inner .detail .detail-right .cart-add-btn {
    margin-top: 4vw;
  }
  .wrapper .main .contents-section .item-inner .detail .detail-right .cart-add-btn .sku {
    width: 100%;
    margin-bottom: 3vw;
  }
  .wrapper .main .contents-section .item-inner .detail .detail-right .cart-add-btn .sku th {
    border-bottom: 1px solid #919191;
    padding-bottom: 1vw;
    text-align: left;
    width: 0%;
    line-height: 1.4rem;
    font-size: 3.3333333333vw;
    font-weight: 600;
  }
  .wrapper .main .contents-section .item-inner .detail .detail-right .cart-add-btn .sku td {
    text-align: left;
    vertical-align: middle;
    font-size: 3.0769230769vw;
    border-bottom: 1px solid #919191;
    padding: 5vw 0 3vw;
    width: 30%;
  }
  .wrapper .main .contents-section .item-inner .detail .detail-right .cart-add-btn .sku-cart {
    width: 70% !important;
  }
  .wrapper .main .contents-section .item-inner .detail .detail-right .cart-add-btn .price,
  .wrapper .main .contents-section .item-inner .detail .detail-right .cart-add-btn .item-stock-sku {
    text-align: left;
    margin-bottom: 1vw;
    font-size: 3.3333333333vw;
  }
  .wrapper .main .contents-section .item-inner .detail .detail-right .cart-add-btn .price span,
  .wrapper .main .contents-section .item-inner .detail .detail-right .cart-add-btn .item-stock-sku span {
    font-size: 2.8205128205vw;
  }
  .wrapper .main .contents-section .item-inner .detail .detail-right .cart-add-btn .sku-add-btn {
    background: #AC2437;
    font-size: 3.3333333333vw;
    font-weight: 500;
    color: #fff;
    text-align: center;
    width: 100%;
    height: 15.3846153846vw;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .wrapper .main .contents-section .item-inner .detail .detail-right .cart-add-btn .sku-add-btn a:hover {
    background: #fff;
    border: 1px solid #AC2437;
    width: 100%;
    height: 15.3846153846vw;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .wrapper .main .contents-section .item-inner .detail .detail-right .cart-add-btn .sku-add-btn a {
    color: #fff;
    text-decoration: none;
    display: block;
  }
  .wrapper .main .contents-section .item-inner .detail .detail-right .cart-add-btn .sku-add-btn a:hover {
    text-decoration: none;
    opacity: 1;
    color: #AC2437;
  }
  .wrapper .main .contents-section .item-inner .detail .detail-right .add-btn {
    background: #AC2437;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .wrapper .main .contents-section .item-inner .detail .detail-right .add-btn a:hover {
    background: #fff;
    border: 1px solid #AC2437;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .wrapper .main .contents-section .item-inner .detail .detail-right .add-btn a {
    color: #fff;
    text-decoration: none;
    display: block;
  }
  .wrapper .main .contents-section .item-inner .detail .detail-right .add-btn a:hover {
    text-decoration: none;
    opacity: 1;
    color: #AC2437;
  }
  .wrapper .main .contents-section .item-inner .detail .detail-right .item-share {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 4vw auto;
    gap: 3vw;
  }
  .wrapper .main .contents-section .item-inner .detail .detail-right .item-share li:nth-child(1) iframe {
    width: 92px !important;
    height: 23px !important;
  }
  .wrapper .main .contents-section .item-inner .detail .detail-right .item-share li:nth-child(2) iframe {
    width: 85px !important;
    height: 23px !important;
  }
  .wrapper .main .contents-section .item-inner .detail .detail-right .info-area {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .wrapper .main .contents-section .item-inner .detail .detail-right .info-area li {
    flex-basis: 100%;
    font-size: 3.0769230769vw;
    font-weight: 400;
    text-align: left;
    margin-bottom: 1.5vw;
  }
  .wrapper .main .contents-section .item-inner .detail .detail-right .info-area li a {
    text-decoration: none;
    color: #000;
  }
  .item-image {
    width: 100%;
    margin-bottom: 10vw;
  }
  .main-image {
    width: 100%;
  }
  .choice-btn {
    width: 100%;
    display: none;
  }
  .choice-btn li {
    width: 23.25% !important;
  }
  .choice-btn .slick-track {
    width: 100% !important;
  }
  .choice-btn li img {
    width: 100% !important;
  }
  .add-image-list {
    width: 100%;
    margin-right: 0;
    margin-bottom: 40px;
  }
  .add-image-list:nth-child(2n) {
    margin-right: 0;
  }
  .add-image-list:last-child {
    margin-bottom: 0;
  }
  .group-review-section {
    width: 100%;
  }
  .group-item-list {
    justify-content: space-between;
  }
  .group-item-list li {
    width: calc((100% - 16px) / 2);
    margin-bottom: 40px;
    margin-right: 0;
    position: relative;
  }
  .group-item-list li img {
    height: auto;
  }
  .item-detail {
    width: 100%;
    padding-left: 0;
  }
  .item-detail .item-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
  }
  .item-detail .item-category-name {
    font-size: 14px;
  }
  .slick-slide {
    width: 100%;
  }
  .slick-slide img {
    max-width: 100%;
  }
  .slick-prev {
    position: absolute;
    top: 50%;
    left: -3.5vw;
    z-index: 10;
    transform: translateY(-50%);
    background: url(https://gigaplus.makeshop.jp/okashikurata/img/top/slide_prev.svg) !important;
    background-size: contain !important;
    width: 7vw;
    height: 7vw;
  }
  .slick-prev:before {
    display: none;
  }
  .slick-next {
    position: absolute;
    top: 50%;
    right: -3.5vw;
    transform: translateY(-50%);
    z-index: 10;
    width: 7vw;
    height: 7vw;
    background: url(https://gigaplus.makeshop.jp/okashikurata/img/top/slide_next.svg) !important;
    background-size: contain !important;
    width: 7vw;
    height: 7vw;
  }
  .slick-next:before {
    display: none;
  }
}
/* モーダルCSS */
.modal-area {
  display: none;
  position: fixed;
  z-index: 10; /*サイトによってここの数値は調整 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modal-bg {
  width: 100%;
  height: 100%;
  background-color: rgba(30, 30, 30, 0.9);
}

.modal-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  max-width: 500px;
  padding: 30px;
  background-color: #fff;
}

.modal-cart-btn {
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-cart-btn li {
  border-radius: 5px;
  margin: 12px;
}

.modal-cart-btn li a {
  width: 240px;
  display: inline-block;
  text-align: center;
  padding: 15px 0;
  font-weight: bold;
  font-size: 13px;
  color: #fff;
}

.modal-cart {
  background: #707070;
}

.modal-order {
  background: #1FD5AD;
}

.modal-close {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  cursor: pointer;
}

.modal-open {
  display: flex;
  align-items: baseline;
}

.cart-amazon {
  width: -moz-fit-content;
  width: fit-content;
  margin: 20px auto 0;
}/*# sourceMappingURL=product.css.map */