/** Shopify CDN: Minification failed

Line 104:20 Expected "}" to go with "{"

**/
.product-form__submit{
  background: #103948;
  color: #fff;
}


.rich-text__buttons .button.product-brand-button {
  background-color:#103948;
  color: #fff;
}

@media screen and (max-width: 749px) {
  .blog__posts .blog__post.article {
      width: calc(100% - 9rem);
  }
}

/* カート追従ボタン */
.product__info-container .add-to-cart-following-buttons {
  width:100%;
  position: fixed;
  bottom: 0px;
  left: 0px;
  z-index: 5;
  border-radius: 0px;
  margin:0;
  display:none;
}
.add-to-cart-following-buttons button {
  border-radius: 0;
  margin-bottom:0;
}
.add-to-cart-following-buttons button:after {
  box-shadow:none;
}
.add-to-cart-following-buttons  .button:not([disabled]):hover:after {
  box-shadow:none;
}
/* カート追従ボタン - モーダル */
.modal {
  display: none;
  position: fixed;
  z-index: 5;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5);
}

.modal-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  margin: 20px;
  padding: 30px 20px 25px;
  width: calc(100% - 40px);
  box-shadow: 0 5px 8px 0 rgba(0,0,0,0.2),0 7px 20px 0 rgba(0,0,0,0.17);
  animation-name: modalopen;
  animation-duration: 1s;
}

@keyframes modalopen {
  from {opacity: 0}
  to {opacity: 1}
}

.modal-header {
  font-size:18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-header h2{
  margin:0;
}
.modalClose {
  position: absolute;
  right: 22px;
  top: 5px;
  font-size: 27px;
}

.modalClose:hover {
  cursor: pointer;
}
.modal-body {
  padding-top: 10px;
}
.modal-body .ProductMeta__Title {
  font-size:16px;
}
.modal .option_name {
  margin-bottom:-10px;
}
.modal-body .product-form__input {
  margin-bottom:25px