@charset "UTF-8";
/*============================
#shop-online 商品一覧ページ
============================*/
article#shop-online header {
  width: 100%;
  position: relative;
  padding: 180px 0;
  background: #000;
}

@media screen and (max-width: 768px) {
  article#shop-online header {
    padding: 120px 0;
  }
}

article#shop-online header img.bg {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
  opacity: 0.8;
}

article#shop-online header h2 {
  width: 100%;
  font-size: 4.8rem;
  letter-spacing: 4px;
  color: #fff;
  position: relative;
}

@media screen and (max-width: 768px) {
  article#shop-online header h2 {
    font-size: 3.2rem;
  }
}

article#shop-online header h2 i {
  width: 100%;
  display: block;
  font-size: 1.4rem;
  padding-top: 20px;
}

article#shop-online section .notice-section {
  background: #EFEBE7;
  padding: 20px;
  text-align: center;
}

article#shop-online section .notice-section p {
  font-size: 1.4rem;
  letter-spacing: 2px;
  color: #CB1F16;
  margin: 0;
}

article#shop-online section .category-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  padding: 40px 0 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  article#shop-online section .category-tabs {
    padding: 20px 0;
    gap: 8px;
  }
}

article#shop-online section .category-tabs .category-tab {
  background: #fff;
  border: 1px solid #ccc;
  padding: 10px 20px;
  font-size: 1.4rem;
  cursor: pointer;
  border-radius: 4px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media screen and (max-width: 768px) {
  article#shop-online section .category-tabs .category-tab {
    padding: 8px 16px;
    font-size: 1.3rem;
  }
}

article#shop-online section .category-tabs .category-tab:hover {
  background: #f5f5f5;
}

article#shop-online section .category-tabs .category-tab.active {
  background: #CB1F16;
  color: #fff;
  border-color: #CB1F16;
}

article#shop-online section .product-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 40px 0 80px;
}

@media screen and (max-width: 768px) {
  article#shop-online section .product-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 20px;
    padding: 40px 0;
  }
}

article#shop-online section .product-grid .product-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  -webkit-transition: -webkit-box-shadow 0.3s;
  transition: -webkit-box-shadow 0.3s;
  transition: box-shadow 0.3s;
  transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
}

article#shop-online section .product-grid .product-card:hover {
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

article#shop-online section .product-grid .product-card .product-image {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
  background: #f9f9f9;
}

article#shop-online section .product-grid .product-card .product-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

article#shop-online section .product-grid .product-card .product-image .out-of-stock-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #999;
  color: #fff;
  padding: 5px 15px;
  font-size: 1.2rem;
  border-radius: 4px;
}

article#shop-online section .product-grid .product-card .product-image .storage-type-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  color: #fff;
  padding: 5px 15px;
  font-size: 1.2rem;
  border-radius: 4px;
  font-weight: bold;
}

article#shop-online section .product-grid .product-card .product-image .storage-type-badge.refrigerated {
  background: #4A90E2;
}

article#shop-online section .product-grid .product-card .product-image .storage-type-badge.frozen {
  background: #00A8E8;
}

article#shop-online section .product-grid .product-card .product-info {
  padding: 20px;
}

article#shop-online section .product-grid .product-card .product-info .product-name {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 8px;
  line-height: 1.4;
}

article#shop-online section .product-grid .product-card .product-info .product-description {
  font-size: 1.3rem;
  color: #555;
  margin-bottom: 8px;
  line-height: 1.6;
}

article#shop-online section .product-grid .product-card .product-info .product-weight {
  font-size: 1.3rem;
  color: #666;
  margin-bottom: 10px;
}

article#shop-online section .product-grid .product-card .product-info .product-price {
  font-size: 2rem;
  color: #CB1F16;
  font-weight: bold;
  margin-bottom: 15px;
}

article#shop-online section .product-grid .product-card .product-info .product-price .tax-note {
  font-size: 1.2rem;
  color: #666;
  font-weight: normal;
}

article#shop-online section .product-grid .product-card .product-info .product-quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 15px;
  gap: 0;
}

article#shop-online section .product-grid .product-card .product-info .product-quantity button {
  width: 40px;
  height: 40px;
  border: 2px solid #CB1F16;
  background: #fff;
  cursor: pointer;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  color: #CB1F16;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  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;
}

article#shop-online section .product-grid .product-card .product-info .product-quantity button:hover {
  background: #CB1F16;
  color: #fff;
}

article#shop-online section .product-grid .product-card .product-info .product-quantity button:active {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

article#shop-online section .product-grid .product-card .product-info .product-quantity .qty-minus {
  border-radius: 6px 0 0 6px;
}

article#shop-online section .product-grid .product-card .product-info .product-quantity .qty-plus {
  border-radius: 0 6px 6px 0;
}

article#shop-online section .product-grid .product-card .product-info .product-quantity .qty-input {
  width: 60px;
  height: 40px;
  border: 2px solid #CB1F16;
  border-left: none;
  border-right: none;
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  background: #fff;
  color: #333;
}

article#shop-online section .product-grid .product-card .product-info .add-to-cart {
  width: 100%;
  background: #CB1F16;
  color: #fff;
  border: none;
  padding: 12px 20px;
  font-size: 1.4rem;
  border-radius: 4px;
  cursor: pointer;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

article#shop-online section .product-grid .product-card .product-info .add-to-cart:hover {
  background: #9d1811;
}

article#shop-online section .product-grid .product-card .product-info .add-to-cart.disabled {
  background: #999;
  cursor: not-allowed;
}

article#shop-online section .product-grid .no-products {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 1.6rem;
  padding: 80px 20px;
  color: #666;
}

article#shop-online section .shopping-cart {
  background: #EFEBE7;
  padding: 60px 0;
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  article#shop-online section .shopping-cart {
    padding: 40px 0;
  }
}

article#shop-online section .shopping-cart .cart-container {
  max-width: 1000px;
  margin: 0 auto;
}

article#shop-online section .shopping-cart .cart-container h2 {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  article#shop-online section .shopping-cart .cart-container h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}

article#shop-online section .shopping-cart .cart-container .cart-items {
  margin-bottom: 30px;
}

article#shop-online section .shopping-cart .cart-container .cart-items .cart-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
}

@media screen and (max-width: 768px) {
  article#shop-online section .shopping-cart .cart-container .cart-items .cart-item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 15px;
  }
}

article#shop-online section .shopping-cart .cart-container .cart-items .cart-item .cart-item-image {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
  margin-right: 20px;
}

@media screen and (max-width: 768px) {
  article#shop-online section .shopping-cart .cart-container .cart-items .cart-item .cart-item-image {
    width: 60px;
    height: 60px;
    margin-right: 15px;
  }
}

article#shop-online section .shopping-cart .cart-container .cart-items .cart-item .cart-item-info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

article#shop-online section .shopping-cart .cart-container .cart-items .cart-item .cart-item-info h4 {
  font-size: 1.6rem;
  margin-bottom: 5px;
}

@media screen and (max-width: 768px) {
  article#shop-online section .shopping-cart .cart-container .cart-items .cart-item .cart-item-info h4 {
    font-size: 1.4rem;
  }
}

article#shop-online section .shopping-cart .cart-container .cart-items .cart-item .cart-item-info .cart-item-weight {
  font-size: 1.3rem;
  color: #666;
  margin-bottom: 5px;
}

article#shop-online section .shopping-cart .cart-container .cart-items .cart-item .cart-item-info .cart-item-price {
  font-size: 1.4rem;
  font-weight: bold;
}

article#shop-online section .shopping-cart .cart-container .cart-items .cart-item .cart-item-remove {
  background: #dc3232;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1.3rem;
}

@media screen and (max-width: 768px) {
  article#shop-online section .shopping-cart .cart-container .cart-items .cart-item .cart-item-remove {
    width: 100%;
    margin-top: 10px;
  }
}

article#shop-online section .shopping-cart .cart-container .cart-items .cart-item .cart-item-remove:hover {
  background: #bb2020;
}

article#shop-online section .shopping-cart .cart-container .cart-total {
  text-align: right;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  article#shop-online section .shopping-cart .cart-container .cart-total {
    font-size: 1.8rem;
  }
}

article#shop-online section .shopping-cart .cart-container .cart-note {
  text-align: center;
  font-size: 1.3rem;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.8;
}

article#shop-online section .shopping-cart .cart-container .cart-actions {
  text-align: center;
}

article#shop-online section .shopping-cart .cart-container .cart-actions .btn-proceed {
  background: #CB1F16;
  color: #fff;
  border: none;
  padding: 15px 40px;
  font-size: 1.6rem;
  border-radius: 4px;
  cursor: pointer;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

article#shop-online section .shopping-cart .cart-container .cart-actions .btn-proceed:hover {
  background: #9d1811;
}

/*============================
#shop-cart 注文フォームページ
============================*/
article#shop-cart header {
  width: 100%;
  position: relative;
  padding: 180px 0;
  background: #000;
}

@media screen and (max-width: 768px) {
  article#shop-cart header {
    padding: 120px 0;
  }
}

article#shop-cart header img.bg {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
  opacity: 0.8;
}

article#shop-cart header h2 {
  width: 100%;
  font-size: 4.8rem;
  letter-spacing: 4px;
  color: #fff;
  position: relative;
}

@media screen and (max-width: 768px) {
  article#shop-cart header h2 {
    font-size: 3.2rem;
  }
}

article#shop-cart header h2 i {
  width: 100%;
  display: block;
  font-size: 1.4rem;
  padding-top: 20px;
}

article#shop-cart section .form-container {
  padding: 60px 0;
}

@media screen and (max-width: 768px) {
  article#shop-cart section .form-container {
    padding: 40px 0;
  }
}

article#shop-cart section .form-container .cart-summary {
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  article#shop-cart section .form-container .cart-summary {
    margin-bottom: 40px;
  }
}

article#shop-cart section .form-container .cart-summary h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #CB1F16;
}

article#shop-cart section .form-container .cart-summary .order-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

article#shop-cart section .form-container .cart-summary .order-table thead {
  background: #f5f5f5;
}

article#shop-cart section .form-container .cart-summary .order-table thead th {
  padding: 15px 10px;
  text-align: left;
  font-size: 1.4rem;
  border: 1px solid #e0e0e0;
}

@media screen and (max-width: 768px) {
  article#shop-cart section .form-container .cart-summary .order-table thead th {
    padding: 10px 5px;
    font-size: 1.2rem;
  }
}

article#shop-cart section .form-container .cart-summary .order-table tbody td {
  padding: 15px 10px;
  font-size: 1.4rem;
  border: 1px solid #e0e0e0;
}

@media screen and (max-width: 768px) {
  article#shop-cart section .form-container .cart-summary .order-table tbody td {
    padding: 10px 5px;
    font-size: 1.2rem;
  }
}

article#shop-cart section .form-container .cart-summary .order-table tfoot th {
  padding: 15px 10px;
  font-size: 1.6rem;
  font-weight: bold;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
}

@media screen and (max-width: 768px) {
  article#shop-cart section .form-container .cart-summary .order-table tfoot th {
    padding: 10px 5px;
    font-size: 1.4rem;
  }
}

article#shop-cart section .form-container .order-form h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #CB1F16;
}

article#shop-cart section .form-container .order-form h4 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  margin-top: 20px;
}

article#shop-cart section .form-container .order-form .form-group {
  margin-bottom: 30px;
}

article#shop-cart section .form-container .order-form .form-group label {
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 8px;
}

article#shop-cart section .form-container .order-form .form-group label .required {
  color: #CB1F16;
  font-size: 1.2rem;
  margin-left: 5px;
}

article#shop-cart section .form-container .order-form .form-group input[type="text"],
article#shop-cart section .form-container .order-form .form-group input[type="email"],
article#shop-cart section .form-container .order-form .form-group input[type="tel"],
article#shop-cart section .form-container .order-form .form-group input[type="date"],
article#shop-cart section .form-container .order-form .form-group textarea {
  width: 100%;
  padding: 12px;
  font-size: 1.4rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

article#shop-cart section .form-container .order-form .form-group input[type="text"]:focus,
article#shop-cart section .form-container .order-form .form-group input[type="email"]:focus,
article#shop-cart section .form-container .order-form .form-group input[type="tel"]:focus,
article#shop-cart section .form-container .order-form .form-group input[type="date"]:focus,
article#shop-cart section .form-container .order-form .form-group textarea:focus {
  outline: none;
  border-color: #CB1F16;
}

@media screen and (max-width: 768px) {
  article#shop-cart section .form-container .order-form .form-group input[type="date"] {
    max-width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
}

article#shop-cart section .form-container .order-form .form-group textarea {
  resize: vertical;
  font-family: inherit;
}

article#shop-cart section .form-container .order-form .form-group .radio-group label {
  display: inline-block;
  margin-right: 20px;
  font-weight: normal;
  cursor: pointer;
}

article#shop-cart section .form-container .order-form .form-group .radio-group label input[type="radio"] {
  margin-right: 5px;
}

article#shop-cart section .form-container .order-form .form-group .checkbox-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  cursor: pointer;
  font-weight: normal;
}

article#shop-cart section .form-container .order-form .form-group .checkbox-label input[type="checkbox"] {
  margin-right: 10px;
  margin-top: 4px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

article#shop-cart section .form-container .order-form .form-group .checkbox-label span {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: 1.6;
}

article#shop-cart section .form-container .order-form .payment-method-group .payment-option {
  margin-bottom: 20px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}

article#shop-cart section .form-container .order-form .payment-method-group .payment-option:has(input[type="radio"]:checked) {
  border-color: #CB1F16;
  background: #fff8f7;
}

article#shop-cart section .form-container .order-form .payment-method-group .payment-option .payment-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  cursor: pointer;
  font-weight: normal;
  margin-bottom: 0;
}

article#shop-cart section .form-container .order-form .payment-method-group .payment-option .payment-label .payment-radio {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

article#shop-cart section .form-container .order-form .payment-method-group .payment-option .payment-label .payment-title {
  font-size: 1.6rem;
  font-weight: bold;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

article#shop-cart section .form-container .order-form .payment-method-group .payment-option .payment-label .cod-fee {
  font-size: 1.8rem;
  font-weight: bold;
  color: #CB1F16;
  padding: 5px 15px;
  border: 2px dashed #CB1F16;
  border-radius: 4px;
}

article#shop-cart section .form-container .order-form .payment-method-group .payment-option .payment-details {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}

article#shop-cart section .form-container .order-form .payment-method-group .payment-option .payment-details .bank-info {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 4px;
}

article#shop-cart section .form-container .order-form .payment-method-group .payment-option .payment-details .bank-info .bank-info-title {
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

article#shop-cart section .form-container .order-form .payment-method-group .payment-option .payment-details .bank-info p {
  margin: 5px 0;
  font-size: 1.4rem;
  line-height: 1.8;
}

article#shop-cart section .form-container .order-form .payment-method-group .payment-option .payment-details .bank-info .notice-text {
  font-size: 1.3rem;
  color: #CB1F16;
  margin-top: 10px;
}

article#shop-cart section .form-container .order-form .payment-method-group .payment-option .payment-details .fee-table .fee-table-title {
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

article#shop-cart section .form-container .order-form .payment-method-group .payment-option .payment-details .fee-table table {
  width: 100%;
  border-collapse: collapse;
}

article#shop-cart section .form-container .order-form .payment-method-group .payment-option .payment-details .fee-table table tr {
  border-bottom: 1px solid #e0e0e0;
}

article#shop-cart section .form-container .order-form .payment-method-group .payment-option .payment-details .fee-table table tr td {
  padding: 10px;
  font-size: 1.4rem;
}

article#shop-cart section .form-container .order-form .payment-method-group .payment-option .payment-details .fee-table table tr td:first-child {
  width: 60%;
}

article#shop-cart section .form-container .order-form .payment-method-group .payment-option .payment-details .fee-table table tr td:last-child {
  text-align: right;
  font-weight: bold;
}

article#shop-cart section .form-container .order-form #gift-delivery-section {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
  margin-bottom: 30px;
  border-left: 4px solid #4A90E2;
}

article#shop-cart section .form-container .order-form .shipping-info {
  background: #EFEBE7;
  padding: 30px;
  border-radius: 8px;
  margin-top: 40px;
  margin-bottom: 30px;
}

article#shop-cart section .form-container .order-form .shipping-info h4 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  margin-top: 0;
}

article#shop-cart section .form-container .order-form .shipping-info .shipping-notice {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

article#shop-cart section .form-container .order-form .shipping-info .yamato-logo {
  text-align: left;
  margin: 20px 0;
}

article#shop-cart section .form-container .order-form .shipping-info .yamato-logo img {
  max-width: 100%;
  height: auto;
}

article#shop-cart section .form-container .order-form .shipping-info .shipping-notes {
  font-size: 1.3rem;
  color: #CB1F16;
  line-height: 1.8;
  margin: 10px 0;
}

article#shop-cart section .form-container .order-form .form-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  article#shop-cart section .form-container .order-form .form-actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

article#shop-cart section .form-container .order-form .form-actions .btn-back {
  background: #fff;
  color: #666;
  border: 1px solid #ccc;
  padding: 15px 40px;
  font-size: 1.6rem;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

article#shop-cart section .form-container .order-form .form-actions .btn-back:hover {
  background: #f5f5f5;
}

article#shop-cart section .form-container .order-form .form-actions .btn-submit {
  background: #CB1F16;
  color: #fff;
  border: none;
  padding: 15px 40px;
  font-size: 1.6rem;
  border-radius: 4px;
  cursor: pointer;
}

article#shop-cart section .form-container .order-form .form-actions .btn-submit:hover {
  background: #9d1811;
}

/*============================
#shop-thanks 注文完了ページ
============================*/
article#shop-thanks header {
  width: 100%;
  position: relative;
  padding: 180px 0;
  background: #000;
}

@media screen and (max-width: 768px) {
  article#shop-thanks header {
    padding: 120px 0;
  }
}

article#shop-thanks header img.bg {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
  opacity: 0.8;
}

article#shop-thanks header h2 {
  width: 100%;
  font-size: 4.8rem;
  letter-spacing: 4px;
  color: #fff;
  position: relative;
}

@media screen and (max-width: 768px) {
  article#shop-thanks header h2 {
    font-size: 3.2rem;
  }
}

article#shop-thanks header h2 i {
  width: 100%;
  display: block;
  font-size: 1.4rem;
  padding-top: 20px;
}

article#shop-thanks section .thanks-container {
  padding: 80px 0;
  text-align: center;
}

@media screen and (max-width: 768px) {
  article#shop-thanks section .thanks-container {
    padding: 40px 0;
  }
}

article#shop-thanks section .thanks-container .thanks-icon {
  margin: 0 auto 30px;
}

article#shop-thanks section .thanks-container .thanks-icon svg {
  display: block;
  margin: 0 auto;
}

article#shop-thanks section .thanks-container h3 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  article#shop-thanks section .thanks-container h3 {
    font-size: 2.2rem;
  }
}

article#shop-thanks section .thanks-container .order-number {
  font-size: 1.6rem;
  margin-bottom: 40px;
}

article#shop-thanks section .thanks-container .order-number strong {
  color: #CB1F16;
  font-size: 2rem;
}

article#shop-thanks section .thanks-container .thanks-message {
  max-width: 800px;
  margin: 0 auto 40px;
}

article#shop-thanks section .thanks-container .thanks-message p {
  font-size: 1.4rem;
  line-height: 2;
  margin-bottom: 30px;
}

article#shop-thanks section .thanks-container .thanks-message .note {
  font-size: 1.3rem;
  color: #666;
}

article#shop-thanks section .thanks-container .thanks-message .contact-info {
  background: #EFEBE7;
  padding: 30px;
  border-radius: 8px;
  margin-top: 40px;
}

article#shop-thanks section .thanks-container .thanks-message .contact-info p {
  font-size: 1.4rem;
  line-height: 2;
  margin: 0;
}

article#shop-thanks section .thanks-container .btn-wrap a.btn {
  background: #CB1F16;
  color: #fff;
  padding: 15px 40px;
  font-size: 1.6rem;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
}

article#shop-thanks section .thanks-container .btn-wrap a.btn:hover {
  background: #9d1811;
}

/*============================
カートメッセージ
============================*/
.cart-message {
  position: fixed;
  top: 100px;
  right: 20px;
  background: #46b450;
  color: #fff;
  padding: 15px 25px;
  border-radius: 4px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 99999;
  -webkit-animation: slideIn 0.3s ease;
          animation: slideIn 0.3s ease;
}

@media screen and (max-width: 768px) {
  .cart-message {
    right: 10px;
    left: 10px;
    text-align: center;
  }
}

@-webkit-keyframes slideIn {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

/*============================
共通スタイル
============================*/
.max-width-default {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .max-width-default {
    padding: 0 20px;
  }
}

article#shop-online section .category-tabs.max-width-default,
article#shop-online section .product-grid.max-width-default {
  padding-left: 40px;
  padding-right: 40px;
}

@media screen and (max-width: 768px) {
  article#shop-online section .category-tabs.max-width-default,
  article#shop-online section .product-grid.max-width-default {
    padding-left: 20px;
    padding-right: 20px;
  }
}

article#shop-cart section .form-container.max-width-default {
  padding-left: 40px;
  padding-right: 40px;
}

@media screen and (max-width: 768px) {
  article#shop-cart section .form-container.max-width-default {
    padding-left: 20px;
    padding-right: 20px;
  }
}
/*# sourceMappingURL=shop-online.css.map */